Пример #1
0
 public TestDatabaseCreator(
     RelationalDatabaseCreatorDependencies dependencies,
     JetRelationalConnection relationalConnection,
     IRawSqlCommandBuilder rawSqlCommandBuilder)
     : base(dependencies, relationalConnection, rawSqlCommandBuilder)
 {
 }
Пример #2
0
 public TestDatabaseCreator(
     RelationalDatabaseCreatorDependencies dependencies,
     INpgsqlRelationalConnection connection,
     IRawSqlCommandBuilder rawSqlCommandBuilder)
     : base(dependencies, connection, rawSqlCommandBuilder)
 {
 }
Пример #3
0
 public ClickHouseDatabaseCreator(
     RelationalDatabaseCreatorDependencies dependencies,
     IClickHouseRelationalConnection connection,
     IRawSqlCommandBuilder rawSqlCommandBuilder) : base(dependencies)
 {
     _connection           = connection;
     _rawSqlCommandBuilder = rawSqlCommandBuilder;
 }
Пример #4
0
 /// <summary>
 ///     This API supports the Entity Framework Core infrastructure and is not intended to be used
 ///     directly from your code. This API may change or be removed in future releases.
 /// </summary>
 public FbDatabaseCreator(
     [NotNull] RelationalDatabaseCreatorDependencies dependencies,
     [NotNull] IFirebirdRelationalConnection connection,
     [NotNull] IRawSqlCommandBuilder rawSqlCommandBuilder)
     : base(dependencies)
 {
     _connection           = connection;
     _rawSqlCommandBuilder = rawSqlCommandBuilder;
 }
 /// <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 SqlServerDatabaseCreator(
     RelationalDatabaseCreatorDependencies dependencies,
     ISqlServerConnection connection,
     IRawSqlCommandBuilder rawSqlCommandBuilder)
     : base(dependencies)
 {
     _connection           = connection;
     _rawSqlCommandBuilder = rawSqlCommandBuilder;
 }
 /// <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 MySqlDatabaseCreator(
     [NotNull] RelationalDatabaseCreatorDependencies dependencies,
     [NotNull] IMySqlRelationalConnection relationalConnection,
     [NotNull] IRawSqlCommandBuilder rawSqlCommandBuilder)
     : base(dependencies)
 {
     _relationalConnection = relationalConnection;
     _rawSqlCommandBuilder = rawSqlCommandBuilder;
 }
 public MySQLDatabaseCreator(
     [NotNull] RelationalDatabaseCreatorDependencies dependencies,
     [NotNull] IRawSqlCommandBuilder rawSqlCommandBuilder)
     : base(dependencies)
 {
     _connection               = (MySQLServerConnection)dependencies.Connection;
     _sqlGenerator             = dependencies.MigrationsSqlGenerator;
     _rawSqlCommandBuilder     = rawSqlCommandBuilder;
     _migrationCommandExecutor = dependencies.MigrationCommandExecutor;
 }
 public VfpDatabaseCreator([NotNull] RelationalDatabaseCreatorDependencies dependencies) : base(dependencies)
 {
 }
Пример #9
0
 /// <summary>
 ///     Initializes a new instance of the <see cref="RelationalDatabaseCreator" /> class.
 /// </summary>
 /// <param name="dependencies">Parameter object containing dependencies for this service.</param>
 protected RelationalDatabaseCreator(RelationalDatabaseCreatorDependencies dependencies)
 {
     Dependencies = dependencies;
 }
 public CassandraDatabaseCreator(IRelationalConnection relationalConnection, IRawSqlCommandBuilder rawCommandBuilder, RelationalConnectionDependencies relationalConnectionDependencies, RelationalDatabaseCreatorDependencies dependencies) : base(dependencies)
 {
     _relationalConnection             = relationalConnection;
     _rawSqlCommandBuilder             = rawCommandBuilder;
     _relationalConnectionDependencies = relationalConnectionDependencies;
 }
 public JsonDatabaseCreator([NotNullAttribute] RelationalDatabaseCreatorDependencies dependencies) : base(dependencies)
 {
 }