public TestModificationCommandBatchFactory(
     ModificationCommandBatchFactoryDependencies dependencies)
 {
     _dependencies = dependencies;
 }
Esempio n. 2
0
 public ClickHouseModificationCommandBatch(ModificationCommandBatchFactoryDependencies dependencies, int?maxBatchSize) : base(dependencies)
 {
     _maxBatchSize = maxBatchSize ?? DefaultBatchSize;
 }
 /// <summary>
 ///     Creates a new <see cref="SingularModificationCommandBatch" /> instance.
 /// </summary>
 /// <param name="dependencies">Service dependencies.</param>
 public SingularModificationCommandBatch(ModificationCommandBatchFactoryDependencies dependencies)
     : base(dependencies)
 {
 }
 /// <summary>
 ///     Creates a new <see cref="AffectedCountModificationCommandBatch" /> instance.
 /// </summary>
 /// <param name="dependencies">Service dependencies.</param>
 protected AffectedCountModificationCommandBatch(ModificationCommandBatchFactoryDependencies dependencies)
     : base(dependencies)
 {
 }
 public CassandraModificationCommandBatch(ModificationCommandBatchFactoryDependencies dependencies) : base(dependencies)
 {
 }
Esempio n. 6
0
 /// <summary>
 /// Initializes a new instance of the <see
 /// cref="EtherealSqlServerModificationCommandBatch"/> class.
 /// </summary>
 public EtherealSqlServerModificationCommandBatch(ModificationCommandBatchFactoryDependencies dependencies, int?maxBatchSize) : base(dependencies, maxBatchSize)
 {
 }
 public KoraliumModificationCommandBatchFactory(
     ModificationCommandBatchFactoryDependencies 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 SqliteModificationCommandBatchFactory(
     ModificationCommandBatchFactoryDependencies dependencies)
 {
     Dependencies = dependencies;
 }
 public TestModificationCommandBatch(
     ModificationCommandBatchFactoryDependencies dependencies,
     int?maxBatchSize)
     : base(dependencies)
     => MaxBatchSize = maxBatchSize ?? 1;