@tsonic/efcore 10.0.2 → 10.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Microsoft.EntityFrameworkCore/internal/index.d.ts +52 -34
- package/Microsoft.EntityFrameworkCore.ChangeTracking/internal/index.d.ts +131 -65
- package/Microsoft.EntityFrameworkCore.ChangeTracking.Internal/internal/index.d.ts +350 -252
- package/Microsoft.EntityFrameworkCore.Design/internal/index.d.ts +58 -54
- package/Microsoft.EntityFrameworkCore.Design.Internal/internal/index.d.ts +20 -14
- package/Microsoft.EntityFrameworkCore.Diagnostics/internal/index.d.ts +115 -45
- package/Microsoft.EntityFrameworkCore.Diagnostics.Internal/internal/index.d.ts +40 -43
- package/Microsoft.EntityFrameworkCore.Infrastructure/internal/index.d.ts +264 -236
- package/Microsoft.EntityFrameworkCore.Infrastructure.Internal/internal/index.d.ts +27 -9
- package/Microsoft.EntityFrameworkCore.Internal/internal/index.d.ts +100 -7
- package/Microsoft.EntityFrameworkCore.Metadata/internal/index.d.ts +763 -381
- package/Microsoft.EntityFrameworkCore.Metadata.Builders/internal/index.d.ts +311 -241
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions/internal/index.d.ts +704 -539
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure/internal/index.d.ts +18 -13
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Internal/internal/index.d.ts +11 -1
- package/Microsoft.EntityFrameworkCore.Metadata.Internal/internal/index.d.ts +1041 -691
- package/Microsoft.EntityFrameworkCore.Migrations/internal/index.d.ts +125 -114
- package/Microsoft.EntityFrameworkCore.Migrations.Internal/internal/index.d.ts +65 -63
- package/Microsoft.EntityFrameworkCore.Migrations.Operations/internal/index.d.ts +367 -311
- package/Microsoft.EntityFrameworkCore.Migrations.Operations.Builders/internal/index.d.ts +7 -5
- package/Microsoft.EntityFrameworkCore.Query/internal/index.d.ts +647 -685
- package/Microsoft.EntityFrameworkCore.Query.Internal/internal/index.d.ts +294 -283
- package/Microsoft.EntityFrameworkCore.Query.SqlExpressions/internal/index.d.ts +233 -294
- package/Microsoft.EntityFrameworkCore.Scaffolding/internal/index.d.ts +17 -9
- package/Microsoft.EntityFrameworkCore.Scaffolding.Metadata/internal/index.d.ts +103 -92
- package/Microsoft.EntityFrameworkCore.Storage/internal/index.d.ts +372 -435
- package/Microsoft.EntityFrameworkCore.Storage.Internal/internal/index.d.ts +46 -45
- package/Microsoft.EntityFrameworkCore.Storage.Internal.d.ts +3 -0
- package/Microsoft.EntityFrameworkCore.Storage.Json/internal/index.d.ts +19 -31
- package/Microsoft.EntityFrameworkCore.Storage.ValueConversion/internal/index.d.ts +8 -8
- package/Microsoft.EntityFrameworkCore.Update/internal/index.d.ts +155 -130
- package/Microsoft.EntityFrameworkCore.Update.Internal/internal/index.d.ts +94 -39
- package/Microsoft.EntityFrameworkCore.ValueGeneration/internal/index.d.ts +34 -46
- package/Microsoft.EntityFrameworkCore.ValueGeneration.Internal/internal/index.d.ts +5 -14
- package/Microsoft.Extensions.DependencyInjection.d.ts +3 -0
- package/__internal/extensions/index.d.ts +860 -595
- package/package.json +1 -1
|
@@ -36,6 +36,8 @@ export enum ResultSetMapping {
|
|
|
36
36
|
|
|
37
37
|
|
|
38
38
|
export interface IBatchExecutor$instance {
|
|
39
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_IBatchExecutor: never;
|
|
40
|
+
|
|
39
41
|
Execute(commandBatches: IEnumerable<ModificationCommandBatch>, connection: IRelationalConnection): int;
|
|
40
42
|
ExecuteAsync(commandBatches: IEnumerable<ModificationCommandBatch>, connection: IRelationalConnection, cancellationToken?: CancellationToken): Task<System_Internal.Int32>;
|
|
41
43
|
}
|
|
@@ -44,10 +46,12 @@ export interface IBatchExecutor$instance {
|
|
|
44
46
|
export type IBatchExecutor = IBatchExecutor$instance;
|
|
45
47
|
|
|
46
48
|
export interface IColumnModification$instance {
|
|
47
|
-
readonly
|
|
48
|
-
|
|
49
|
-
readonly
|
|
50
|
-
readonly
|
|
49
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_IColumnModification: never;
|
|
50
|
+
|
|
51
|
+
readonly Entry: IUpdateEntry | undefined;
|
|
52
|
+
readonly Property: IProperty | undefined;
|
|
53
|
+
readonly Column: IColumnBase | undefined;
|
|
54
|
+
readonly TypeMapping: RelationalTypeMapping | undefined;
|
|
51
55
|
readonly IsNullable: Nullable<System_Internal.Boolean>;
|
|
52
56
|
IsRead: boolean;
|
|
53
57
|
IsWrite: boolean;
|
|
@@ -62,9 +66,10 @@ export interface IColumnModification$instance {
|
|
|
62
66
|
readonly OriginalParameterName: string | undefined;
|
|
63
67
|
readonly ColumnName: string;
|
|
64
68
|
readonly ColumnType: string | undefined;
|
|
65
|
-
OriginalValue: unknown;
|
|
69
|
+
get OriginalValue(): unknown | undefined;
|
|
70
|
+
set OriginalValue(value: unknown | undefined);
|
|
66
71
|
get Value(): unknown | undefined;
|
|
67
|
-
set Value(value: unknown);
|
|
72
|
+
set Value(value: unknown | undefined);
|
|
68
73
|
readonly JsonPath: string | undefined;
|
|
69
74
|
AddSharedColumnModification(modification: IColumnModification): void;
|
|
70
75
|
ResetParameterNames(): void;
|
|
@@ -74,6 +79,8 @@ export interface IColumnModification$instance {
|
|
|
74
79
|
export type IColumnModification = IColumnModification$instance;
|
|
75
80
|
|
|
76
81
|
export interface ICommandBatchPreparer$instance extends IResettableService {
|
|
82
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_ICommandBatchPreparer: never;
|
|
83
|
+
|
|
77
84
|
BatchCommands(entries: IList<IUpdateEntry>, updateAdapter: IUpdateAdapter): IEnumerable<ModificationCommandBatch>;
|
|
78
85
|
CreateCommandBatches(commandSet: IEnumerable<IReadOnlyModificationCommand>, moreCommandSets: boolean): IEnumerable<ModificationCommandBatch>;
|
|
79
86
|
ResetState(): void;
|
|
@@ -86,10 +93,12 @@ export interface ICommandBatchPreparer$instance extends Microsoft_EntityFramewor
|
|
|
86
93
|
export type ICommandBatchPreparer = ICommandBatchPreparer$instance;
|
|
87
94
|
|
|
88
95
|
export interface IModificationCommand$instance extends IReadOnlyModificationCommand {
|
|
89
|
-
readonly
|
|
90
|
-
|
|
96
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_IModificationCommand: never;
|
|
97
|
+
|
|
98
|
+
readonly Table: ITable | undefined;
|
|
99
|
+
readonly StoreStoredProcedure: IStoreStoredProcedure | undefined;
|
|
91
100
|
readonly TableName: string;
|
|
92
|
-
readonly Schema: string;
|
|
101
|
+
readonly Schema: string | undefined;
|
|
93
102
|
readonly ColumnModifications: IReadOnlyList<IColumnModification>;
|
|
94
103
|
readonly Entries: IReadOnlyList<IUpdateEntry>;
|
|
95
104
|
readonly EntityState: EntityState;
|
|
@@ -105,6 +114,8 @@ export interface IModificationCommand$instance extends IReadOnlyModificationComm
|
|
|
105
114
|
export type IModificationCommand = IModificationCommand$instance;
|
|
106
115
|
|
|
107
116
|
export interface IModificationCommandBatchFactory$instance {
|
|
117
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_IModificationCommandBatchFactory: never;
|
|
118
|
+
|
|
108
119
|
Create(): ModificationCommandBatch;
|
|
109
120
|
}
|
|
110
121
|
|
|
@@ -112,6 +123,8 @@ export interface IModificationCommandBatchFactory$instance {
|
|
|
112
123
|
export type IModificationCommandBatchFactory = IModificationCommandBatchFactory$instance;
|
|
113
124
|
|
|
114
125
|
export interface IModificationCommandFactory$instance {
|
|
126
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_IModificationCommandFactory: never;
|
|
127
|
+
|
|
115
128
|
CreateModificationCommand(modificationCommandParameters: ModificationCommandParameters): IModificationCommand;
|
|
116
129
|
CreateNonTrackedModificationCommand(modificationCommandParameters: NonTrackedModificationCommandParameters): INonTrackedModificationCommand;
|
|
117
130
|
}
|
|
@@ -120,11 +133,13 @@ export interface IModificationCommandFactory$instance {
|
|
|
120
133
|
export type IModificationCommandFactory = IModificationCommandFactory$instance;
|
|
121
134
|
|
|
122
135
|
export interface INonTrackedModificationCommand$instance extends IReadOnlyModificationCommand {
|
|
136
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_INonTrackedModificationCommand: never;
|
|
137
|
+
|
|
123
138
|
EntityState: EntityState;
|
|
124
|
-
readonly Table: ITable;
|
|
125
|
-
readonly StoreStoredProcedure: IStoreStoredProcedure;
|
|
139
|
+
readonly Table: ITable | undefined;
|
|
140
|
+
readonly StoreStoredProcedure: IStoreStoredProcedure | undefined;
|
|
126
141
|
readonly TableName: string;
|
|
127
|
-
readonly Schema: string;
|
|
142
|
+
readonly Schema: string | undefined;
|
|
128
143
|
readonly ColumnModifications: IReadOnlyList<IColumnModification>;
|
|
129
144
|
readonly Entries: IReadOnlyList<IUpdateEntry>;
|
|
130
145
|
readonly RowsAffectedColumn: IColumnBase | undefined;
|
|
@@ -137,10 +152,12 @@ export interface INonTrackedModificationCommand$instance extends IReadOnlyModifi
|
|
|
137
152
|
export type INonTrackedModificationCommand = INonTrackedModificationCommand$instance;
|
|
138
153
|
|
|
139
154
|
export interface IReadOnlyModificationCommand$instance {
|
|
140
|
-
readonly
|
|
141
|
-
|
|
155
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_IReadOnlyModificationCommand: never;
|
|
156
|
+
|
|
157
|
+
readonly Table: ITable | undefined;
|
|
158
|
+
readonly StoreStoredProcedure: IStoreStoredProcedure | undefined;
|
|
142
159
|
readonly TableName: string;
|
|
143
|
-
readonly Schema: string;
|
|
160
|
+
readonly Schema: string | undefined;
|
|
144
161
|
readonly ColumnModifications: IReadOnlyList<IColumnModification>;
|
|
145
162
|
readonly Entries: IReadOnlyList<IUpdateEntry>;
|
|
146
163
|
readonly EntityState: EntityState;
|
|
@@ -153,6 +170,8 @@ export interface IReadOnlyModificationCommand$instance {
|
|
|
153
170
|
export type IReadOnlyModificationCommand = IReadOnlyModificationCommand$instance;
|
|
154
171
|
|
|
155
172
|
export interface IUpdateAdapter$instance {
|
|
173
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_IUpdateAdapter: never;
|
|
174
|
+
|
|
156
175
|
DeleteOrphansTiming: CascadeTiming;
|
|
157
176
|
CascadeDeleteTiming: CascadeTiming;
|
|
158
177
|
readonly Entries: IEnumerable<IUpdateEntry>;
|
|
@@ -170,6 +189,8 @@ export interface IUpdateAdapter$instance {
|
|
|
170
189
|
export type IUpdateAdapter = IUpdateAdapter$instance;
|
|
171
190
|
|
|
172
191
|
export interface IUpdateAdapterFactory$instance {
|
|
192
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_IUpdateAdapterFactory: never;
|
|
193
|
+
|
|
173
194
|
Create(): IUpdateAdapter;
|
|
174
195
|
CreateStandalone(model?: IModel): IUpdateAdapter;
|
|
175
196
|
}
|
|
@@ -178,6 +199,8 @@ export interface IUpdateAdapterFactory$instance {
|
|
|
178
199
|
export type IUpdateAdapterFactory = IUpdateAdapterFactory$instance;
|
|
179
200
|
|
|
180
201
|
export interface IUpdateEntry$instance {
|
|
202
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_IUpdateEntry: never;
|
|
203
|
+
|
|
181
204
|
readonly Context: DbContext;
|
|
182
205
|
readonly EntityType: IEntityType;
|
|
183
206
|
EntityState: EntityState;
|
|
@@ -198,6 +221,8 @@ export interface IUpdateEntry$instance {
|
|
|
198
221
|
export type IUpdateEntry = IUpdateEntry$instance;
|
|
199
222
|
|
|
200
223
|
export interface IUpdateSqlGenerator$instance {
|
|
224
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_IUpdateSqlGenerator: never;
|
|
225
|
+
|
|
201
226
|
AppendBatchHeader(commandStringBuilder: StringBuilder): void;
|
|
202
227
|
AppendDeleteOperation(commandStringBuilder: StringBuilder, command: IReadOnlyModificationCommand, commandPosition: int, requiresTransaction: boolean): ResultSetMapping;
|
|
203
228
|
AppendDeleteOperation(commandStringBuilder: StringBuilder, command: IReadOnlyModificationCommand, commandPosition: int): ResultSetMapping;
|
|
@@ -209,33 +234,37 @@ export interface IUpdateSqlGenerator$instance {
|
|
|
209
234
|
export type IUpdateSqlGenerator = IUpdateSqlGenerator$instance;
|
|
210
235
|
|
|
211
236
|
export interface ColumnModificationParameters$instance {
|
|
212
|
-
|
|
237
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
238
|
+
|
|
239
|
+
get Column(): IColumnBase | undefined;
|
|
240
|
+
set Column(value: IColumnBase | undefined);
|
|
213
241
|
ColumnName: string;
|
|
214
242
|
get ColumnType(): string | undefined;
|
|
215
|
-
set ColumnType(value: string);
|
|
243
|
+
set ColumnType(value: string | undefined);
|
|
216
244
|
get Entry(): IUpdateEntry | undefined;
|
|
217
|
-
set Entry(value: IUpdateEntry);
|
|
245
|
+
set Entry(value: IUpdateEntry | undefined);
|
|
218
246
|
get GenerateParameterName(): Func<System_Internal.String> | undefined;
|
|
219
|
-
set GenerateParameterName(value: Func<System_Internal.String>);
|
|
247
|
+
set GenerateParameterName(value: Func<System_Internal.String> | undefined);
|
|
220
248
|
IsCondition: boolean;
|
|
221
249
|
IsKey: boolean;
|
|
222
250
|
IsNullable: Nullable<System_Internal.Boolean>;
|
|
223
251
|
IsRead: boolean;
|
|
224
252
|
IsWrite: boolean;
|
|
225
253
|
get JsonPath(): string | undefined;
|
|
226
|
-
set JsonPath(value: string);
|
|
254
|
+
set JsonPath(value: string | undefined);
|
|
227
255
|
get OriginalValue(): unknown | undefined;
|
|
228
|
-
set OriginalValue(value: unknown);
|
|
256
|
+
set OriginalValue(value: unknown | undefined);
|
|
229
257
|
get Property(): IProperty | undefined;
|
|
230
|
-
set Property(value: IProperty);
|
|
258
|
+
set Property(value: IProperty | undefined);
|
|
231
259
|
SensitiveLoggingEnabled: boolean;
|
|
232
260
|
get TypeMapping(): RelationalTypeMapping | undefined;
|
|
233
|
-
set TypeMapping(value: RelationalTypeMapping);
|
|
234
|
-
Value: unknown;
|
|
261
|
+
set TypeMapping(value: RelationalTypeMapping | undefined);
|
|
262
|
+
get Value(): unknown | undefined;
|
|
263
|
+
set Value(value: unknown | undefined);
|
|
235
264
|
Equals(obj: unknown): boolean;
|
|
236
265
|
Equals(other: ColumnModificationParameters): boolean;
|
|
237
266
|
GetHashCode(): int;
|
|
238
|
-
ToString(): string
|
|
267
|
+
ToString(): string;
|
|
239
268
|
}
|
|
240
269
|
|
|
241
270
|
|
|
@@ -250,23 +279,26 @@ export const ColumnModificationParameters: {
|
|
|
250
279
|
export type ColumnModificationParameters = ColumnModificationParameters$instance;
|
|
251
280
|
|
|
252
281
|
export interface ModificationCommandParameters$instance {
|
|
282
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
283
|
+
|
|
253
284
|
get Comparer(): IComparer<IUpdateEntry> | undefined;
|
|
254
|
-
set Comparer(value: IComparer<IUpdateEntry>);
|
|
285
|
+
set Comparer(value: IComparer<IUpdateEntry> | undefined);
|
|
255
286
|
DetailedErrorsEnabled: boolean;
|
|
256
287
|
get GenerateParameterName(): Func<System_Internal.String> | undefined;
|
|
257
|
-
set GenerateParameterName(value: Func<System_Internal.String>);
|
|
258
|
-
Logger: IDiagnosticsLogger_1<DbLoggerCategory_Update
|
|
288
|
+
set GenerateParameterName(value: Func<System_Internal.String> | undefined);
|
|
289
|
+
get Logger(): IDiagnosticsLogger_1<DbLoggerCategory_Update> | undefined;
|
|
290
|
+
set Logger(value: IDiagnosticsLogger_1<DbLoggerCategory_Update> | undefined);
|
|
259
291
|
get Schema(): string | undefined;
|
|
260
|
-
set Schema(value: string);
|
|
292
|
+
set Schema(value: string | undefined);
|
|
261
293
|
SensitiveLoggingEnabled: boolean;
|
|
262
294
|
readonly StoreStoredProcedure: IStoreStoredProcedure | undefined;
|
|
263
295
|
get Table(): ITable | undefined;
|
|
264
|
-
set Table(value: ITable);
|
|
296
|
+
set Table(value: ITable | undefined);
|
|
265
297
|
TableName: string;
|
|
266
298
|
Equals(obj: unknown): boolean;
|
|
267
299
|
Equals(other: ModificationCommandParameters): boolean;
|
|
268
300
|
GetHashCode(): int;
|
|
269
|
-
ToString(): string
|
|
301
|
+
ToString(): string;
|
|
270
302
|
}
|
|
271
303
|
|
|
272
304
|
|
|
@@ -279,16 +311,18 @@ export const ModificationCommandParameters: {
|
|
|
279
311
|
export type ModificationCommandParameters = ModificationCommandParameters$instance;
|
|
280
312
|
|
|
281
313
|
export interface NonTrackedModificationCommandParameters$instance {
|
|
314
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
315
|
+
|
|
282
316
|
get Schema(): string | undefined;
|
|
283
|
-
set Schema(value: string);
|
|
317
|
+
set Schema(value: string | undefined);
|
|
284
318
|
SensitiveLoggingEnabled: boolean;
|
|
285
319
|
get Table(): ITable | undefined;
|
|
286
|
-
set Table(value: ITable);
|
|
320
|
+
set Table(value: ITable | undefined);
|
|
287
321
|
TableName: string;
|
|
288
322
|
Equals(obj: unknown): boolean;
|
|
289
323
|
Equals(other: NonTrackedModificationCommandParameters): boolean;
|
|
290
324
|
GetHashCode(): int;
|
|
291
|
-
ToString(): string
|
|
325
|
+
ToString(): string;
|
|
292
326
|
}
|
|
293
327
|
|
|
294
328
|
|
|
@@ -300,34 +334,31 @@ export const NonTrackedModificationCommandParameters: {
|
|
|
300
334
|
|
|
301
335
|
export type NonTrackedModificationCommandParameters = NonTrackedModificationCommandParameters$instance;
|
|
302
336
|
|
|
303
|
-
export
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
337
|
+
export interface AffectedCountModificationCommandBatch$instance extends ReaderModificationCommandBatch {
|
|
338
|
+
Consume(reader: RelationalDataReader): void;
|
|
339
|
+
ConsumeAsync(reader: RelationalDataReader, cancellationToken?: CancellationToken): Task;
|
|
340
|
+
ConsumeResultSet(startCommandIndex: int, reader: RelationalDataReader): int;
|
|
341
|
+
ConsumeResultSetAsync(startCommandIndex: int, reader: RelationalDataReader, cancellationToken: CancellationToken): Task<System_Internal.Int32>;
|
|
342
|
+
ConsumeResultSetWithRowsAffectedOnly(commandIndex: int, reader: RelationalDataReader): int;
|
|
343
|
+
ConsumeResultSetWithRowsAffectedOnlyAsync(commandIndex: int, reader: RelationalDataReader, cancellationToken: CancellationToken): Task<System_Internal.Int32>;
|
|
344
|
+
ThrowAggregateUpdateConcurrencyException(reader: RelationalDataReader, commandIndex: int, expectedRowsAffected: int, rowsAffected: int): void;
|
|
345
|
+
ThrowAggregateUpdateConcurrencyExceptionAsync(reader: RelationalDataReader, commandIndex: int, expectedRowsAffected: int, rowsAffected: int, cancellationToken: CancellationToken): Task;
|
|
312
346
|
}
|
|
313
347
|
|
|
314
348
|
|
|
315
|
-
export
|
|
316
|
-
}
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
export const AffectedCountModificationCommandBatch: {
|
|
320
|
-
new(dependencies: ModificationCommandBatchFactoryDependencies, maxBatchSize: Nullable<System_Internal.Int32>): AffectedCountModificationCommandBatch;
|
|
349
|
+
export const AffectedCountModificationCommandBatch: (abstract new(dependencies: ModificationCommandBatchFactoryDependencies, maxBatchSize: Nullable<System_Internal.Int32>) => AffectedCountModificationCommandBatch) & {
|
|
321
350
|
};
|
|
322
351
|
|
|
323
352
|
|
|
324
353
|
export type AffectedCountModificationCommandBatch = AffectedCountModificationCommandBatch$instance;
|
|
325
354
|
|
|
326
355
|
export interface ColumnModification$instance {
|
|
327
|
-
readonly
|
|
356
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_IColumnModification: never;
|
|
357
|
+
|
|
358
|
+
readonly Column: IColumnBase | undefined;
|
|
328
359
|
readonly ColumnName: string;
|
|
329
360
|
readonly ColumnType: string | undefined;
|
|
330
|
-
readonly Entry: IUpdateEntry;
|
|
361
|
+
readonly Entry: IUpdateEntry | undefined;
|
|
331
362
|
IsCondition: boolean;
|
|
332
363
|
IsKey: boolean;
|
|
333
364
|
readonly IsNullable: Nullable<System_Internal.Boolean>;
|
|
@@ -335,17 +366,18 @@ export interface ColumnModification$instance {
|
|
|
335
366
|
IsWrite: boolean;
|
|
336
367
|
readonly JsonPath: string | undefined;
|
|
337
368
|
readonly OriginalParameterName: string | undefined;
|
|
338
|
-
OriginalValue: unknown;
|
|
369
|
+
get OriginalValue(): unknown | undefined;
|
|
370
|
+
set OriginalValue(value: unknown | undefined);
|
|
339
371
|
readonly ParameterName: string | undefined;
|
|
340
|
-
readonly Property: IProperty;
|
|
341
|
-
readonly TypeMapping: RelationalTypeMapping;
|
|
372
|
+
readonly Property: IProperty | undefined;
|
|
373
|
+
readonly TypeMapping: RelationalTypeMapping | undefined;
|
|
342
374
|
readonly UseCurrentValue: boolean;
|
|
343
375
|
readonly UseCurrentValueParameter: boolean;
|
|
344
376
|
readonly UseOriginalValue: boolean;
|
|
345
377
|
readonly UseOriginalValueParameter: boolean;
|
|
346
378
|
readonly UseParameter: boolean;
|
|
347
379
|
get Value(): unknown | undefined;
|
|
348
|
-
set Value(value: unknown);
|
|
380
|
+
set Value(value: unknown | undefined);
|
|
349
381
|
AddSharedColumnModification(modification: IColumnModification): void;
|
|
350
382
|
ResetParameterNames(): void;
|
|
351
383
|
}
|
|
@@ -385,25 +417,25 @@ export const EquatableKeyValue_1: {
|
|
|
385
417
|
|
|
386
418
|
export type EquatableKeyValue_1<TKey> = EquatableKeyValue_1$instance<TKey>;
|
|
387
419
|
|
|
388
|
-
export
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
420
|
+
export interface ModificationCommand$instance {
|
|
421
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_IModificationCommand: never;
|
|
422
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_INonTrackedModificationCommand: never;
|
|
423
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_IReadOnlyModificationCommand: never;
|
|
393
424
|
|
|
394
|
-
export interface ModificationCommand$instance extends ModificationCommand$protected {
|
|
395
425
|
readonly ColumnModifications: IReadOnlyList<IColumnModification>;
|
|
396
426
|
EntityState: EntityState;
|
|
397
427
|
readonly Entries: IReadOnlyList<IUpdateEntry>;
|
|
398
428
|
get RowsAffectedColumn(): IColumnBase | undefined;
|
|
399
|
-
set RowsAffectedColumn(value: IColumnBase);
|
|
400
|
-
readonly Schema: string;
|
|
401
|
-
readonly StoreStoredProcedure: IStoreStoredProcedure;
|
|
402
|
-
readonly Table: ITable;
|
|
429
|
+
set RowsAffectedColumn(value: IColumnBase | undefined);
|
|
430
|
+
readonly Schema: string | undefined;
|
|
431
|
+
readonly StoreStoredProcedure: IStoreStoredProcedure | undefined;
|
|
432
|
+
readonly Table: ITable | undefined;
|
|
403
433
|
readonly TableName: string;
|
|
404
434
|
AddColumnModification(columnModificationParameters: ColumnModificationParameters): IColumnModification;
|
|
405
435
|
AddEntry(entry: IUpdateEntry, mainEntry: boolean): void;
|
|
406
436
|
AssertColumnsNotInitialized(): void;
|
|
437
|
+
CreateColumnModification(columnModificationParameters: ColumnModificationParameters): IColumnModification;
|
|
438
|
+
ProcessSinglePropertyJsonUpdate(parameters: ColumnModificationParameters): void;
|
|
407
439
|
PropagateOutputParameters(parameterCollection: DbParameterCollection, baseParameterIndex: int): void;
|
|
408
440
|
PropagateResults(relationalReader: RelationalDataReader): void;
|
|
409
441
|
ToString(): string;
|
|
@@ -436,14 +468,15 @@ export interface ModificationCommandBatch$instance {
|
|
|
436
468
|
}
|
|
437
469
|
|
|
438
470
|
|
|
439
|
-
export const ModificationCommandBatch: {
|
|
440
|
-
new(): ModificationCommandBatch;
|
|
471
|
+
export const ModificationCommandBatch: (abstract new() => ModificationCommandBatch) & {
|
|
441
472
|
};
|
|
442
473
|
|
|
443
474
|
|
|
444
475
|
export type ModificationCommandBatch = ModificationCommandBatch$instance;
|
|
445
476
|
|
|
446
477
|
export interface ModificationCommandBatchFactoryDependencies$instance {
|
|
478
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
479
|
+
|
|
447
480
|
CommandBuilderFactory: IRelationalCommandBuilderFactory;
|
|
448
481
|
CurrentContext: ICurrentDbContext;
|
|
449
482
|
Logger: IRelationalCommandDiagnosticsLogger;
|
|
@@ -465,40 +498,36 @@ export const ModificationCommandBatchFactoryDependencies: {
|
|
|
465
498
|
|
|
466
499
|
export type ModificationCommandBatchFactoryDependencies = ModificationCommandBatchFactoryDependencies$instance;
|
|
467
500
|
|
|
468
|
-
export
|
|
469
|
-
protected readonly Dependencies: ModificationCommandBatchFactoryDependencies;
|
|
470
|
-
protected readonly IsCommandTextEmpty: boolean;
|
|
471
|
-
protected readonly MaxBatchSize: int;
|
|
472
|
-
protected readonly ParameterValues: Dictionary<System_Internal.String, unknown | undefined>;
|
|
473
|
-
protected readonly RelationalCommandBuilder: IRelationalCommandBuilder;
|
|
474
|
-
protected readonly ResultSetMappings: IList<ResultSetMapping>;
|
|
475
|
-
protected readonly SqlBuilder: StringBuilder;
|
|
476
|
-
protected StoreCommand: RawSqlCommand | undefined;
|
|
477
|
-
protected readonly UpdateSqlGenerator: IUpdateSqlGenerator;
|
|
478
|
-
protected AddCommand(modificationCommand: IReadOnlyModificationCommand): void;
|
|
479
|
-
protected AddParameter(columnModification: IColumnModification): void;
|
|
480
|
-
protected AddParameters(modificationCommand: IReadOnlyModificationCommand): void;
|
|
481
|
-
protected abstract Consume(reader: RelationalDataReader): void;
|
|
482
|
-
protected abstract ConsumeAsync(reader: RelationalDataReader, cancellationToken?: CancellationToken): Task;
|
|
483
|
-
protected IsValid(): boolean;
|
|
484
|
-
protected RollbackLastCommand(modificationCommand: IReadOnlyModificationCommand): void;
|
|
485
|
-
protected SetRequiresTransaction(requiresTransaction: boolean): void;
|
|
486
|
-
}
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
export interface ReaderModificationCommandBatch$instance extends ReaderModificationCommandBatch$protected, ModificationCommandBatch {
|
|
501
|
+
export interface ReaderModificationCommandBatch$instance extends ModificationCommandBatch {
|
|
490
502
|
readonly AreMoreBatchesExpected: boolean;
|
|
503
|
+
readonly Dependencies: ModificationCommandBatchFactoryDependencies;
|
|
504
|
+
readonly IsCommandTextEmpty: boolean;
|
|
505
|
+
readonly MaxBatchSize: int;
|
|
491
506
|
readonly ModificationCommands: IReadOnlyList<IReadOnlyModificationCommand>;
|
|
507
|
+
readonly ParameterValues: Dictionary<System_Internal.String, unknown | undefined>;
|
|
508
|
+
readonly RelationalCommandBuilder: IRelationalCommandBuilder;
|
|
492
509
|
readonly RequiresTransaction: boolean;
|
|
510
|
+
readonly ResultSetMappings: IList<ResultSetMapping>;
|
|
511
|
+
readonly SqlBuilder: StringBuilder;
|
|
512
|
+
get StoreCommand(): RawSqlCommand | undefined;
|
|
513
|
+
set StoreCommand(value: RawSqlCommand | undefined);
|
|
514
|
+
readonly UpdateSqlGenerator: IUpdateSqlGenerator;
|
|
515
|
+
AddCommand(modificationCommand: IReadOnlyModificationCommand): void;
|
|
516
|
+
AddParameter(columnModification: IColumnModification): void;
|
|
517
|
+
AddParameters(modificationCommand: IReadOnlyModificationCommand): void;
|
|
493
518
|
Complete(moreBatchesExpected: boolean): void;
|
|
519
|
+
Consume(reader: RelationalDataReader): void;
|
|
520
|
+
ConsumeAsync(reader: RelationalDataReader, cancellationToken?: CancellationToken): Task;
|
|
494
521
|
Execute(connection: IRelationalConnection): void;
|
|
495
522
|
ExecuteAsync(connection: IRelationalConnection, cancellationToken?: CancellationToken): Task;
|
|
523
|
+
IsValid(): boolean;
|
|
524
|
+
RollbackLastCommand(modificationCommand: IReadOnlyModificationCommand): void;
|
|
525
|
+
SetRequiresTransaction(requiresTransaction: boolean): void;
|
|
496
526
|
TryAddCommand(modificationCommand: IReadOnlyModificationCommand): boolean;
|
|
497
527
|
}
|
|
498
528
|
|
|
499
529
|
|
|
500
|
-
export const ReaderModificationCommandBatch: {
|
|
501
|
-
new(dependencies: ModificationCommandBatchFactoryDependencies, maxBatchSize: Nullable<System_Internal.Int32>): ReaderModificationCommandBatch;
|
|
530
|
+
export const ReaderModificationCommandBatch: (abstract new(dependencies: ModificationCommandBatchFactoryDependencies, maxBatchSize: Nullable<System_Internal.Int32>) => ReaderModificationCommandBatch) & {
|
|
502
531
|
};
|
|
503
532
|
|
|
504
533
|
|
|
@@ -515,37 +544,34 @@ export const SingularModificationCommandBatch: {
|
|
|
515
544
|
|
|
516
545
|
export type SingularModificationCommandBatch = SingularModificationCommandBatch$instance;
|
|
517
546
|
|
|
518
|
-
export
|
|
519
|
-
|
|
520
|
-
protected AppendFromClause(commandStringBuilder: StringBuilder, name: string, schema: string): void;
|
|
521
|
-
protected abstract AppendIdentityWhereCondition(commandStringBuilder: StringBuilder, columnModification: IColumnModification): void;
|
|
522
|
-
protected AppendInsertAndSelectOperation(commandStringBuilder: StringBuilder, command: IReadOnlyModificationCommand, commandPosition: int, requiresTransaction: boolean): ResultSetMapping;
|
|
523
|
-
protected abstract AppendRowsAffectedWhereCondition(commandStringBuilder: StringBuilder, expectedRowsAffected: int): void;
|
|
524
|
-
protected AppendSelectAffectedCommand(commandStringBuilder: StringBuilder, name: string, schema: string, readOperations: IReadOnlyList<IColumnModification>, conditionOperations: IReadOnlyList<IColumnModification>, commandPosition: int): ResultSetMapping;
|
|
525
|
-
protected abstract AppendSelectAffectedCountCommand(commandStringBuilder: StringBuilder, name: string, schema: string, commandPosition: int): ResultSetMapping;
|
|
526
|
-
protected AppendSelectCommandHeader(commandStringBuilder: StringBuilder, operations: IReadOnlyList<IColumnModification>): void;
|
|
527
|
-
protected AppendUpdateAndSelectOperation(commandStringBuilder: StringBuilder, command: IReadOnlyModificationCommand, commandPosition: int, requiresTransaction: boolean): ResultSetMapping;
|
|
528
|
-
protected AppendWhereAffectedClause(commandStringBuilder: StringBuilder, operations: IReadOnlyList<IColumnModification>): void;
|
|
529
|
-
protected IsIdentityOperation(modification: IColumnModification): boolean;
|
|
530
|
-
}
|
|
547
|
+
export interface UpdateAndSelectSqlGenerator$instance extends UpdateSqlGenerator$instance {
|
|
548
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_IUpdateSqlGenerator: never;
|
|
531
549
|
|
|
532
|
-
|
|
533
|
-
export interface UpdateAndSelectSqlGenerator$instance extends UpdateAndSelectSqlGenerator$protected, UpdateSqlGenerator$instance {
|
|
534
550
|
AppendBatchHeader(commandStringBuilder: StringBuilder): void;
|
|
551
|
+
AppendDeleteAndSelectOperation(commandStringBuilder: StringBuilder, command: IReadOnlyModificationCommand, commandPosition: int, requiresTransaction: boolean): ResultSetMapping;
|
|
535
552
|
AppendDeleteOperation(commandStringBuilder: StringBuilder, command: IReadOnlyModificationCommand, commandPosition: int, requiresTransaction: boolean): ResultSetMapping;
|
|
536
553
|
AppendDeleteOperation(commandStringBuilder: StringBuilder, command: IReadOnlyModificationCommand, commandPosition: int): ResultSetMapping;
|
|
554
|
+
AppendFromClause(commandStringBuilder: StringBuilder, name: string, schema: string): void;
|
|
555
|
+
AppendIdentityWhereCondition(commandStringBuilder: StringBuilder, columnModification: IColumnModification): void;
|
|
556
|
+
AppendInsertAndSelectOperation(commandStringBuilder: StringBuilder, command: IReadOnlyModificationCommand, commandPosition: int, requiresTransaction: boolean): ResultSetMapping;
|
|
537
557
|
AppendInsertOperation(commandStringBuilder: StringBuilder, command: IReadOnlyModificationCommand, commandPosition: int, requiresTransaction: boolean): ResultSetMapping;
|
|
538
558
|
AppendInsertOperation(commandStringBuilder: StringBuilder, command: IReadOnlyModificationCommand, commandPosition: int): ResultSetMapping;
|
|
539
559
|
AppendNextSequenceValueOperation(commandStringBuilder: StringBuilder, name: string, schema: string): void;
|
|
560
|
+
AppendRowsAffectedWhereCondition(commandStringBuilder: StringBuilder, expectedRowsAffected: int): void;
|
|
561
|
+
AppendSelectAffectedCommand(commandStringBuilder: StringBuilder, name: string, schema: string, readOperations: IReadOnlyList<IColumnModification>, conditionOperations: IReadOnlyList<IColumnModification>, commandPosition: int): ResultSetMapping;
|
|
562
|
+
AppendSelectAffectedCountCommand(commandStringBuilder: StringBuilder, name: string, schema: string, commandPosition: int): ResultSetMapping;
|
|
563
|
+
AppendSelectCommandHeader(commandStringBuilder: StringBuilder, operations: IReadOnlyList<IColumnModification>): void;
|
|
540
564
|
AppendStoredProcedureCall(commandStringBuilder: StringBuilder, command: IReadOnlyModificationCommand, commandPosition: int, requiresTransaction: boolean): ResultSetMapping;
|
|
565
|
+
AppendUpdateAndSelectOperation(commandStringBuilder: StringBuilder, command: IReadOnlyModificationCommand, commandPosition: int, requiresTransaction: boolean): ResultSetMapping;
|
|
541
566
|
AppendUpdateOperation(commandStringBuilder: StringBuilder, command: IReadOnlyModificationCommand, commandPosition: int, requiresTransaction: boolean): ResultSetMapping;
|
|
542
567
|
AppendUpdateOperation(commandStringBuilder: StringBuilder, command: IReadOnlyModificationCommand, commandPosition: int): ResultSetMapping;
|
|
568
|
+
AppendWhereAffectedClause(commandStringBuilder: StringBuilder, operations: IReadOnlyList<IColumnModification>): void;
|
|
543
569
|
GenerateNextSequenceValueOperation(name: string, schema: string): string;
|
|
570
|
+
IsIdentityOperation(modification: IColumnModification): boolean;
|
|
544
571
|
}
|
|
545
572
|
|
|
546
573
|
|
|
547
|
-
export const UpdateAndSelectSqlGenerator: {
|
|
548
|
-
new(dependencies: UpdateSqlGeneratorDependencies): UpdateAndSelectSqlGenerator;
|
|
574
|
+
export const UpdateAndSelectSqlGenerator: (abstract new(dependencies: UpdateSqlGeneratorDependencies) => UpdateAndSelectSqlGenerator) & {
|
|
549
575
|
};
|
|
550
576
|
|
|
551
577
|
|
|
@@ -556,46 +582,43 @@ export interface __UpdateAndSelectSqlGenerator$views {
|
|
|
556
582
|
export type UpdateAndSelectSqlGenerator = UpdateAndSelectSqlGenerator$instance & __UpdateAndSelectSqlGenerator$views;
|
|
557
583
|
|
|
558
584
|
|
|
559
|
-
export
|
|
560
|
-
|
|
561
|
-
protected readonly SqlGenerationHelper: ISqlGenerationHelper;
|
|
562
|
-
protected AppendDeleteCommand(commandStringBuilder: StringBuilder, name: string, schema: string, readOperations: IReadOnlyList<IColumnModification>, conditionOperations: IReadOnlyList<IColumnModification>, appendReturningOneClause?: boolean): void;
|
|
563
|
-
protected AppendDeleteCommandHeader(commandStringBuilder: StringBuilder, name: string, schema: string): void;
|
|
564
|
-
protected AppendDeleteReturningOperation(commandStringBuilder: StringBuilder, command: IReadOnlyModificationCommand, commandPosition: int, requiresTransaction: boolean): ResultSetMapping;
|
|
565
|
-
protected AppendInsertCommand(commandStringBuilder: StringBuilder, name: string, schema: string, writeOperations: IReadOnlyList<IColumnModification>, readOperations: IReadOnlyList<IColumnModification>): void;
|
|
566
|
-
protected AppendInsertCommandHeader(commandStringBuilder: StringBuilder, name: string, schema: string, operations: IReadOnlyList<IColumnModification>): void;
|
|
567
|
-
protected AppendReturningClause(commandStringBuilder: StringBuilder, operations: IReadOnlyList<IColumnModification>, additionalValues?: string): void;
|
|
568
|
-
protected AppendUpdateColumnValue(updateSqlGeneratorHelper: ISqlGenerationHelper, columnModification: IColumnModification, stringBuilder: StringBuilder, name: string, schema: string): void;
|
|
569
|
-
protected AppendUpdateCommand(commandStringBuilder: StringBuilder, name: string, schema: string, writeOperations: IReadOnlyList<IColumnModification>, readOperations: IReadOnlyList<IColumnModification>, conditionOperations: IReadOnlyList<IColumnModification>, appendReturningOneClause?: boolean): void;
|
|
570
|
-
protected AppendUpdateCommandHeader(commandStringBuilder: StringBuilder, name: string, schema: string, operations: IReadOnlyList<IColumnModification>): void;
|
|
571
|
-
protected AppendUpdateReturningOperation(commandStringBuilder: StringBuilder, command: IReadOnlyModificationCommand, commandPosition: int, requiresTransaction: boolean): ResultSetMapping;
|
|
572
|
-
protected AppendValues(commandStringBuilder: StringBuilder, name: string, schema: string, operations: IReadOnlyList<IColumnModification>): void;
|
|
573
|
-
protected AppendValuesHeader(commandStringBuilder: StringBuilder, operations: IReadOnlyList<IColumnModification>): void;
|
|
574
|
-
protected AppendWhereClause(commandStringBuilder: StringBuilder, operations: IReadOnlyList<IColumnModification>): void;
|
|
575
|
-
protected AppendWhereCondition(commandStringBuilder: StringBuilder, columnModification: IColumnModification, useOriginalValue: boolean): void;
|
|
576
|
-
}
|
|
577
|
-
|
|
585
|
+
export interface UpdateSqlGenerator$instance {
|
|
586
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_IUpdateSqlGenerator: never;
|
|
578
587
|
|
|
579
|
-
|
|
588
|
+
readonly Dependencies: UpdateSqlGeneratorDependencies;
|
|
589
|
+
readonly SqlGenerationHelper: ISqlGenerationHelper;
|
|
580
590
|
AppendBatchHeader(commandStringBuilder: StringBuilder): void;
|
|
591
|
+
AppendDeleteCommand(commandStringBuilder: StringBuilder, name: string, schema: string, readOperations: IReadOnlyList<IColumnModification>, conditionOperations: IReadOnlyList<IColumnModification>, appendReturningOneClause?: boolean): void;
|
|
592
|
+
AppendDeleteCommandHeader(commandStringBuilder: StringBuilder, name: string, schema: string): void;
|
|
581
593
|
AppendDeleteOperation(commandStringBuilder: StringBuilder, command: IReadOnlyModificationCommand, commandPosition: int, requiresTransaction: boolean): ResultSetMapping;
|
|
582
594
|
AppendDeleteOperation(commandStringBuilder: StringBuilder, command: IReadOnlyModificationCommand, commandPosition: int): ResultSetMapping;
|
|
595
|
+
AppendDeleteReturningOperation(commandStringBuilder: StringBuilder, command: IReadOnlyModificationCommand, commandPosition: int, requiresTransaction: boolean): ResultSetMapping;
|
|
596
|
+
AppendInsertCommand(commandStringBuilder: StringBuilder, name: string, schema: string, writeOperations: IReadOnlyList<IColumnModification>, readOperations: IReadOnlyList<IColumnModification>): void;
|
|
597
|
+
AppendInsertCommandHeader(commandStringBuilder: StringBuilder, name: string, schema: string, operations: IReadOnlyList<IColumnModification>): void;
|
|
583
598
|
AppendInsertOperation(commandStringBuilder: StringBuilder, command: IReadOnlyModificationCommand, commandPosition: int, requiresTransaction: boolean): ResultSetMapping;
|
|
584
599
|
AppendInsertOperation(commandStringBuilder: StringBuilder, command: IReadOnlyModificationCommand, commandPosition: int): ResultSetMapping;
|
|
585
600
|
AppendInsertReturningOperation(commandStringBuilder: StringBuilder, command: IReadOnlyModificationCommand, commandPosition: int, requiresTransaction: boolean): ResultSetMapping;
|
|
586
601
|
AppendNextSequenceValueOperation(commandStringBuilder: StringBuilder, name: string, schema: string): void;
|
|
587
602
|
AppendObtainNextSequenceValueOperation(commandStringBuilder: StringBuilder, name: string, schema: string): void;
|
|
603
|
+
AppendReturningClause(commandStringBuilder: StringBuilder, operations: IReadOnlyList<IColumnModification>, additionalValues?: string): void;
|
|
588
604
|
AppendStoredProcedureCall(commandStringBuilder: StringBuilder, command: IReadOnlyModificationCommand, commandPosition: int, requiresTransaction: boolean): ResultSetMapping;
|
|
605
|
+
AppendUpdateColumnValue(updateSqlGeneratorHelper: ISqlGenerationHelper, columnModification: IColumnModification, stringBuilder: StringBuilder, name: string, schema: string): void;
|
|
606
|
+
AppendUpdateCommand(commandStringBuilder: StringBuilder, name: string, schema: string, writeOperations: IReadOnlyList<IColumnModification>, readOperations: IReadOnlyList<IColumnModification>, conditionOperations: IReadOnlyList<IColumnModification>, appendReturningOneClause?: boolean): void;
|
|
607
|
+
AppendUpdateCommandHeader(commandStringBuilder: StringBuilder, name: string, schema: string, operations: IReadOnlyList<IColumnModification>): void;
|
|
589
608
|
AppendUpdateOperation(commandStringBuilder: StringBuilder, command: IReadOnlyModificationCommand, commandPosition: int, requiresTransaction: boolean): ResultSetMapping;
|
|
590
609
|
AppendUpdateOperation(commandStringBuilder: StringBuilder, command: IReadOnlyModificationCommand, commandPosition: int): ResultSetMapping;
|
|
610
|
+
AppendUpdateReturningOperation(commandStringBuilder: StringBuilder, command: IReadOnlyModificationCommand, commandPosition: int, requiresTransaction: boolean): ResultSetMapping;
|
|
611
|
+
AppendValues(commandStringBuilder: StringBuilder, name: string, schema: string, operations: IReadOnlyList<IColumnModification>): void;
|
|
612
|
+
AppendValuesHeader(commandStringBuilder: StringBuilder, operations: IReadOnlyList<IColumnModification>): void;
|
|
613
|
+
AppendWhereClause(commandStringBuilder: StringBuilder, operations: IReadOnlyList<IColumnModification>): void;
|
|
614
|
+
AppendWhereCondition(commandStringBuilder: StringBuilder, columnModification: IColumnModification, useOriginalValue: boolean): void;
|
|
591
615
|
GenerateNextSequenceValueOperation(name: string, schema: string): string;
|
|
592
616
|
GenerateObtainNextSequenceValueOperation(name: string, schema: string): string;
|
|
593
617
|
PrependEnsureAutocommit(commandStringBuilder: StringBuilder): void;
|
|
594
618
|
}
|
|
595
619
|
|
|
596
620
|
|
|
597
|
-
export const UpdateSqlGenerator: {
|
|
598
|
-
new(dependencies: UpdateSqlGeneratorDependencies): UpdateSqlGenerator;
|
|
621
|
+
export const UpdateSqlGenerator: (abstract new(dependencies: UpdateSqlGeneratorDependencies) => UpdateSqlGenerator) & {
|
|
599
622
|
AppendSqlLiteral(commandStringBuilder: StringBuilder, modification: IColumnModification, tableName: string, schema: string): void;
|
|
600
623
|
};
|
|
601
624
|
|
|
@@ -610,6 +633,8 @@ export type UpdateSqlGenerator = UpdateSqlGenerator$instance & __UpdateSqlGenera
|
|
|
610
633
|
|
|
611
634
|
|
|
612
635
|
export interface UpdateSqlGeneratorDependencies$instance {
|
|
636
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
637
|
+
|
|
613
638
|
SqlGenerationHelper: ISqlGenerationHelper;
|
|
614
639
|
TypeMappingSource: IRelationalTypeMappingSource;
|
|
615
640
|
_Clone_$(): UpdateSqlGeneratorDependencies;
|