14 lines
548 B
C#
14 lines
548 B
C#
namespace xDataService.Interfaces {
|
|
/// <summary>
|
|
/// this Configuration used to Carry all Entity Descriptors collections
|
|
/// can readable by appSettings.json file for providing dynamic data seeding ...
|
|
/// </summary>
|
|
public interface IXDbSeederConfig {
|
|
/// <summary>
|
|
/// determines an Entity can Update when Exists or not ...
|
|
/// this must handled by consumer on IXDbSeeder Seed method implementation ...
|
|
/// </summary>
|
|
/// <value></value>
|
|
bool UpdateExists { get; set; }
|
|
}
|
|
} |