@tsonic/efcore-sqlite 10.0.1 → 10.0.3
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.Data.Sqlite/bindings.json +948 -1
- package/Microsoft.Data.Sqlite/internal/index.d.ts +31 -11
- package/Microsoft.DotNet.PlatformAbstractions/bindings.json +10 -0
- package/Microsoft.EntityFrameworkCore/bindings.json +113 -0
- package/Microsoft.EntityFrameworkCore.Diagnostics/bindings.json +31 -0
- package/Microsoft.EntityFrameworkCore.Infrastructure/bindings.json +21 -0
- package/Microsoft.EntityFrameworkCore.Metadata/bindings.json +25 -0
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions/bindings.json +197 -2
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions/internal/index.d.ts +10 -2
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.d.ts +3 -2
- package/Microsoft.EntityFrameworkCore.Migrations/bindings.json +557 -0
- package/Microsoft.EntityFrameworkCore.Migrations/internal/index.d.ts +30 -3
- package/Microsoft.EntityFrameworkCore.Migrations.d.ts +3 -3
- package/Microsoft.EntityFrameworkCore.Sqlite.Design.Internal/bindings.json +52 -0
- package/Microsoft.EntityFrameworkCore.Sqlite.Design.Internal/internal/index.d.ts +2 -1
- package/Microsoft.EntityFrameworkCore.Sqlite.Design.Internal.d.ts +1 -1
- package/Microsoft.EntityFrameworkCore.Sqlite.Diagnostics.Internal/bindings.json +37 -0
- package/Microsoft.EntityFrameworkCore.Sqlite.Infrastructure.Internal/bindings.json +190 -0
- package/Microsoft.EntityFrameworkCore.Sqlite.Infrastructure.Internal/internal/index.d.ts +13 -2
- package/Microsoft.EntityFrameworkCore.Sqlite.Infrastructure.Internal.d.ts +3 -2
- package/Microsoft.EntityFrameworkCore.Sqlite.Internal/bindings.json +62 -0
- package/Microsoft.EntityFrameworkCore.Sqlite.Metadata.Internal/bindings.json +26 -0
- package/Microsoft.EntityFrameworkCore.Sqlite.Migrations.Internal/bindings.json +98 -0
- package/Microsoft.EntityFrameworkCore.Sqlite.Migrations.Internal/internal/index.d.ts +4 -1
- package/Microsoft.EntityFrameworkCore.Sqlite.Migrations.Internal.d.ts +1 -1
- package/Microsoft.EntityFrameworkCore.Sqlite.Query.Internal/bindings.json +1541 -79
- package/Microsoft.EntityFrameworkCore.Sqlite.Query.Internal/internal/index.d.ts +55 -4
- package/Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.d.ts +5 -4
- package/Microsoft.EntityFrameworkCore.Sqlite.Scaffolding.Internal/bindings.json +45 -0
- package/Microsoft.EntityFrameworkCore.Sqlite.Scaffolding.Internal/internal/index.d.ts +3 -2
- package/Microsoft.EntityFrameworkCore.Sqlite.Scaffolding.Internal.d.ts +2 -2
- package/Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal/bindings.json +749 -9
- package/Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal/internal/index.d.ts +28 -2
- package/Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.d.ts +3 -2
- package/Microsoft.EntityFrameworkCore.Sqlite.Storage.Json.Internal/bindings.json +55 -0
- package/Microsoft.EntityFrameworkCore.Sqlite.Storage.Json.Internal/internal/index.d.ts +0 -5
- package/Microsoft.EntityFrameworkCore.Sqlite.Update.Internal/bindings.json +194 -2
- package/Microsoft.EntityFrameworkCore.Sqlite.Update.Internal/internal/index.d.ts +9 -2
- package/Microsoft.EntityFrameworkCore.Sqlite.Update.Internal.d.ts +3 -2
- package/Microsoft.Extensions.DependencyInjection/bindings.json +6 -0
- package/Microsoft.Extensions.DependencyModel/bindings.json +213 -0
- package/Microsoft.Extensions.DependencyModel/internal/index.d.ts +4 -3
- package/Microsoft.Extensions.DependencyModel.Resolution/bindings.json +63 -0
- package/SQLitePCL/bindings.json +1398 -9
- package/SQLitePCL/internal/index.d.ts +10 -10
- package/System.Collections.Generic/bindings.json +10 -0
- package/package.json +1 -1
|
@@ -15,6 +15,10 @@
|
|
|
15
15
|
"isSealed": false,
|
|
16
16
|
"isStatic": false,
|
|
17
17
|
"arity": 0,
|
|
18
|
+
"baseType": {
|
|
19
|
+
"stableId": "System.Private.CoreLib:System.Object",
|
|
20
|
+
"clrName": "System.Object"
|
|
21
|
+
},
|
|
18
22
|
"methods": [],
|
|
19
23
|
"properties": [],
|
|
20
24
|
"fields": [],
|
|
@@ -27,6 +31,7 @@
|
|
|
27
31
|
"normalizedSignature": "constructor|():void|static=false",
|
|
28
32
|
"isStatic": false,
|
|
29
33
|
"parameterCount": 0,
|
|
34
|
+
"visibility": "Public",
|
|
30
35
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Update.Internal.SqliteLegacyUpdateSqlGenerator",
|
|
31
36
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
32
37
|
}
|
|
@@ -43,7 +48,52 @@
|
|
|
43
48
|
"isSealed": false,
|
|
44
49
|
"isStatic": false,
|
|
45
50
|
"arity": 0,
|
|
46
|
-
"
|
|
51
|
+
"baseType": {
|
|
52
|
+
"stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Update.ModificationCommand",
|
|
53
|
+
"clrName": "Microsoft.EntityFrameworkCore.Update.ModificationCommand"
|
|
54
|
+
},
|
|
55
|
+
"interfaces": [
|
|
56
|
+
{
|
|
57
|
+
"stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Update.IModificationCommand",
|
|
58
|
+
"clrName": "Microsoft.EntityFrameworkCore.Update.IModificationCommand"
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
"stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Update.IReadOnlyModificationCommand",
|
|
62
|
+
"clrName": "Microsoft.EntityFrameworkCore.Update.IReadOnlyModificationCommand"
|
|
63
|
+
},
|
|
64
|
+
{
|
|
65
|
+
"stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Update.INonTrackedModificationCommand",
|
|
66
|
+
"clrName": "Microsoft.EntityFrameworkCore.Update.INonTrackedModificationCommand"
|
|
67
|
+
}
|
|
68
|
+
],
|
|
69
|
+
"methods": [
|
|
70
|
+
{
|
|
71
|
+
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Update.Internal.SqliteModificationCommand::ProcessSinglePropertyJsonUpdate(Microsoft.EntityFrameworkCore.Update.ColumnModificationParameters\u0026):System.Void",
|
|
72
|
+
"clrName": "ProcessSinglePropertyJsonUpdate",
|
|
73
|
+
"metadataToken": 100663778,
|
|
74
|
+
"canonicalSignature": "(Microsoft.EntityFrameworkCore.Update.ColumnModificationParameters\u0026):System.Void",
|
|
75
|
+
"normalizedSignature": "ProcessSinglePropertyJsonUpdate|(Microsoft.EntityFrameworkCore.Update.ColumnModificationParameters\u0026):System.Void|static=false",
|
|
76
|
+
"emitScope": "ClassSurface",
|
|
77
|
+
"provenance": "Original",
|
|
78
|
+
"arity": 0,
|
|
79
|
+
"parameterCount": 1,
|
|
80
|
+
"isStatic": false,
|
|
81
|
+
"isAbstract": false,
|
|
82
|
+
"isVirtual": true,
|
|
83
|
+
"isOverride": true,
|
|
84
|
+
"isSealed": false,
|
|
85
|
+
"visibility": "Protected",
|
|
86
|
+
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Update.Internal.SqliteModificationCommand",
|
|
87
|
+
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
|
|
88
|
+
"isExtensionMethod": false,
|
|
89
|
+
"parameterModifiers": [
|
|
90
|
+
{
|
|
91
|
+
"index": 0,
|
|
92
|
+
"modifier": "ref"
|
|
93
|
+
}
|
|
94
|
+
]
|
|
95
|
+
}
|
|
96
|
+
],
|
|
47
97
|
"properties": [],
|
|
48
98
|
"fields": [],
|
|
49
99
|
"events": [],
|
|
@@ -55,6 +105,7 @@
|
|
|
55
105
|
"normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Update.ModificationCommandParameters\u0026):void|static=false",
|
|
56
106
|
"isStatic": false,
|
|
57
107
|
"parameterCount": 1,
|
|
108
|
+
"visibility": "Public",
|
|
58
109
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Update.Internal.SqliteModificationCommand",
|
|
59
110
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
|
|
60
111
|
"parameterModifiers": [
|
|
@@ -71,6 +122,7 @@
|
|
|
71
122
|
"normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Update.NonTrackedModificationCommandParameters\u0026):void|static=false",
|
|
72
123
|
"isStatic": false,
|
|
73
124
|
"parameterCount": 1,
|
|
125
|
+
"visibility": "Public",
|
|
74
126
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Update.Internal.SqliteModificationCommand",
|
|
75
127
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
|
|
76
128
|
"parameterModifiers": [
|
|
@@ -93,6 +145,16 @@
|
|
|
93
145
|
"isSealed": false,
|
|
94
146
|
"isStatic": false,
|
|
95
147
|
"arity": 0,
|
|
148
|
+
"baseType": {
|
|
149
|
+
"stableId": "System.Private.CoreLib:System.Object",
|
|
150
|
+
"clrName": "System.Object"
|
|
151
|
+
},
|
|
152
|
+
"interfaces": [
|
|
153
|
+
{
|
|
154
|
+
"stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Update.IModificationCommandBatchFactory",
|
|
155
|
+
"clrName": "Microsoft.EntityFrameworkCore.Update.IModificationCommandBatchFactory"
|
|
156
|
+
}
|
|
157
|
+
],
|
|
96
158
|
"methods": [
|
|
97
159
|
{
|
|
98
160
|
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Update.Internal.SqliteModificationCommandBatchFactory::Create():Microsoft.EntityFrameworkCore.Update.ModificationCommandBatch",
|
|
@@ -109,12 +171,33 @@
|
|
|
109
171
|
"isVirtual": true,
|
|
110
172
|
"isOverride": false,
|
|
111
173
|
"isSealed": false,
|
|
174
|
+
"visibility": "Public",
|
|
112
175
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Update.Internal.SqliteModificationCommandBatchFactory",
|
|
113
176
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
|
|
114
177
|
"isExtensionMethod": false
|
|
115
178
|
}
|
|
116
179
|
],
|
|
117
|
-
"properties": [
|
|
180
|
+
"properties": [
|
|
181
|
+
{
|
|
182
|
+
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Update.Internal.SqliteModificationCommandBatchFactory::Dependencies:Microsoft.EntityFrameworkCore.Update.ModificationCommandBatchFactoryDependencies",
|
|
183
|
+
"clrName": "Dependencies",
|
|
184
|
+
"metadataToken": 385876077,
|
|
185
|
+
"canonicalSignature": ":Microsoft.EntityFrameworkCore.Update.ModificationCommandBatchFactoryDependencies",
|
|
186
|
+
"normalizedSignature": "Dependencies|:Microsoft.EntityFrameworkCore.Update.ModificationCommandBatchFactoryDependencies|static=false|accessor=get",
|
|
187
|
+
"emitScope": "ClassSurface",
|
|
188
|
+
"provenance": "Original",
|
|
189
|
+
"isIndexer": false,
|
|
190
|
+
"hasGetter": true,
|
|
191
|
+
"hasSetter": false,
|
|
192
|
+
"isStatic": false,
|
|
193
|
+
"isAbstract": false,
|
|
194
|
+
"isVirtual": true,
|
|
195
|
+
"isOverride": false,
|
|
196
|
+
"visibility": "Protected",
|
|
197
|
+
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Update.Internal.SqliteModificationCommandBatchFactory",
|
|
198
|
+
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
199
|
+
}
|
|
200
|
+
],
|
|
118
201
|
"fields": [],
|
|
119
202
|
"events": [],
|
|
120
203
|
"constructors": [
|
|
@@ -125,6 +208,7 @@
|
|
|
125
208
|
"normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Update.ModificationCommandBatchFactoryDependencies):void|static=false",
|
|
126
209
|
"isStatic": false,
|
|
127
210
|
"parameterCount": 1,
|
|
211
|
+
"visibility": "Public",
|
|
128
212
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Update.Internal.SqliteModificationCommandBatchFactory",
|
|
129
213
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
130
214
|
}
|
|
@@ -141,6 +225,16 @@
|
|
|
141
225
|
"isSealed": false,
|
|
142
226
|
"isStatic": false,
|
|
143
227
|
"arity": 0,
|
|
228
|
+
"baseType": {
|
|
229
|
+
"stableId": "System.Private.CoreLib:System.Object",
|
|
230
|
+
"clrName": "System.Object"
|
|
231
|
+
},
|
|
232
|
+
"interfaces": [
|
|
233
|
+
{
|
|
234
|
+
"stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Update.IModificationCommandFactory",
|
|
235
|
+
"clrName": "Microsoft.EntityFrameworkCore.Update.IModificationCommandFactory"
|
|
236
|
+
}
|
|
237
|
+
],
|
|
144
238
|
"methods": [
|
|
145
239
|
{
|
|
146
240
|
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Update.Internal.SqliteModificationCommandFactory::CreateModificationCommand(Microsoft.EntityFrameworkCore.Update.ModificationCommandParameters\u0026):Microsoft.EntityFrameworkCore.Update.IModificationCommand",
|
|
@@ -157,6 +251,7 @@
|
|
|
157
251
|
"isVirtual": true,
|
|
158
252
|
"isOverride": false,
|
|
159
253
|
"isSealed": false,
|
|
254
|
+
"visibility": "Public",
|
|
160
255
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Update.Internal.SqliteModificationCommandFactory",
|
|
161
256
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
|
|
162
257
|
"isExtensionMethod": false,
|
|
@@ -182,6 +277,7 @@
|
|
|
182
277
|
"isVirtual": true,
|
|
183
278
|
"isOverride": false,
|
|
184
279
|
"isSealed": false,
|
|
280
|
+
"visibility": "Public",
|
|
185
281
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Update.Internal.SqliteModificationCommandFactory",
|
|
186
282
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
|
|
187
283
|
"isExtensionMethod": false,
|
|
@@ -204,6 +300,7 @@
|
|
|
204
300
|
"normalizedSignature": "constructor|():void|static=false",
|
|
205
301
|
"isStatic": false,
|
|
206
302
|
"parameterCount": 0,
|
|
303
|
+
"visibility": "Public",
|
|
207
304
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Update.Internal.SqliteModificationCommandFactory",
|
|
208
305
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
209
306
|
}
|
|
@@ -220,6 +317,16 @@
|
|
|
220
317
|
"isSealed": false,
|
|
221
318
|
"isStatic": false,
|
|
222
319
|
"arity": 0,
|
|
320
|
+
"baseType": {
|
|
321
|
+
"stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Update.UpdateAndSelectSqlGenerator",
|
|
322
|
+
"clrName": "Microsoft.EntityFrameworkCore.Update.UpdateAndSelectSqlGenerator"
|
|
323
|
+
},
|
|
324
|
+
"interfaces": [
|
|
325
|
+
{
|
|
326
|
+
"stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Update.IUpdateSqlGenerator",
|
|
327
|
+
"clrName": "Microsoft.EntityFrameworkCore.Update.IUpdateSqlGenerator"
|
|
328
|
+
}
|
|
329
|
+
],
|
|
223
330
|
"methods": [
|
|
224
331
|
{
|
|
225
332
|
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Update.Internal.SqliteUpdateSqlGenerator::AppendInsertOperation(System.Text.StringBuilder,Microsoft.EntityFrameworkCore.Update.IReadOnlyModificationCommand,System.Int32,System.Boolean\u0026):Microsoft.EntityFrameworkCore.Update.ResultSetMapping",
|
|
@@ -236,6 +343,7 @@
|
|
|
236
343
|
"isVirtual": true,
|
|
237
344
|
"isOverride": true,
|
|
238
345
|
"isSealed": false,
|
|
346
|
+
"visibility": "Public",
|
|
239
347
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Update.Internal.SqliteUpdateSqlGenerator",
|
|
240
348
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
|
|
241
349
|
"isExtensionMethod": false,
|
|
@@ -261,6 +369,7 @@
|
|
|
261
369
|
"isVirtual": true,
|
|
262
370
|
"isOverride": true,
|
|
263
371
|
"isSealed": false,
|
|
372
|
+
"visibility": "Public",
|
|
264
373
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Update.Internal.SqliteUpdateSqlGenerator",
|
|
265
374
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
|
|
266
375
|
"isExtensionMethod": false,
|
|
@@ -286,6 +395,7 @@
|
|
|
286
395
|
"isVirtual": true,
|
|
287
396
|
"isOverride": true,
|
|
288
397
|
"isSealed": false,
|
|
398
|
+
"visibility": "Public",
|
|
289
399
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Update.Internal.SqliteUpdateSqlGenerator",
|
|
290
400
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
|
|
291
401
|
"isExtensionMethod": false,
|
|
@@ -296,6 +406,66 @@
|
|
|
296
406
|
}
|
|
297
407
|
]
|
|
298
408
|
},
|
|
409
|
+
{
|
|
410
|
+
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Update.Internal.SqliteUpdateSqlGenerator::AppendIdentityWhereCondition(System.Text.StringBuilder,Microsoft.EntityFrameworkCore.Update.IColumnModification):System.Void",
|
|
411
|
+
"clrName": "AppendIdentityWhereCondition",
|
|
412
|
+
"metadataToken": 100663789,
|
|
413
|
+
"canonicalSignature": "(System.Text.StringBuilder,Microsoft.EntityFrameworkCore.Update.IColumnModification):System.Void",
|
|
414
|
+
"normalizedSignature": "AppendIdentityWhereCondition|(System.Text.StringBuilder,Microsoft.EntityFrameworkCore.Update.IColumnModification):System.Void|static=false",
|
|
415
|
+
"emitScope": "ClassSurface",
|
|
416
|
+
"provenance": "Original",
|
|
417
|
+
"arity": 0,
|
|
418
|
+
"parameterCount": 2,
|
|
419
|
+
"isStatic": false,
|
|
420
|
+
"isAbstract": false,
|
|
421
|
+
"isVirtual": true,
|
|
422
|
+
"isOverride": true,
|
|
423
|
+
"isSealed": false,
|
|
424
|
+
"visibility": "Protected",
|
|
425
|
+
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Update.Internal.SqliteUpdateSqlGenerator",
|
|
426
|
+
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
|
|
427
|
+
"isExtensionMethod": false
|
|
428
|
+
},
|
|
429
|
+
{
|
|
430
|
+
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Update.Internal.SqliteUpdateSqlGenerator::AppendSelectAffectedCountCommand(System.Text.StringBuilder,System.String,System.String,System.Int32):Microsoft.EntityFrameworkCore.Update.ResultSetMapping",
|
|
431
|
+
"clrName": "AppendSelectAffectedCountCommand",
|
|
432
|
+
"metadataToken": 100663790,
|
|
433
|
+
"canonicalSignature": "(System.Text.StringBuilder,System.String,System.String,System.Int32):Microsoft.EntityFrameworkCore.Update.ResultSetMapping",
|
|
434
|
+
"normalizedSignature": "AppendSelectAffectedCountCommand|(System.Text.StringBuilder,System.String,System.String,System.Int32):Microsoft.EntityFrameworkCore.Update.ResultSetMapping|static=false",
|
|
435
|
+
"emitScope": "ClassSurface",
|
|
436
|
+
"provenance": "Original",
|
|
437
|
+
"arity": 0,
|
|
438
|
+
"parameterCount": 4,
|
|
439
|
+
"isStatic": false,
|
|
440
|
+
"isAbstract": false,
|
|
441
|
+
"isVirtual": true,
|
|
442
|
+
"isOverride": true,
|
|
443
|
+
"isSealed": false,
|
|
444
|
+
"visibility": "Protected",
|
|
445
|
+
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Update.Internal.SqliteUpdateSqlGenerator",
|
|
446
|
+
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
|
|
447
|
+
"isExtensionMethod": false
|
|
448
|
+
},
|
|
449
|
+
{
|
|
450
|
+
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Update.Internal.SqliteUpdateSqlGenerator::AppendRowsAffectedWhereCondition(System.Text.StringBuilder,System.Int32):System.Void",
|
|
451
|
+
"clrName": "AppendRowsAffectedWhereCondition",
|
|
452
|
+
"metadataToken": 100663791,
|
|
453
|
+
"canonicalSignature": "(System.Text.StringBuilder,System.Int32):System.Void",
|
|
454
|
+
"normalizedSignature": "AppendRowsAffectedWhereCondition|(System.Text.StringBuilder,System.Int32):System.Void|static=false",
|
|
455
|
+
"emitScope": "ClassSurface",
|
|
456
|
+
"provenance": "Original",
|
|
457
|
+
"arity": 0,
|
|
458
|
+
"parameterCount": 2,
|
|
459
|
+
"isStatic": false,
|
|
460
|
+
"isAbstract": false,
|
|
461
|
+
"isVirtual": true,
|
|
462
|
+
"isOverride": true,
|
|
463
|
+
"isSealed": false,
|
|
464
|
+
"visibility": "Protected",
|
|
465
|
+
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Update.Internal.SqliteUpdateSqlGenerator",
|
|
466
|
+
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
|
|
467
|
+
"isExtensionMethod": false
|
|
468
|
+
},
|
|
299
469
|
{
|
|
300
470
|
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Update.Internal.SqliteUpdateSqlGenerator::GenerateNextSequenceValueOperation(System.String,System.String):System.String",
|
|
301
471
|
"clrName": "GenerateNextSequenceValueOperation",
|
|
@@ -311,6 +481,27 @@
|
|
|
311
481
|
"isVirtual": true,
|
|
312
482
|
"isOverride": true,
|
|
313
483
|
"isSealed": false,
|
|
484
|
+
"visibility": "Public",
|
|
485
|
+
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Update.Internal.SqliteUpdateSqlGenerator",
|
|
486
|
+
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
|
|
487
|
+
"isExtensionMethod": false
|
|
488
|
+
},
|
|
489
|
+
{
|
|
490
|
+
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Update.Internal.SqliteUpdateSqlGenerator::AppendUpdateColumnValue(Microsoft.EntityFrameworkCore.Storage.ISqlGenerationHelper,Microsoft.EntityFrameworkCore.Update.IColumnModification,System.Text.StringBuilder,System.String,System.String):System.Void",
|
|
491
|
+
"clrName": "AppendUpdateColumnValue",
|
|
492
|
+
"metadataToken": 100663793,
|
|
493
|
+
"canonicalSignature": "(Microsoft.EntityFrameworkCore.Storage.ISqlGenerationHelper,Microsoft.EntityFrameworkCore.Update.IColumnModification,System.Text.StringBuilder,System.String,System.String):System.Void",
|
|
494
|
+
"normalizedSignature": "AppendUpdateColumnValue|(Microsoft.EntityFrameworkCore.Storage.ISqlGenerationHelper,Microsoft.EntityFrameworkCore.Update.IColumnModification,System.Text.StringBuilder,System.String,System.String):System.Void|static=false",
|
|
495
|
+
"emitScope": "ClassSurface",
|
|
496
|
+
"provenance": "Original",
|
|
497
|
+
"arity": 0,
|
|
498
|
+
"parameterCount": 5,
|
|
499
|
+
"isStatic": false,
|
|
500
|
+
"isAbstract": false,
|
|
501
|
+
"isVirtual": true,
|
|
502
|
+
"isOverride": true,
|
|
503
|
+
"isSealed": false,
|
|
504
|
+
"visibility": "Protected",
|
|
314
505
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Update.Internal.SqliteUpdateSqlGenerator",
|
|
315
506
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
|
|
316
507
|
"isExtensionMethod": false
|
|
@@ -327,6 +518,7 @@
|
|
|
327
518
|
"normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Update.UpdateSqlGeneratorDependencies):void|static=false",
|
|
328
519
|
"isStatic": false,
|
|
329
520
|
"parameterCount": 1,
|
|
521
|
+
"visibility": "Public",
|
|
330
522
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Update.Internal.SqliteUpdateSqlGenerator",
|
|
331
523
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
332
524
|
}
|
|
@@ -10,10 +10,11 @@ import type { ptr } from "@tsonic/core/types.js";
|
|
|
10
10
|
|
|
11
11
|
// Import types from other namespaces
|
|
12
12
|
import * as System_Internal from "@tsonic/dotnet/System.js";
|
|
13
|
-
import type { Boolean as ClrBoolean, Int32, Object as ClrObject, String as ClrString } from "@tsonic/dotnet/System.js";
|
|
13
|
+
import type { Boolean as ClrBoolean, Int32, Object as ClrObject, String as ClrString, Void } from "@tsonic/dotnet/System.js";
|
|
14
14
|
import type { StringBuilder } from "@tsonic/dotnet/System.Text.js";
|
|
15
|
+
import type { ISqlGenerationHelper } from "@tsonic/efcore/Microsoft.EntityFrameworkCore.Storage.js";
|
|
15
16
|
import * as Microsoft_EntityFrameworkCore_Update_Internal from "@tsonic/efcore/Microsoft.EntityFrameworkCore.Update.js";
|
|
16
|
-
import type { IModificationCommand, IModificationCommandBatchFactory, IModificationCommandFactory, INonTrackedModificationCommand, IReadOnlyModificationCommand, IUpdateSqlGenerator, ModificationCommand, ModificationCommandBatch, ModificationCommandBatchFactoryDependencies, ModificationCommandParameters, NonTrackedModificationCommandParameters, ResultSetMapping, UpdateAndSelectSqlGenerator, UpdateSqlGeneratorDependencies } from "@tsonic/efcore/Microsoft.EntityFrameworkCore.Update.js";
|
|
17
|
+
import type { ColumnModificationParameters, IColumnModification, IModificationCommand, IModificationCommandBatchFactory, IModificationCommandFactory, INonTrackedModificationCommand, IReadOnlyModificationCommand, IUpdateSqlGenerator, ModificationCommand, ModificationCommandBatch, ModificationCommandBatchFactoryDependencies, ModificationCommandParameters, NonTrackedModificationCommandParameters, ResultSetMapping, UpdateAndSelectSqlGenerator, UpdateSqlGeneratorDependencies } from "@tsonic/efcore/Microsoft.EntityFrameworkCore.Update.js";
|
|
17
18
|
|
|
18
19
|
export interface SqliteLegacyUpdateSqlGenerator$instance {
|
|
19
20
|
}
|
|
@@ -27,6 +28,7 @@ export const SqliteLegacyUpdateSqlGenerator: {
|
|
|
27
28
|
export type SqliteLegacyUpdateSqlGenerator = SqliteLegacyUpdateSqlGenerator$instance;
|
|
28
29
|
|
|
29
30
|
export interface SqliteModificationCommand$instance extends ModificationCommand {
|
|
31
|
+
ProcessSinglePropertyJsonUpdate(parameters: ColumnModificationParameters): void;
|
|
30
32
|
}
|
|
31
33
|
|
|
32
34
|
|
|
@@ -39,6 +41,7 @@ export const SqliteModificationCommand: {
|
|
|
39
41
|
export type SqliteModificationCommand = SqliteModificationCommand$instance;
|
|
40
42
|
|
|
41
43
|
export interface SqliteModificationCommandBatchFactory$instance {
|
|
44
|
+
readonly Dependencies: ModificationCommandBatchFactoryDependencies;
|
|
42
45
|
Create(): ModificationCommandBatch;
|
|
43
46
|
}
|
|
44
47
|
|
|
@@ -65,7 +68,11 @@ export type SqliteModificationCommandFactory = SqliteModificationCommandFactory$
|
|
|
65
68
|
|
|
66
69
|
export interface SqliteUpdateSqlGenerator$instance extends UpdateAndSelectSqlGenerator {
|
|
67
70
|
AppendDeleteOperation(commandStringBuilder: StringBuilder, command: IReadOnlyModificationCommand, commandPosition: int, requiresTransaction: boolean): ResultSetMapping;
|
|
71
|
+
AppendIdentityWhereCondition(commandStringBuilder: StringBuilder, columnModification: IColumnModification): void;
|
|
68
72
|
AppendInsertOperation(commandStringBuilder: StringBuilder, command: IReadOnlyModificationCommand, commandPosition: int, requiresTransaction: boolean): ResultSetMapping;
|
|
73
|
+
AppendRowsAffectedWhereCondition(commandStringBuilder: StringBuilder, expectedRowsAffected: int): void;
|
|
74
|
+
AppendSelectAffectedCountCommand(commandStringBuilder: StringBuilder, name: string, schema: string, commandPosition: int): ResultSetMapping;
|
|
75
|
+
AppendUpdateColumnValue(updateSqlGeneratorHelper: ISqlGenerationHelper, columnModification: IColumnModification, stringBuilder: StringBuilder, name: string, schema: string): void;
|
|
69
76
|
AppendUpdateOperation(commandStringBuilder: StringBuilder, command: IReadOnlyModificationCommand, commandPosition: int, requiresTransaction: boolean): ResultSetMapping;
|
|
70
77
|
GenerateNextSequenceValueOperation(name: string, schema: string): string;
|
|
71
78
|
}
|
|
@@ -6,9 +6,10 @@
|
|
|
6
6
|
import * as Internal from './Microsoft.EntityFrameworkCore.Sqlite.Update.Internal/internal/index.js';
|
|
7
7
|
|
|
8
8
|
// Cross-namespace type imports for constraints
|
|
9
|
-
import type { Boolean as ClrBoolean, Int32, Object as ClrObject, String as ClrString } from '@tsonic/dotnet/System.js';
|
|
9
|
+
import type { Boolean as ClrBoolean, Int32, Object as ClrObject, String as ClrString, Void } from '@tsonic/dotnet/System.js';
|
|
10
10
|
import type { StringBuilder } from '@tsonic/dotnet/System.Text.js';
|
|
11
|
-
import type {
|
|
11
|
+
import type { ISqlGenerationHelper } from '@tsonic/efcore/Microsoft.EntityFrameworkCore.Storage.js';
|
|
12
|
+
import type { ColumnModificationParameters, IColumnModification, IModificationCommand, IModificationCommandBatchFactory, IModificationCommandFactory, INonTrackedModificationCommand, IReadOnlyModificationCommand, IUpdateSqlGenerator, ModificationCommand, ModificationCommandBatch, ModificationCommandBatchFactoryDependencies, ModificationCommandParameters, NonTrackedModificationCommandParameters, ResultSetMapping, UpdateAndSelectSqlGenerator, UpdateSqlGeneratorDependencies } from '@tsonic/efcore/Microsoft.EntityFrameworkCore.Update.js';
|
|
12
13
|
|
|
13
14
|
// Public API exports (curated - no internal $instance/$views leakage)
|
|
14
15
|
export { SqliteLegacyUpdateSqlGenerator as SqliteLegacyUpdateSqlGenerator } from './Microsoft.EntityFrameworkCore.Sqlite.Update.Internal/internal/index.js';
|
|
@@ -21,6 +21,10 @@
|
|
|
21
21
|
"isSealed": true,
|
|
22
22
|
"isStatic": true,
|
|
23
23
|
"arity": 0,
|
|
24
|
+
"baseType": {
|
|
25
|
+
"stableId": "System.Private.CoreLib:System.Object",
|
|
26
|
+
"clrName": "System.Object"
|
|
27
|
+
},
|
|
24
28
|
"methods": [
|
|
25
29
|
{
|
|
26
30
|
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.Extensions.DependencyInjection.SqliteServiceCollectionExtensions::AddSqlite(Microsoft.Extensions.DependencyInjection.IServiceCollection,System.String,System.Action_1[[Microsoft.EntityFrameworkCore.Infrastructure.SqliteDbContextOptionsBuilder,Microsoft.EntityFrameworkCore.Sqlite,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]],System.Action_1[[Microsoft.EntityFrameworkCore.DbContextOptionsBuilder,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):Microsoft.Extensions.DependencyInjection.IServiceCollection",
|
|
@@ -37,6 +41,7 @@
|
|
|
37
41
|
"isVirtual": false,
|
|
38
42
|
"isOverride": false,
|
|
39
43
|
"isSealed": false,
|
|
44
|
+
"visibility": "Public",
|
|
40
45
|
"declaringClrType": "Microsoft.Extensions.DependencyInjection.SqliteServiceCollectionExtensions",
|
|
41
46
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
|
|
42
47
|
"isExtensionMethod": true
|
|
@@ -56,6 +61,7 @@
|
|
|
56
61
|
"isVirtual": false,
|
|
57
62
|
"isOverride": false,
|
|
58
63
|
"isSealed": false,
|
|
64
|
+
"visibility": "Public",
|
|
59
65
|
"declaringClrType": "Microsoft.Extensions.DependencyInjection.SqliteServiceCollectionExtensions",
|
|
60
66
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
|
|
61
67
|
"isExtensionMethod": true
|