public ClickHouseModelValidator(ModelValidatorDependencies dependencies, RelationalModelValidatorDependencies relationalDependencies)
     : base(dependencies, relationalDependencies)
 {
 }
 /// <summary>
 ///     This is an internal API that supports the Entity Framework Core infrastructure and not subject to
 ///     the same compatibility standards as public APIs. It may be changed or removed without notice in
 ///     any release. You should only use it directly in your code with extreme caution and knowing that
 ///     doing so can result in application failures when updating to a new Entity Framework Core release.
 /// </summary>
 public SqliteModelValidator(
     [NotNull] ModelValidatorDependencies dependencies,
     [NotNull] RelationalModelValidatorDependencies relationalDependencies)
     : base(dependencies, relationalDependencies)
 {
 }
Esempio n. 3
0
 /// <inheritdoc />
 public NpgsqlModelValidator(
     ModelValidatorDependencies dependencies,
     RelationalModelValidatorDependencies relationalDependencies,
     INpgsqlOptions npgsqlOptions)
     : base(dependencies, relationalDependencies)
     => _postgresVersion = Check.NotNull(npgsqlOptions, nameof(npgsqlOptions)).PostgresVersion;
 /// <summary>
 ///     This is an internal API that supports the Entity Framework Core infrastructure and not subject to
 ///     the same compatibility standards as public APIs. It may be changed or removed without notice in
 ///     any release. You should only use it directly in your code with extreme caution and knowing that
 ///     doing so can result in application failures when updating to a new Entity Framework Core release.
 /// </summary>
 public InMemoryModelValidator([NotNull] ModelValidatorDependencies dependencies)
     : base(dependencies)
 {
 }
Esempio n. 5
0
 /// <summary>
 ///     Creates a new instance of <see cref="ModelValidator" />.
 /// </summary>
 /// <param name="dependencies">Parameter object containing dependencies for this service.</param>
 public ModelValidator(ModelValidatorDependencies dependencies)
 {
     Dependencies = dependencies;
 }
 /// <summary>
 ///     This is an internal API that supports the Entity Framework Core infrastructure and not subject to
 ///     the same compatibility standards as public APIs. It may be changed or removed without notice in
 ///     any release. You should only use it directly in your code with extreme caution and knowing that
 ///     doing so can result in application failures when updating to a new Entity Framework Core release.
 /// </summary>
 public SqlServerModelValidator(
     ModelValidatorDependencies dependencies,
     RelationalModelValidatorDependencies relationalDependencies)
     : base(dependencies, relationalDependencies)
 {
 }
Esempio n. 7
0
 /// <inheritdoc />
 public NpgsqlModelValidator(
     ModelValidatorDependencies dependencies,
     RelationalModelValidatorDependencies relationalDependencies,
     INpgsqlSingletonOptions npgsqlSingletonOptions)
     : base(dependencies, relationalDependencies)
     => _postgresVersion = npgsqlSingletonOptions.PostgresVersion;
Esempio n. 8
0
 /// <inheritdoc />
 /// <summary>
 /// Initializes a new instance of the <see cref="MongoDbModelValidator"/> class.
 /// </summary>
 /// <param name="modelValidatorDependencies">Parameter object containing dependencies for this service.</param>
 public MongoDbModelValidator(
     [NotNull] ModelValidatorDependencies modelValidatorDependencies)
     : base(Check.NotNull(modelValidatorDependencies, nameof(modelValidatorDependencies)))
 {
 }
Esempio n. 9
0
 public CosmosModelValidator([NotNull] ModelValidatorDependencies dependencies)
     : base(dependencies)
 {
 }
Esempio n. 10
0
 /// <summary>
 ///     This is an internal API that supports the Entity Framework Core infrastructure and not subject to
 ///     the same compatibility standards as public APIs. It may be changed or removed without notice in
 ///     any release. You should only use it directly in your code with extreme caution and knowing that
 ///     doing so can result in application failures when updating to a new Entity Framework Core release.
 /// </summary>
 public CosmosModelValidator(ModelValidatorDependencies dependencies)
     : base(dependencies)
 {
 }
Esempio n. 11
0
 public JsonModelValidator(ModelValidatorDependencies dependencies, RelationalModelValidatorDependencies relationalDependencies) : base(dependencies, relationalDependencies)
 {
 }