Options to configure IDataServices through dependency injection.
Gets or sets the alias of the database table.
public String Alias { get; set; }
Gets or sets the name of the command builder service.
public String CommandBuilderName { get; set; }
Gets or sets the name of the auditing service.
public String DataModelAuditorName { get; set; }
Gets or sets the type of the auditing service.
public Type DataModelAuditorType { get; set; }
Gets or sets the name of the data model command builder.
public String DataModelCommandBuilderName { get; set; }
Gets or sets a dictionary that maps properties with table columns.
public IDictionary<String, Field> Fields { get; set; }
Gets or sets the name of the service that generates identity values.
public String IdentityName { get; set; }
Gets or sets the type of the service that generates identity values.
public Type IdentityType { get; set; }
Gets or sets the name of the service that generates numerator values.
public String NumeratorName { get; set; }
Gets or sets the type of the service that generates numerator values.
public Type NumeratorType { get; set; }
Gets or sets the schema or owner of database objects.
public String Schema { get; set; }
Gets or sets the name of the sequence to use.
public String SequenceName { get; set; }
Gets or sets the table name.
public String Table { get; set; }
Gets or sets the name of the validation service.
public String ValidatorName { get; set; }
Gets or sets the type of the validation service.
public Type ValidatorType { get; set; }