73 lines
2.3 KiB
C#
73 lines
2.3 KiB
C#
using xIds.Constants;
|
|
|
|
namespace xIds.Configurations
|
|
{
|
|
/// <summary>
|
|
/// Represent Configurations of DataService Module ...
|
|
/// </summary>
|
|
public partial class XDataServiceConfiguration
|
|
{
|
|
/// <summary>
|
|
/// Provider Type ...
|
|
/// </summary>
|
|
/// <value></value>
|
|
public XDbProviders Provider { get; set; }
|
|
|
|
/// <summary>
|
|
/// Connection String which provide Requires Data to Connect to Db Provider ...
|
|
/// </summary>
|
|
/// <value></value>
|
|
public string ConnectionString { get; set; }
|
|
|
|
/// <summary>
|
|
/// Enable Tracking of Entities ...
|
|
/// Only Used on EFCore ...
|
|
/// </summary>
|
|
/// <value></value>
|
|
public bool EnableTracking { get; set; } = false;
|
|
|
|
/// <summary>
|
|
/// Enable Logging Details of Errors ...
|
|
/// Only Used on EFCore ...
|
|
/// </summary>
|
|
/// <value></value>
|
|
public bool EnableDetailedErrors { get; set; } = false;
|
|
|
|
/// <summary>
|
|
/// Enable Logging Sensitive Data ...
|
|
/// Only Used on EFCore ...
|
|
/// </summary>
|
|
/// <value></value>
|
|
public bool EnableSensitiveDataLogging { get; set; } = false;
|
|
|
|
/// <summary>
|
|
/// this is a way to provide Default Pagination Data on XQuery based requests ...
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public PagingConfiguration PagingConfiguration { get; set; } = new PagingConfiguration();
|
|
}
|
|
|
|
/// <summary>
|
|
/// this is a way to provide Default Pagination Data on XQuery based requests ...
|
|
/// </summary>
|
|
public partial class PagingConfiguration
|
|
{
|
|
/// <summary>
|
|
/// Default Page Size ...
|
|
/// </summary>
|
|
/// <value></value>
|
|
public int DefaultPageSize { get; set; } = XDataServiceConstants.DEFAULT_PAGE_SIZE;
|
|
|
|
/// <summary>
|
|
/// restrict Maximum Page Size ...
|
|
/// </summary>
|
|
/// <value></value>
|
|
public int MaxAvailablePageSize { get; set; } = XDataServiceConstants.MAX_AVAILABLE_PAGE_SIZE;
|
|
|
|
/// <summary>
|
|
/// restrice Minimum Page Size ...
|
|
/// </summary>
|
|
/// <value></value>
|
|
public int MinAvailablePageSize { get; set; } = XDataServiceConstants.MIN_AVAILABLE_PAGE_SIZE;
|
|
}
|
|
} |