@tsonic/efcore-sqlite 10.0.1 → 10.0.2
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 +51 -6
- 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 +30 -6
- 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 +35 -4
- 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 +7 -2
- 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 +24 -4
- 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 +9 -2
- 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 +131 -19
- 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 +8 -3
- 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 +98 -14
- 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.Update.Internal/bindings.json +194 -2
- package/Microsoft.EntityFrameworkCore.Sqlite.Update.Internal/internal/index.d.ts +24 -5
- 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 +6 -1
- package/Microsoft.Extensions.DependencyModel.Resolution/bindings.json +63 -0
- package/SQLitePCL/bindings.json +1398 -9
- package/SQLitePCL/internal/index.d.ts +40 -10
- package/System.Collections.Generic/bindings.json +10 -0
- package/package.json +1 -1
|
@@ -15,6 +15,32 @@
|
|
|
15
15
|
"isSealed": false,
|
|
16
16
|
"isStatic": false,
|
|
17
17
|
"arity": 0,
|
|
18
|
+
"interfaces": [
|
|
19
|
+
{
|
|
20
|
+
"stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Storage.IRelationalConnection",
|
|
21
|
+
"clrName": "Microsoft.EntityFrameworkCore.Storage.IRelationalConnection"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Storage.IRelationalTransactionManager",
|
|
25
|
+
"clrName": "Microsoft.EntityFrameworkCore.Storage.IRelationalTransactionManager"
|
|
26
|
+
},
|
|
27
|
+
{
|
|
28
|
+
"stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Storage.IDbContextTransactionManager",
|
|
29
|
+
"clrName": "Microsoft.EntityFrameworkCore.Storage.IDbContextTransactionManager"
|
|
30
|
+
},
|
|
31
|
+
{
|
|
32
|
+
"stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Infrastructure.IResettableService",
|
|
33
|
+
"clrName": "Microsoft.EntityFrameworkCore.Infrastructure.IResettableService"
|
|
34
|
+
},
|
|
35
|
+
{
|
|
36
|
+
"stableId": "System.Private.CoreLib:System.IDisposable",
|
|
37
|
+
"clrName": "System.IDisposable"
|
|
38
|
+
},
|
|
39
|
+
{
|
|
40
|
+
"stableId": "System.Private.CoreLib:System.IAsyncDisposable",
|
|
41
|
+
"clrName": "System.IAsyncDisposable"
|
|
42
|
+
}
|
|
43
|
+
],
|
|
18
44
|
"methods": [
|
|
19
45
|
{
|
|
20
46
|
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.ISqliteRelationalConnection::CreateReadOnlyConnection():Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.ISqliteRelationalConnection",
|
|
@@ -31,6 +57,7 @@
|
|
|
31
57
|
"isVirtual": true,
|
|
32
58
|
"isOverride": false,
|
|
33
59
|
"isSealed": false,
|
|
60
|
+
"visibility": "Public",
|
|
34
61
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.ISqliteRelationalConnection",
|
|
35
62
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
|
|
36
63
|
"isExtensionMethod": false
|
|
@@ -52,7 +79,32 @@
|
|
|
52
79
|
"isSealed": false,
|
|
53
80
|
"isStatic": false,
|
|
54
81
|
"arity": 0,
|
|
55
|
-
"
|
|
82
|
+
"baseType": {
|
|
83
|
+
"stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Storage.ByteArrayTypeMapping",
|
|
84
|
+
"clrName": "Microsoft.EntityFrameworkCore.Storage.ByteArrayTypeMapping"
|
|
85
|
+
},
|
|
86
|
+
"methods": [
|
|
87
|
+
{
|
|
88
|
+
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteByteArrayTypeMapping::Clone(Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping\u002BRelationalTypeMappingParameters):Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping",
|
|
89
|
+
"clrName": "Clone",
|
|
90
|
+
"metadataToken": 100663829,
|
|
91
|
+
"canonicalSignature": "(Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping\u002BRelationalTypeMappingParameters):Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping",
|
|
92
|
+
"normalizedSignature": "Clone|(Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping\u002BRelationalTypeMappingParameters):Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping|static=false",
|
|
93
|
+
"emitScope": "ClassSurface",
|
|
94
|
+
"provenance": "Original",
|
|
95
|
+
"arity": 0,
|
|
96
|
+
"parameterCount": 1,
|
|
97
|
+
"isStatic": false,
|
|
98
|
+
"isAbstract": false,
|
|
99
|
+
"isVirtual": true,
|
|
100
|
+
"isOverride": true,
|
|
101
|
+
"isSealed": false,
|
|
102
|
+
"visibility": "Protected",
|
|
103
|
+
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteByteArrayTypeMapping",
|
|
104
|
+
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
|
|
105
|
+
"isExtensionMethod": false
|
|
106
|
+
}
|
|
107
|
+
],
|
|
56
108
|
"properties": [
|
|
57
109
|
{
|
|
58
110
|
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteByteArrayTypeMapping::Default:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteByteArrayTypeMapping",
|
|
@@ -69,6 +121,7 @@
|
|
|
69
121
|
"isAbstract": false,
|
|
70
122
|
"isVirtual": false,
|
|
71
123
|
"isOverride": false,
|
|
124
|
+
"visibility": "Public",
|
|
72
125
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteByteArrayTypeMapping",
|
|
73
126
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
74
127
|
}
|
|
@@ -83,6 +136,18 @@
|
|
|
83
136
|
"normalizedSignature": "constructor|(System.String,System.Nullable_1[[System.Data.DbType,System.Data.Common,Version=10.0.0.0,Culture=neutral,PublicKeyToken=b03f5f7f11d50a3a]]):void|static=false",
|
|
84
137
|
"isStatic": false,
|
|
85
138
|
"parameterCount": 2,
|
|
139
|
+
"visibility": "Public",
|
|
140
|
+
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteByteArrayTypeMapping",
|
|
141
|
+
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
142
|
+
},
|
|
143
|
+
{
|
|
144
|
+
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteByteArrayTypeMapping::.ctor(Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping\u002BRelationalTypeMappingParameters):void",
|
|
145
|
+
"metadataToken": 100663828,
|
|
146
|
+
"canonicalSignature": "(Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping\u002BRelationalTypeMappingParameters):void",
|
|
147
|
+
"normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping\u002BRelationalTypeMappingParameters):void|static=false",
|
|
148
|
+
"isStatic": false,
|
|
149
|
+
"parameterCount": 1,
|
|
150
|
+
"visibility": "Protected",
|
|
86
151
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteByteArrayTypeMapping",
|
|
87
152
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
88
153
|
}
|
|
@@ -99,6 +164,20 @@
|
|
|
99
164
|
"isSealed": false,
|
|
100
165
|
"isStatic": false,
|
|
101
166
|
"arity": 0,
|
|
167
|
+
"baseType": {
|
|
168
|
+
"stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Storage.RelationalDatabaseCreator",
|
|
169
|
+
"clrName": "Microsoft.EntityFrameworkCore.Storage.RelationalDatabaseCreator"
|
|
170
|
+
},
|
|
171
|
+
"interfaces": [
|
|
172
|
+
{
|
|
173
|
+
"stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Storage.IRelationalDatabaseCreator",
|
|
174
|
+
"clrName": "Microsoft.EntityFrameworkCore.Storage.IRelationalDatabaseCreator"
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
"stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Storage.IDatabaseCreator",
|
|
178
|
+
"clrName": "Microsoft.EntityFrameworkCore.Storage.IDatabaseCreator"
|
|
179
|
+
}
|
|
180
|
+
],
|
|
102
181
|
"methods": [
|
|
103
182
|
{
|
|
104
183
|
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDatabaseCreator::Create():System.Void",
|
|
@@ -115,6 +194,7 @@
|
|
|
115
194
|
"isVirtual": true,
|
|
116
195
|
"isOverride": true,
|
|
117
196
|
"isSealed": false,
|
|
197
|
+
"visibility": "Public",
|
|
118
198
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDatabaseCreator",
|
|
119
199
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
|
|
120
200
|
"isExtensionMethod": false
|
|
@@ -134,6 +214,7 @@
|
|
|
134
214
|
"isVirtual": true,
|
|
135
215
|
"isOverride": true,
|
|
136
216
|
"isSealed": false,
|
|
217
|
+
"visibility": "Public",
|
|
137
218
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDatabaseCreator",
|
|
138
219
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
|
|
139
220
|
"isExtensionMethod": false
|
|
@@ -153,6 +234,7 @@
|
|
|
153
234
|
"isVirtual": true,
|
|
154
235
|
"isOverride": true,
|
|
155
236
|
"isSealed": false,
|
|
237
|
+
"visibility": "Public",
|
|
156
238
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDatabaseCreator",
|
|
157
239
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
|
|
158
240
|
"isExtensionMethod": false
|
|
@@ -172,6 +254,7 @@
|
|
|
172
254
|
"isVirtual": true,
|
|
173
255
|
"isOverride": true,
|
|
174
256
|
"isSealed": false,
|
|
257
|
+
"visibility": "Public",
|
|
175
258
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDatabaseCreator",
|
|
176
259
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
|
|
177
260
|
"isExtensionMethod": false
|
|
@@ -188,6 +271,7 @@
|
|
|
188
271
|
"normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Storage.RelationalDatabaseCreatorDependencies,Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.ISqliteRelationalConnection,Microsoft.EntityFrameworkCore.Storage.IRawSqlCommandBuilder):void|static=false",
|
|
189
272
|
"isStatic": false,
|
|
190
273
|
"parameterCount": 3,
|
|
274
|
+
"visibility": "Public",
|
|
191
275
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDatabaseCreator",
|
|
192
276
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
193
277
|
}
|
|
@@ -204,7 +288,32 @@
|
|
|
204
288
|
"isSealed": false,
|
|
205
289
|
"isStatic": false,
|
|
206
290
|
"arity": 0,
|
|
207
|
-
"
|
|
291
|
+
"baseType": {
|
|
292
|
+
"stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Storage.DateOnlyTypeMapping",
|
|
293
|
+
"clrName": "Microsoft.EntityFrameworkCore.Storage.DateOnlyTypeMapping"
|
|
294
|
+
},
|
|
295
|
+
"methods": [
|
|
296
|
+
{
|
|
297
|
+
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDateOnlyTypeMapping::Clone(Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping\u002BRelationalTypeMappingParameters):Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping",
|
|
298
|
+
"clrName": "Clone",
|
|
299
|
+
"metadataToken": 100663839,
|
|
300
|
+
"canonicalSignature": "(Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping\u002BRelationalTypeMappingParameters):Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping",
|
|
301
|
+
"normalizedSignature": "Clone|(Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping\u002BRelationalTypeMappingParameters):Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping|static=false",
|
|
302
|
+
"emitScope": "ClassSurface",
|
|
303
|
+
"provenance": "Original",
|
|
304
|
+
"arity": 0,
|
|
305
|
+
"parameterCount": 1,
|
|
306
|
+
"isStatic": false,
|
|
307
|
+
"isAbstract": false,
|
|
308
|
+
"isVirtual": true,
|
|
309
|
+
"isOverride": true,
|
|
310
|
+
"isSealed": false,
|
|
311
|
+
"visibility": "Protected",
|
|
312
|
+
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDateOnlyTypeMapping",
|
|
313
|
+
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
|
|
314
|
+
"isExtensionMethod": false
|
|
315
|
+
}
|
|
316
|
+
],
|
|
208
317
|
"properties": [
|
|
209
318
|
{
|
|
210
319
|
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDateOnlyTypeMapping::Default:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDateOnlyTypeMapping",
|
|
@@ -221,6 +330,26 @@
|
|
|
221
330
|
"isAbstract": false,
|
|
222
331
|
"isVirtual": false,
|
|
223
332
|
"isOverride": false,
|
|
333
|
+
"visibility": "Public",
|
|
334
|
+
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDateOnlyTypeMapping",
|
|
335
|
+
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
336
|
+
},
|
|
337
|
+
{
|
|
338
|
+
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDateOnlyTypeMapping::SqlLiteralFormatString:System.String",
|
|
339
|
+
"clrName": "SqlLiteralFormatString",
|
|
340
|
+
"metadataToken": 385876090,
|
|
341
|
+
"canonicalSignature": ":System.String",
|
|
342
|
+
"normalizedSignature": "SqlLiteralFormatString|:System.String|static=false|accessor=get",
|
|
343
|
+
"emitScope": "ClassSurface",
|
|
344
|
+
"provenance": "Original",
|
|
345
|
+
"isIndexer": false,
|
|
346
|
+
"hasGetter": true,
|
|
347
|
+
"hasSetter": false,
|
|
348
|
+
"isStatic": false,
|
|
349
|
+
"isAbstract": false,
|
|
350
|
+
"isVirtual": true,
|
|
351
|
+
"isOverride": true,
|
|
352
|
+
"visibility": "Protected",
|
|
224
353
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDateOnlyTypeMapping",
|
|
225
354
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
226
355
|
}
|
|
@@ -235,6 +364,18 @@
|
|
|
235
364
|
"normalizedSignature": "constructor|(System.String,System.Nullable_1[[System.Data.DbType,System.Data.Common,Version=10.0.0.0,Culture=neutral,PublicKeyToken=b03f5f7f11d50a3a]]):void|static=false",
|
|
236
365
|
"isStatic": false,
|
|
237
366
|
"parameterCount": 2,
|
|
367
|
+
"visibility": "Public",
|
|
368
|
+
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDateOnlyTypeMapping",
|
|
369
|
+
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
370
|
+
},
|
|
371
|
+
{
|
|
372
|
+
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDateOnlyTypeMapping::.ctor(Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping\u002BRelationalTypeMappingParameters):void",
|
|
373
|
+
"metadataToken": 100663838,
|
|
374
|
+
"canonicalSignature": "(Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping\u002BRelationalTypeMappingParameters):void",
|
|
375
|
+
"normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping\u002BRelationalTypeMappingParameters):void|static=false",
|
|
376
|
+
"isStatic": false,
|
|
377
|
+
"parameterCount": 1,
|
|
378
|
+
"visibility": "Protected",
|
|
238
379
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDateOnlyTypeMapping",
|
|
239
380
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
240
381
|
}
|
|
@@ -251,7 +392,32 @@
|
|
|
251
392
|
"isSealed": false,
|
|
252
393
|
"isStatic": false,
|
|
253
394
|
"arity": 0,
|
|
254
|
-
"
|
|
395
|
+
"baseType": {
|
|
396
|
+
"stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Storage.DateTimeOffsetTypeMapping",
|
|
397
|
+
"clrName": "Microsoft.EntityFrameworkCore.Storage.DateTimeOffsetTypeMapping"
|
|
398
|
+
},
|
|
399
|
+
"methods": [
|
|
400
|
+
{
|
|
401
|
+
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDateTimeOffsetTypeMapping::Clone(Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping\u002BRelationalTypeMappingParameters):Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping",
|
|
402
|
+
"clrName": "Clone",
|
|
403
|
+
"metadataToken": 100663845,
|
|
404
|
+
"canonicalSignature": "(Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping\u002BRelationalTypeMappingParameters):Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping",
|
|
405
|
+
"normalizedSignature": "Clone|(Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping\u002BRelationalTypeMappingParameters):Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping|static=false",
|
|
406
|
+
"emitScope": "ClassSurface",
|
|
407
|
+
"provenance": "Original",
|
|
408
|
+
"arity": 0,
|
|
409
|
+
"parameterCount": 1,
|
|
410
|
+
"isStatic": false,
|
|
411
|
+
"isAbstract": false,
|
|
412
|
+
"isVirtual": true,
|
|
413
|
+
"isOverride": true,
|
|
414
|
+
"isSealed": false,
|
|
415
|
+
"visibility": "Protected",
|
|
416
|
+
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDateTimeOffsetTypeMapping",
|
|
417
|
+
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
|
|
418
|
+
"isExtensionMethod": false
|
|
419
|
+
}
|
|
420
|
+
],
|
|
255
421
|
"properties": [
|
|
256
422
|
{
|
|
257
423
|
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDateTimeOffsetTypeMapping::Default:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDateTimeOffsetTypeMapping",
|
|
@@ -268,6 +434,26 @@
|
|
|
268
434
|
"isAbstract": false,
|
|
269
435
|
"isVirtual": false,
|
|
270
436
|
"isOverride": false,
|
|
437
|
+
"visibility": "Public",
|
|
438
|
+
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDateTimeOffsetTypeMapping",
|
|
439
|
+
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
440
|
+
},
|
|
441
|
+
{
|
|
442
|
+
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDateTimeOffsetTypeMapping::SqlLiteralFormatString:System.String",
|
|
443
|
+
"clrName": "SqlLiteralFormatString",
|
|
444
|
+
"metadataToken": 385876092,
|
|
445
|
+
"canonicalSignature": ":System.String",
|
|
446
|
+
"normalizedSignature": "SqlLiteralFormatString|:System.String|static=false|accessor=get",
|
|
447
|
+
"emitScope": "ClassSurface",
|
|
448
|
+
"provenance": "Original",
|
|
449
|
+
"isIndexer": false,
|
|
450
|
+
"hasGetter": true,
|
|
451
|
+
"hasSetter": false,
|
|
452
|
+
"isStatic": false,
|
|
453
|
+
"isAbstract": false,
|
|
454
|
+
"isVirtual": true,
|
|
455
|
+
"isOverride": true,
|
|
456
|
+
"visibility": "Protected",
|
|
271
457
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDateTimeOffsetTypeMapping",
|
|
272
458
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
273
459
|
}
|
|
@@ -282,6 +468,18 @@
|
|
|
282
468
|
"normalizedSignature": "constructor|(System.String,System.Nullable_1[[System.Data.DbType,System.Data.Common,Version=10.0.0.0,Culture=neutral,PublicKeyToken=b03f5f7f11d50a3a]]):void|static=false",
|
|
283
469
|
"isStatic": false,
|
|
284
470
|
"parameterCount": 2,
|
|
471
|
+
"visibility": "Public",
|
|
472
|
+
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDateTimeOffsetTypeMapping",
|
|
473
|
+
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
474
|
+
},
|
|
475
|
+
{
|
|
476
|
+
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDateTimeOffsetTypeMapping::.ctor(Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping\u002BRelationalTypeMappingParameters):void",
|
|
477
|
+
"metadataToken": 100663844,
|
|
478
|
+
"canonicalSignature": "(Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping\u002BRelationalTypeMappingParameters):void",
|
|
479
|
+
"normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping\u002BRelationalTypeMappingParameters):void|static=false",
|
|
480
|
+
"isStatic": false,
|
|
481
|
+
"parameterCount": 1,
|
|
482
|
+
"visibility": "Protected",
|
|
285
483
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDateTimeOffsetTypeMapping",
|
|
286
484
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
287
485
|
}
|
|
@@ -298,7 +496,32 @@
|
|
|
298
496
|
"isSealed": false,
|
|
299
497
|
"isStatic": false,
|
|
300
498
|
"arity": 0,
|
|
301
|
-
"
|
|
499
|
+
"baseType": {
|
|
500
|
+
"stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Storage.DateTimeTypeMapping",
|
|
501
|
+
"clrName": "Microsoft.EntityFrameworkCore.Storage.DateTimeTypeMapping"
|
|
502
|
+
},
|
|
503
|
+
"methods": [
|
|
504
|
+
{
|
|
505
|
+
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDateTimeTypeMapping::Clone(Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping\u002BRelationalTypeMappingParameters):Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping",
|
|
506
|
+
"clrName": "Clone",
|
|
507
|
+
"metadataToken": 100663851,
|
|
508
|
+
"canonicalSignature": "(Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping\u002BRelationalTypeMappingParameters):Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping",
|
|
509
|
+
"normalizedSignature": "Clone|(Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping\u002BRelationalTypeMappingParameters):Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping|static=false",
|
|
510
|
+
"emitScope": "ClassSurface",
|
|
511
|
+
"provenance": "Original",
|
|
512
|
+
"arity": 0,
|
|
513
|
+
"parameterCount": 1,
|
|
514
|
+
"isStatic": false,
|
|
515
|
+
"isAbstract": false,
|
|
516
|
+
"isVirtual": true,
|
|
517
|
+
"isOverride": true,
|
|
518
|
+
"isSealed": false,
|
|
519
|
+
"visibility": "Protected",
|
|
520
|
+
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDateTimeTypeMapping",
|
|
521
|
+
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
|
|
522
|
+
"isExtensionMethod": false
|
|
523
|
+
}
|
|
524
|
+
],
|
|
302
525
|
"properties": [
|
|
303
526
|
{
|
|
304
527
|
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDateTimeTypeMapping::Default:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDateTimeTypeMapping",
|
|
@@ -315,6 +538,26 @@
|
|
|
315
538
|
"isAbstract": false,
|
|
316
539
|
"isVirtual": false,
|
|
317
540
|
"isOverride": false,
|
|
541
|
+
"visibility": "Public",
|
|
542
|
+
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDateTimeTypeMapping",
|
|
543
|
+
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
544
|
+
},
|
|
545
|
+
{
|
|
546
|
+
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDateTimeTypeMapping::SqlLiteralFormatString:System.String",
|
|
547
|
+
"clrName": "SqlLiteralFormatString",
|
|
548
|
+
"metadataToken": 385876094,
|
|
549
|
+
"canonicalSignature": ":System.String",
|
|
550
|
+
"normalizedSignature": "SqlLiteralFormatString|:System.String|static=false|accessor=get",
|
|
551
|
+
"emitScope": "ClassSurface",
|
|
552
|
+
"provenance": "Original",
|
|
553
|
+
"isIndexer": false,
|
|
554
|
+
"hasGetter": true,
|
|
555
|
+
"hasSetter": false,
|
|
556
|
+
"isStatic": false,
|
|
557
|
+
"isAbstract": false,
|
|
558
|
+
"isVirtual": true,
|
|
559
|
+
"isOverride": true,
|
|
560
|
+
"visibility": "Protected",
|
|
318
561
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDateTimeTypeMapping",
|
|
319
562
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
320
563
|
}
|
|
@@ -329,6 +572,18 @@
|
|
|
329
572
|
"normalizedSignature": "constructor|(System.String,System.Nullable_1[[System.Data.DbType,System.Data.Common,Version=10.0.0.0,Culture=neutral,PublicKeyToken=b03f5f7f11d50a3a]]):void|static=false",
|
|
330
573
|
"isStatic": false,
|
|
331
574
|
"parameterCount": 2,
|
|
575
|
+
"visibility": "Public",
|
|
576
|
+
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDateTimeTypeMapping",
|
|
577
|
+
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
578
|
+
},
|
|
579
|
+
{
|
|
580
|
+
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDateTimeTypeMapping::.ctor(Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping\u002BRelationalTypeMappingParameters):void",
|
|
581
|
+
"metadataToken": 100663850,
|
|
582
|
+
"canonicalSignature": "(Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping\u002BRelationalTypeMappingParameters):void",
|
|
583
|
+
"normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping\u002BRelationalTypeMappingParameters):void|static=false",
|
|
584
|
+
"isStatic": false,
|
|
585
|
+
"parameterCount": 1,
|
|
586
|
+
"visibility": "Protected",
|
|
332
587
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDateTimeTypeMapping",
|
|
333
588
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
334
589
|
}
|
|
@@ -345,7 +600,32 @@
|
|
|
345
600
|
"isSealed": false,
|
|
346
601
|
"isStatic": false,
|
|
347
602
|
"arity": 0,
|
|
348
|
-
"
|
|
603
|
+
"baseType": {
|
|
604
|
+
"stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Storage.DecimalTypeMapping",
|
|
605
|
+
"clrName": "Microsoft.EntityFrameworkCore.Storage.DecimalTypeMapping"
|
|
606
|
+
},
|
|
607
|
+
"methods": [
|
|
608
|
+
{
|
|
609
|
+
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDecimalTypeMapping::Clone(Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping\u002BRelationalTypeMappingParameters):Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping",
|
|
610
|
+
"clrName": "Clone",
|
|
611
|
+
"metadataToken": 100663857,
|
|
612
|
+
"canonicalSignature": "(Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping\u002BRelationalTypeMappingParameters):Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping",
|
|
613
|
+
"normalizedSignature": "Clone|(Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping\u002BRelationalTypeMappingParameters):Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping|static=false",
|
|
614
|
+
"emitScope": "ClassSurface",
|
|
615
|
+
"provenance": "Original",
|
|
616
|
+
"arity": 0,
|
|
617
|
+
"parameterCount": 1,
|
|
618
|
+
"isStatic": false,
|
|
619
|
+
"isAbstract": false,
|
|
620
|
+
"isVirtual": true,
|
|
621
|
+
"isOverride": true,
|
|
622
|
+
"isSealed": false,
|
|
623
|
+
"visibility": "Protected",
|
|
624
|
+
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDecimalTypeMapping",
|
|
625
|
+
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
|
|
626
|
+
"isExtensionMethod": false
|
|
627
|
+
}
|
|
628
|
+
],
|
|
349
629
|
"properties": [
|
|
350
630
|
{
|
|
351
631
|
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDecimalTypeMapping::Default:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDecimalTypeMapping",
|
|
@@ -362,6 +642,26 @@
|
|
|
362
642
|
"isAbstract": false,
|
|
363
643
|
"isVirtual": false,
|
|
364
644
|
"isOverride": false,
|
|
645
|
+
"visibility": "Public",
|
|
646
|
+
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDecimalTypeMapping",
|
|
647
|
+
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
648
|
+
},
|
|
649
|
+
{
|
|
650
|
+
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDecimalTypeMapping::SqlLiteralFormatString:System.String",
|
|
651
|
+
"clrName": "SqlLiteralFormatString",
|
|
652
|
+
"metadataToken": 385876096,
|
|
653
|
+
"canonicalSignature": ":System.String",
|
|
654
|
+
"normalizedSignature": "SqlLiteralFormatString|:System.String|static=false|accessor=get",
|
|
655
|
+
"emitScope": "ClassSurface",
|
|
656
|
+
"provenance": "Original",
|
|
657
|
+
"isIndexer": false,
|
|
658
|
+
"hasGetter": true,
|
|
659
|
+
"hasSetter": false,
|
|
660
|
+
"isStatic": false,
|
|
661
|
+
"isAbstract": false,
|
|
662
|
+
"isVirtual": true,
|
|
663
|
+
"isOverride": true,
|
|
664
|
+
"visibility": "Protected",
|
|
365
665
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDecimalTypeMapping",
|
|
366
666
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
367
667
|
}
|
|
@@ -376,6 +676,18 @@
|
|
|
376
676
|
"normalizedSignature": "constructor|(System.String,System.Nullable_1[[System.Data.DbType,System.Data.Common,Version=10.0.0.0,Culture=neutral,PublicKeyToken=b03f5f7f11d50a3a]]):void|static=false",
|
|
377
677
|
"isStatic": false,
|
|
378
678
|
"parameterCount": 2,
|
|
679
|
+
"visibility": "Public",
|
|
680
|
+
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDecimalTypeMapping",
|
|
681
|
+
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
682
|
+
},
|
|
683
|
+
{
|
|
684
|
+
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDecimalTypeMapping::.ctor(Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping\u002BRelationalTypeMappingParameters):void",
|
|
685
|
+
"metadataToken": 100663856,
|
|
686
|
+
"canonicalSignature": "(Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping\u002BRelationalTypeMappingParameters):void",
|
|
687
|
+
"normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping\u002BRelationalTypeMappingParameters):void|static=false",
|
|
688
|
+
"isStatic": false,
|
|
689
|
+
"parameterCount": 1,
|
|
690
|
+
"visibility": "Protected",
|
|
379
691
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteDecimalTypeMapping",
|
|
380
692
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
381
693
|
}
|
|
@@ -392,7 +704,52 @@
|
|
|
392
704
|
"isSealed": false,
|
|
393
705
|
"isStatic": false,
|
|
394
706
|
"arity": 0,
|
|
395
|
-
"
|
|
707
|
+
"baseType": {
|
|
708
|
+
"stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Storage.GuidTypeMapping",
|
|
709
|
+
"clrName": "Microsoft.EntityFrameworkCore.Storage.GuidTypeMapping"
|
|
710
|
+
},
|
|
711
|
+
"methods": [
|
|
712
|
+
{
|
|
713
|
+
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteGuidTypeMapping::Clone(Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping\u002BRelationalTypeMappingParameters):Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping",
|
|
714
|
+
"clrName": "Clone",
|
|
715
|
+
"metadataToken": 100663863,
|
|
716
|
+
"canonicalSignature": "(Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping\u002BRelationalTypeMappingParameters):Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping",
|
|
717
|
+
"normalizedSignature": "Clone|(Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping\u002BRelationalTypeMappingParameters):Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping|static=false",
|
|
718
|
+
"emitScope": "ClassSurface",
|
|
719
|
+
"provenance": "Original",
|
|
720
|
+
"arity": 0,
|
|
721
|
+
"parameterCount": 1,
|
|
722
|
+
"isStatic": false,
|
|
723
|
+
"isAbstract": false,
|
|
724
|
+
"isVirtual": true,
|
|
725
|
+
"isOverride": true,
|
|
726
|
+
"isSealed": false,
|
|
727
|
+
"visibility": "Protected",
|
|
728
|
+
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteGuidTypeMapping",
|
|
729
|
+
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
|
|
730
|
+
"isExtensionMethod": false
|
|
731
|
+
},
|
|
732
|
+
{
|
|
733
|
+
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteGuidTypeMapping::GenerateNonNullSqlLiteral(System.Object):System.String",
|
|
734
|
+
"clrName": "GenerateNonNullSqlLiteral",
|
|
735
|
+
"metadataToken": 100663864,
|
|
736
|
+
"canonicalSignature": "(System.Object):System.String",
|
|
737
|
+
"normalizedSignature": "GenerateNonNullSqlLiteral|(System.Object):System.String|static=false",
|
|
738
|
+
"emitScope": "ClassSurface",
|
|
739
|
+
"provenance": "Original",
|
|
740
|
+
"arity": 0,
|
|
741
|
+
"parameterCount": 1,
|
|
742
|
+
"isStatic": false,
|
|
743
|
+
"isAbstract": false,
|
|
744
|
+
"isVirtual": true,
|
|
745
|
+
"isOverride": true,
|
|
746
|
+
"isSealed": false,
|
|
747
|
+
"visibility": "Protected",
|
|
748
|
+
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteGuidTypeMapping",
|
|
749
|
+
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
|
|
750
|
+
"isExtensionMethod": false
|
|
751
|
+
}
|
|
752
|
+
],
|
|
396
753
|
"properties": [
|
|
397
754
|
{
|
|
398
755
|
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteGuidTypeMapping::Default:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteGuidTypeMapping",
|
|
@@ -409,6 +766,7 @@
|
|
|
409
766
|
"isAbstract": false,
|
|
410
767
|
"isVirtual": false,
|
|
411
768
|
"isOverride": false,
|
|
769
|
+
"visibility": "Public",
|
|
412
770
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteGuidTypeMapping",
|
|
413
771
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
414
772
|
}
|
|
@@ -423,6 +781,18 @@
|
|
|
423
781
|
"normalizedSignature": "constructor|(System.String,System.Nullable_1[[System.Data.DbType,System.Data.Common,Version=10.0.0.0,Culture=neutral,PublicKeyToken=b03f5f7f11d50a3a]]):void|static=false",
|
|
424
782
|
"isStatic": false,
|
|
425
783
|
"parameterCount": 2,
|
|
784
|
+
"visibility": "Public",
|
|
785
|
+
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteGuidTypeMapping",
|
|
786
|
+
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
787
|
+
},
|
|
788
|
+
{
|
|
789
|
+
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteGuidTypeMapping::.ctor(Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping\u002BRelationalTypeMappingParameters):void",
|
|
790
|
+
"metadataToken": 100663862,
|
|
791
|
+
"canonicalSignature": "(Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping\u002BRelationalTypeMappingParameters):void",
|
|
792
|
+
"normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping\u002BRelationalTypeMappingParameters):void|static=false",
|
|
793
|
+
"isStatic": false,
|
|
794
|
+
"parameterCount": 1,
|
|
795
|
+
"visibility": "Protected",
|
|
426
796
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteGuidTypeMapping",
|
|
427
797
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
428
798
|
}
|
|
@@ -439,6 +809,10 @@
|
|
|
439
809
|
"isSealed": false,
|
|
440
810
|
"isStatic": false,
|
|
441
811
|
"arity": 0,
|
|
812
|
+
"baseType": {
|
|
813
|
+
"stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Storage.JsonTypeMapping",
|
|
814
|
+
"clrName": "Microsoft.EntityFrameworkCore.Storage.JsonTypeMapping"
|
|
815
|
+
},
|
|
442
816
|
"methods": [
|
|
443
817
|
{
|
|
444
818
|
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteJsonTypeMapping::GetDataReaderMethod():System.Reflection.MethodInfo",
|
|
@@ -455,6 +829,7 @@
|
|
|
455
829
|
"isVirtual": true,
|
|
456
830
|
"isOverride": true,
|
|
457
831
|
"isSealed": false,
|
|
832
|
+
"visibility": "Public",
|
|
458
833
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteJsonTypeMapping",
|
|
459
834
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
|
|
460
835
|
"isExtensionMethod": false
|
|
@@ -474,6 +849,67 @@
|
|
|
474
849
|
"isVirtual": true,
|
|
475
850
|
"isOverride": true,
|
|
476
851
|
"isSealed": false,
|
|
852
|
+
"visibility": "Public",
|
|
853
|
+
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteJsonTypeMapping",
|
|
854
|
+
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
|
|
855
|
+
"isExtensionMethod": false
|
|
856
|
+
},
|
|
857
|
+
{
|
|
858
|
+
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteJsonTypeMapping::GenerateNonNullSqlLiteral(System.Object):System.String",
|
|
859
|
+
"clrName": "GenerateNonNullSqlLiteral",
|
|
860
|
+
"metadataToken": 100663871,
|
|
861
|
+
"canonicalSignature": "(System.Object):System.String",
|
|
862
|
+
"normalizedSignature": "GenerateNonNullSqlLiteral|(System.Object):System.String|static=false",
|
|
863
|
+
"emitScope": "ClassSurface",
|
|
864
|
+
"provenance": "Original",
|
|
865
|
+
"arity": 0,
|
|
866
|
+
"parameterCount": 1,
|
|
867
|
+
"isStatic": false,
|
|
868
|
+
"isAbstract": false,
|
|
869
|
+
"isVirtual": true,
|
|
870
|
+
"isOverride": true,
|
|
871
|
+
"isSealed": false,
|
|
872
|
+
"visibility": "Protected",
|
|
873
|
+
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteJsonTypeMapping",
|
|
874
|
+
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
|
|
875
|
+
"isExtensionMethod": false
|
|
876
|
+
},
|
|
877
|
+
{
|
|
878
|
+
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteJsonTypeMapping::EscapeSqlLiteral(System.String):System.String",
|
|
879
|
+
"clrName": "EscapeSqlLiteral",
|
|
880
|
+
"metadataToken": 100663872,
|
|
881
|
+
"canonicalSignature": "(System.String):System.String",
|
|
882
|
+
"normalizedSignature": "EscapeSqlLiteral|(System.String):System.String|static=false",
|
|
883
|
+
"emitScope": "ClassSurface",
|
|
884
|
+
"provenance": "Original",
|
|
885
|
+
"arity": 0,
|
|
886
|
+
"parameterCount": 1,
|
|
887
|
+
"isStatic": false,
|
|
888
|
+
"isAbstract": false,
|
|
889
|
+
"isVirtual": true,
|
|
890
|
+
"isOverride": false,
|
|
891
|
+
"isSealed": false,
|
|
892
|
+
"visibility": "Protected",
|
|
893
|
+
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteJsonTypeMapping",
|
|
894
|
+
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
|
|
895
|
+
"isExtensionMethod": false
|
|
896
|
+
},
|
|
897
|
+
{
|
|
898
|
+
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteJsonTypeMapping::Clone(Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping\u002BRelationalTypeMappingParameters):Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping",
|
|
899
|
+
"clrName": "Clone",
|
|
900
|
+
"metadataToken": 100663873,
|
|
901
|
+
"canonicalSignature": "(Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping\u002BRelationalTypeMappingParameters):Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping",
|
|
902
|
+
"normalizedSignature": "Clone|(Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping\u002BRelationalTypeMappingParameters):Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping|static=false",
|
|
903
|
+
"emitScope": "ClassSurface",
|
|
904
|
+
"provenance": "Original",
|
|
905
|
+
"arity": 0,
|
|
906
|
+
"parameterCount": 1,
|
|
907
|
+
"isStatic": false,
|
|
908
|
+
"isAbstract": false,
|
|
909
|
+
"isVirtual": true,
|
|
910
|
+
"isOverride": true,
|
|
911
|
+
"isSealed": false,
|
|
912
|
+
"visibility": "Protected",
|
|
477
913
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteJsonTypeMapping",
|
|
478
914
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
|
|
479
915
|
"isExtensionMethod": false
|
|
@@ -495,6 +931,7 @@
|
|
|
495
931
|
"isAbstract": false,
|
|
496
932
|
"isVirtual": false,
|
|
497
933
|
"isOverride": false,
|
|
934
|
+
"visibility": "Public",
|
|
498
935
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteJsonTypeMapping",
|
|
499
936
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
500
937
|
}
|
|
@@ -509,6 +946,18 @@
|
|
|
509
946
|
"normalizedSignature": "constructor|(System.String):void|static=false",
|
|
510
947
|
"isStatic": false,
|
|
511
948
|
"parameterCount": 1,
|
|
949
|
+
"visibility": "Public",
|
|
950
|
+
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteJsonTypeMapping",
|
|
951
|
+
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
952
|
+
},
|
|
953
|
+
{
|
|
954
|
+
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteJsonTypeMapping::.ctor(Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping\u002BRelationalTypeMappingParameters):void",
|
|
955
|
+
"metadataToken": 100663868,
|
|
956
|
+
"canonicalSignature": "(Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping\u002BRelationalTypeMappingParameters):void",
|
|
957
|
+
"normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping\u002BRelationalTypeMappingParameters):void|static=false",
|
|
958
|
+
"isStatic": false,
|
|
959
|
+
"parameterCount": 1,
|
|
960
|
+
"visibility": "Protected",
|
|
512
961
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteJsonTypeMapping",
|
|
513
962
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
514
963
|
}
|
|
@@ -525,7 +974,65 @@
|
|
|
525
974
|
"isSealed": false,
|
|
526
975
|
"isStatic": false,
|
|
527
976
|
"arity": 0,
|
|
977
|
+
"baseType": {
|
|
978
|
+
"stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Storage.RelationalConnection",
|
|
979
|
+
"clrName": "Microsoft.EntityFrameworkCore.Storage.RelationalConnection"
|
|
980
|
+
},
|
|
981
|
+
"interfaces": [
|
|
982
|
+
{
|
|
983
|
+
"stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Storage.IRelationalConnection",
|
|
984
|
+
"clrName": "Microsoft.EntityFrameworkCore.Storage.IRelationalConnection"
|
|
985
|
+
},
|
|
986
|
+
{
|
|
987
|
+
"stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Storage.IRelationalTransactionManager",
|
|
988
|
+
"clrName": "Microsoft.EntityFrameworkCore.Storage.IRelationalTransactionManager"
|
|
989
|
+
},
|
|
990
|
+
{
|
|
991
|
+
"stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Storage.IDbContextTransactionManager",
|
|
992
|
+
"clrName": "Microsoft.EntityFrameworkCore.Storage.IDbContextTransactionManager"
|
|
993
|
+
},
|
|
994
|
+
{
|
|
995
|
+
"stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Infrastructure.IResettableService",
|
|
996
|
+
"clrName": "Microsoft.EntityFrameworkCore.Infrastructure.IResettableService"
|
|
997
|
+
},
|
|
998
|
+
{
|
|
999
|
+
"stableId": "System.Private.CoreLib:System.IDisposable",
|
|
1000
|
+
"clrName": "System.IDisposable"
|
|
1001
|
+
},
|
|
1002
|
+
{
|
|
1003
|
+
"stableId": "System.Private.CoreLib:System.IAsyncDisposable",
|
|
1004
|
+
"clrName": "System.IAsyncDisposable"
|
|
1005
|
+
},
|
|
1006
|
+
{
|
|
1007
|
+
"stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Storage.ITransactionEnlistmentManager",
|
|
1008
|
+
"clrName": "Microsoft.EntityFrameworkCore.Storage.ITransactionEnlistmentManager"
|
|
1009
|
+
},
|
|
1010
|
+
{
|
|
1011
|
+
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.ISqliteRelationalConnection",
|
|
1012
|
+
"clrName": "Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.ISqliteRelationalConnection"
|
|
1013
|
+
}
|
|
1014
|
+
],
|
|
528
1015
|
"methods": [
|
|
1016
|
+
{
|
|
1017
|
+
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteRelationalConnection::CreateDbConnection():System.Data.Common.DbConnection",
|
|
1018
|
+
"clrName": "CreateDbConnection",
|
|
1019
|
+
"metadataToken": 100663876,
|
|
1020
|
+
"canonicalSignature": "():System.Data.Common.DbConnection",
|
|
1021
|
+
"normalizedSignature": "CreateDbConnection|():System.Data.Common.DbConnection|static=false",
|
|
1022
|
+
"emitScope": "ClassSurface",
|
|
1023
|
+
"provenance": "Original",
|
|
1024
|
+
"arity": 0,
|
|
1025
|
+
"parameterCount": 0,
|
|
1026
|
+
"isStatic": false,
|
|
1027
|
+
"isAbstract": false,
|
|
1028
|
+
"isVirtual": true,
|
|
1029
|
+
"isOverride": true,
|
|
1030
|
+
"isSealed": false,
|
|
1031
|
+
"visibility": "Protected",
|
|
1032
|
+
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteRelationalConnection",
|
|
1033
|
+
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
|
|
1034
|
+
"isExtensionMethod": false
|
|
1035
|
+
},
|
|
529
1036
|
{
|
|
530
1037
|
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteRelationalConnection::CreateReadOnlyConnection():Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.ISqliteRelationalConnection",
|
|
531
1038
|
"clrName": "CreateReadOnlyConnection",
|
|
@@ -541,6 +1048,7 @@
|
|
|
541
1048
|
"isVirtual": true,
|
|
542
1049
|
"isOverride": false,
|
|
543
1050
|
"isSealed": false,
|
|
1051
|
+
"visibility": "Public",
|
|
544
1052
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteRelationalConnection",
|
|
545
1053
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
|
|
546
1054
|
"isExtensionMethod": false
|
|
@@ -560,6 +1068,7 @@
|
|
|
560
1068
|
"isVirtual": true,
|
|
561
1069
|
"isOverride": false,
|
|
562
1070
|
"isSealed": false,
|
|
1071
|
+
"visibility": "Public",
|
|
563
1072
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.ISqliteRelationalConnection",
|
|
564
1073
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
|
|
565
1074
|
"isExtensionMethod": false,
|
|
@@ -577,6 +1086,7 @@
|
|
|
577
1086
|
"normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Storage.RelationalConnectionDependencies,Microsoft.EntityFrameworkCore.Storage.IRawSqlCommandBuilder,Microsoft.EntityFrameworkCore.Diagnostics.IDiagnosticsLogger_1[[Microsoft.EntityFrameworkCore.DbLoggerCategory\u002BInfrastructure,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):void|static=false",
|
|
578
1087
|
"isStatic": false,
|
|
579
1088
|
"parameterCount": 3,
|
|
1089
|
+
"visibility": "Public",
|
|
580
1090
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteRelationalConnection",
|
|
581
1091
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
582
1092
|
}
|
|
@@ -593,6 +1103,16 @@
|
|
|
593
1103
|
"isSealed": false,
|
|
594
1104
|
"isStatic": false,
|
|
595
1105
|
"arity": 0,
|
|
1106
|
+
"baseType": {
|
|
1107
|
+
"stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Storage.RelationalSqlGenerationHelper",
|
|
1108
|
+
"clrName": "Microsoft.EntityFrameworkCore.Storage.RelationalSqlGenerationHelper"
|
|
1109
|
+
},
|
|
1110
|
+
"interfaces": [
|
|
1111
|
+
{
|
|
1112
|
+
"stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Storage.ISqlGenerationHelper",
|
|
1113
|
+
"clrName": "Microsoft.EntityFrameworkCore.Storage.ISqlGenerationHelper"
|
|
1114
|
+
}
|
|
1115
|
+
],
|
|
596
1116
|
"methods": [
|
|
597
1117
|
{
|
|
598
1118
|
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteSqlGenerationHelper::DelimitIdentifier(System.String,System.String):System.String",
|
|
@@ -609,6 +1129,7 @@
|
|
|
609
1129
|
"isVirtual": true,
|
|
610
1130
|
"isOverride": true,
|
|
611
1131
|
"isSealed": false,
|
|
1132
|
+
"visibility": "Public",
|
|
612
1133
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteSqlGenerationHelper",
|
|
613
1134
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
|
|
614
1135
|
"isExtensionMethod": false
|
|
@@ -628,6 +1149,7 @@
|
|
|
628
1149
|
"isVirtual": true,
|
|
629
1150
|
"isOverride": true,
|
|
630
1151
|
"isSealed": false,
|
|
1152
|
+
"visibility": "Public",
|
|
631
1153
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteSqlGenerationHelper",
|
|
632
1154
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
|
|
633
1155
|
"isExtensionMethod": false
|
|
@@ -649,6 +1171,7 @@
|
|
|
649
1171
|
"isAbstract": false,
|
|
650
1172
|
"isVirtual": true,
|
|
651
1173
|
"isOverride": true,
|
|
1174
|
+
"visibility": "Public",
|
|
652
1175
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteSqlGenerationHelper",
|
|
653
1176
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
654
1177
|
}
|
|
@@ -663,6 +1186,7 @@
|
|
|
663
1186
|
"normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Storage.RelationalSqlGenerationHelperDependencies):void|static=false",
|
|
664
1187
|
"isStatic": false,
|
|
665
1188
|
"parameterCount": 1,
|
|
1189
|
+
"visibility": "Public",
|
|
666
1190
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteSqlGenerationHelper",
|
|
667
1191
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
668
1192
|
}
|
|
@@ -679,7 +1203,52 @@
|
|
|
679
1203
|
"isSealed": false,
|
|
680
1204
|
"isStatic": false,
|
|
681
1205
|
"arity": 0,
|
|
682
|
-
"
|
|
1206
|
+
"baseType": {
|
|
1207
|
+
"stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Storage.StringTypeMapping",
|
|
1208
|
+
"clrName": "Microsoft.EntityFrameworkCore.Storage.StringTypeMapping"
|
|
1209
|
+
},
|
|
1210
|
+
"methods": [
|
|
1211
|
+
{
|
|
1212
|
+
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteStringTypeMapping::Clone(Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping\u002BRelationalTypeMappingParameters):Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping",
|
|
1213
|
+
"clrName": "Clone",
|
|
1214
|
+
"metadataToken": 100663886,
|
|
1215
|
+
"canonicalSignature": "(Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping\u002BRelationalTypeMappingParameters):Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping",
|
|
1216
|
+
"normalizedSignature": "Clone|(Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping\u002BRelationalTypeMappingParameters):Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping|static=false",
|
|
1217
|
+
"emitScope": "ClassSurface",
|
|
1218
|
+
"provenance": "Original",
|
|
1219
|
+
"arity": 0,
|
|
1220
|
+
"parameterCount": 1,
|
|
1221
|
+
"isStatic": false,
|
|
1222
|
+
"isAbstract": false,
|
|
1223
|
+
"isVirtual": true,
|
|
1224
|
+
"isOverride": true,
|
|
1225
|
+
"isSealed": false,
|
|
1226
|
+
"visibility": "Protected",
|
|
1227
|
+
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteStringTypeMapping",
|
|
1228
|
+
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
|
|
1229
|
+
"isExtensionMethod": false
|
|
1230
|
+
},
|
|
1231
|
+
{
|
|
1232
|
+
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteStringTypeMapping::GenerateNonNullSqlLiteral(System.Object):System.String",
|
|
1233
|
+
"clrName": "GenerateNonNullSqlLiteral",
|
|
1234
|
+
"metadataToken": 100663887,
|
|
1235
|
+
"canonicalSignature": "(System.Object):System.String",
|
|
1236
|
+
"normalizedSignature": "GenerateNonNullSqlLiteral|(System.Object):System.String|static=false",
|
|
1237
|
+
"emitScope": "ClassSurface",
|
|
1238
|
+
"provenance": "Original",
|
|
1239
|
+
"arity": 0,
|
|
1240
|
+
"parameterCount": 1,
|
|
1241
|
+
"isStatic": false,
|
|
1242
|
+
"isAbstract": false,
|
|
1243
|
+
"isVirtual": true,
|
|
1244
|
+
"isOverride": true,
|
|
1245
|
+
"isSealed": false,
|
|
1246
|
+
"visibility": "Protected",
|
|
1247
|
+
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteStringTypeMapping",
|
|
1248
|
+
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
|
|
1249
|
+
"isExtensionMethod": false
|
|
1250
|
+
}
|
|
1251
|
+
],
|
|
683
1252
|
"properties": [
|
|
684
1253
|
{
|
|
685
1254
|
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteStringTypeMapping::Default:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteStringTypeMapping",
|
|
@@ -696,6 +1265,7 @@
|
|
|
696
1265
|
"isAbstract": false,
|
|
697
1266
|
"isVirtual": false,
|
|
698
1267
|
"isOverride": false,
|
|
1268
|
+
"visibility": "Public",
|
|
699
1269
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteStringTypeMapping",
|
|
700
1270
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
701
1271
|
}
|
|
@@ -710,6 +1280,18 @@
|
|
|
710
1280
|
"normalizedSignature": "constructor|(System.String,System.Nullable_1[[System.Data.DbType,System.Data.Common,Version=10.0.0.0,Culture=neutral,PublicKeyToken=b03f5f7f11d50a3a]],System.Boolean,System.Nullable_1[[System.Int32,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e]]):void|static=false",
|
|
711
1281
|
"isStatic": false,
|
|
712
1282
|
"parameterCount": 4,
|
|
1283
|
+
"visibility": "Public",
|
|
1284
|
+
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteStringTypeMapping",
|
|
1285
|
+
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
1286
|
+
},
|
|
1287
|
+
{
|
|
1288
|
+
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteStringTypeMapping::.ctor(Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping\u002BRelationalTypeMappingParameters):void",
|
|
1289
|
+
"metadataToken": 100663885,
|
|
1290
|
+
"canonicalSignature": "(Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping\u002BRelationalTypeMappingParameters):void",
|
|
1291
|
+
"normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping\u002BRelationalTypeMappingParameters):void|static=false",
|
|
1292
|
+
"isStatic": false,
|
|
1293
|
+
"parameterCount": 1,
|
|
1294
|
+
"visibility": "Protected",
|
|
713
1295
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteStringTypeMapping",
|
|
714
1296
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
715
1297
|
}
|
|
@@ -726,7 +1308,52 @@
|
|
|
726
1308
|
"isSealed": false,
|
|
727
1309
|
"isStatic": false,
|
|
728
1310
|
"arity": 0,
|
|
729
|
-
"
|
|
1311
|
+
"baseType": {
|
|
1312
|
+
"stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Storage.TimeOnlyTypeMapping",
|
|
1313
|
+
"clrName": "Microsoft.EntityFrameworkCore.Storage.TimeOnlyTypeMapping"
|
|
1314
|
+
},
|
|
1315
|
+
"methods": [
|
|
1316
|
+
{
|
|
1317
|
+
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteTimeOnlyTypeMapping::Clone(Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping\u002BRelationalTypeMappingParameters):Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping",
|
|
1318
|
+
"clrName": "Clone",
|
|
1319
|
+
"metadataToken": 100663893,
|
|
1320
|
+
"canonicalSignature": "(Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping\u002BRelationalTypeMappingParameters):Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping",
|
|
1321
|
+
"normalizedSignature": "Clone|(Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping\u002BRelationalTypeMappingParameters):Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping|static=false",
|
|
1322
|
+
"emitScope": "ClassSurface",
|
|
1323
|
+
"provenance": "Original",
|
|
1324
|
+
"arity": 0,
|
|
1325
|
+
"parameterCount": 1,
|
|
1326
|
+
"isStatic": false,
|
|
1327
|
+
"isAbstract": false,
|
|
1328
|
+
"isVirtual": true,
|
|
1329
|
+
"isOverride": true,
|
|
1330
|
+
"isSealed": false,
|
|
1331
|
+
"visibility": "Protected",
|
|
1332
|
+
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteTimeOnlyTypeMapping",
|
|
1333
|
+
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
|
|
1334
|
+
"isExtensionMethod": false
|
|
1335
|
+
},
|
|
1336
|
+
{
|
|
1337
|
+
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteTimeOnlyTypeMapping::GenerateNonNullSqlLiteral(System.Object):System.String",
|
|
1338
|
+
"clrName": "GenerateNonNullSqlLiteral",
|
|
1339
|
+
"metadataToken": 100663894,
|
|
1340
|
+
"canonicalSignature": "(System.Object):System.String",
|
|
1341
|
+
"normalizedSignature": "GenerateNonNullSqlLiteral|(System.Object):System.String|static=false",
|
|
1342
|
+
"emitScope": "ClassSurface",
|
|
1343
|
+
"provenance": "Original",
|
|
1344
|
+
"arity": 0,
|
|
1345
|
+
"parameterCount": 1,
|
|
1346
|
+
"isStatic": false,
|
|
1347
|
+
"isAbstract": false,
|
|
1348
|
+
"isVirtual": true,
|
|
1349
|
+
"isOverride": true,
|
|
1350
|
+
"isSealed": false,
|
|
1351
|
+
"visibility": "Protected",
|
|
1352
|
+
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteTimeOnlyTypeMapping",
|
|
1353
|
+
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
|
|
1354
|
+
"isExtensionMethod": false
|
|
1355
|
+
}
|
|
1356
|
+
],
|
|
730
1357
|
"properties": [
|
|
731
1358
|
{
|
|
732
1359
|
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteTimeOnlyTypeMapping::Default:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteTimeOnlyTypeMapping",
|
|
@@ -743,6 +1370,7 @@
|
|
|
743
1370
|
"isAbstract": false,
|
|
744
1371
|
"isVirtual": false,
|
|
745
1372
|
"isOverride": false,
|
|
1373
|
+
"visibility": "Public",
|
|
746
1374
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteTimeOnlyTypeMapping",
|
|
747
1375
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
748
1376
|
}
|
|
@@ -757,6 +1385,18 @@
|
|
|
757
1385
|
"normalizedSignature": "constructor|(System.String,System.Nullable_1[[System.Data.DbType,System.Data.Common,Version=10.0.0.0,Culture=neutral,PublicKeyToken=b03f5f7f11d50a3a]]):void|static=false",
|
|
758
1386
|
"isStatic": false,
|
|
759
1387
|
"parameterCount": 2,
|
|
1388
|
+
"visibility": "Public",
|
|
1389
|
+
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteTimeOnlyTypeMapping",
|
|
1390
|
+
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
1391
|
+
},
|
|
1392
|
+
{
|
|
1393
|
+
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteTimeOnlyTypeMapping::.ctor(Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping\u002BRelationalTypeMappingParameters):void",
|
|
1394
|
+
"metadataToken": 100663892,
|
|
1395
|
+
"canonicalSignature": "(Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping\u002BRelationalTypeMappingParameters):void",
|
|
1396
|
+
"normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping\u002BRelationalTypeMappingParameters):void|static=false",
|
|
1397
|
+
"isStatic": false,
|
|
1398
|
+
"parameterCount": 1,
|
|
1399
|
+
"visibility": "Protected",
|
|
760
1400
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteTimeOnlyTypeMapping",
|
|
761
1401
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
762
1402
|
}
|
|
@@ -773,6 +1413,20 @@
|
|
|
773
1413
|
"isSealed": false,
|
|
774
1414
|
"isStatic": false,
|
|
775
1415
|
"arity": 0,
|
|
1416
|
+
"baseType": {
|
|
1417
|
+
"stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Storage.RelationalTypeMappingSource",
|
|
1418
|
+
"clrName": "Microsoft.EntityFrameworkCore.Storage.RelationalTypeMappingSource"
|
|
1419
|
+
},
|
|
1420
|
+
"interfaces": [
|
|
1421
|
+
{
|
|
1422
|
+
"stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Storage.ITypeMappingSource",
|
|
1423
|
+
"clrName": "Microsoft.EntityFrameworkCore.Storage.ITypeMappingSource"
|
|
1424
|
+
},
|
|
1425
|
+
{
|
|
1426
|
+
"stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Storage.IRelationalTypeMappingSource",
|
|
1427
|
+
"clrName": "Microsoft.EntityFrameworkCore.Storage.IRelationalTypeMappingSource"
|
|
1428
|
+
}
|
|
1429
|
+
],
|
|
776
1430
|
"methods": [
|
|
777
1431
|
{
|
|
778
1432
|
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteTypeMappingSource::IsSpatialiteType(System.String):System.Boolean",
|
|
@@ -789,9 +1443,36 @@
|
|
|
789
1443
|
"isVirtual": false,
|
|
790
1444
|
"isOverride": false,
|
|
791
1445
|
"isSealed": false,
|
|
1446
|
+
"visibility": "Public",
|
|
792
1447
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteTypeMappingSource",
|
|
793
1448
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
|
|
794
1449
|
"isExtensionMethod": false
|
|
1450
|
+
},
|
|
1451
|
+
{
|
|
1452
|
+
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteTypeMappingSource::FindMapping(Microsoft.EntityFrameworkCore.Storage.RelationalTypeMappingInfo\u0026):Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping",
|
|
1453
|
+
"clrName": "FindMapping",
|
|
1454
|
+
"metadataToken": 100663898,
|
|
1455
|
+
"canonicalSignature": "(Microsoft.EntityFrameworkCore.Storage.RelationalTypeMappingInfo\u0026):Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping",
|
|
1456
|
+
"normalizedSignature": "FindMapping|(Microsoft.EntityFrameworkCore.Storage.RelationalTypeMappingInfo\u0026):Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping|static=false",
|
|
1457
|
+
"emitScope": "ClassSurface",
|
|
1458
|
+
"provenance": "Original",
|
|
1459
|
+
"arity": 0,
|
|
1460
|
+
"parameterCount": 1,
|
|
1461
|
+
"isStatic": false,
|
|
1462
|
+
"isAbstract": false,
|
|
1463
|
+
"isVirtual": true,
|
|
1464
|
+
"isOverride": true,
|
|
1465
|
+
"isSealed": false,
|
|
1466
|
+
"visibility": "Protected",
|
|
1467
|
+
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteTypeMappingSource",
|
|
1468
|
+
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
|
|
1469
|
+
"isExtensionMethod": false,
|
|
1470
|
+
"parameterModifiers": [
|
|
1471
|
+
{
|
|
1472
|
+
"index": 0,
|
|
1473
|
+
"modifier": "in"
|
|
1474
|
+
}
|
|
1475
|
+
]
|
|
795
1476
|
}
|
|
796
1477
|
],
|
|
797
1478
|
"properties": [],
|
|
@@ -805,6 +1486,7 @@
|
|
|
805
1486
|
"normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Storage.TypeMappingSourceDependencies,Microsoft.EntityFrameworkCore.Storage.RelationalTypeMappingSourceDependencies):void|static=false",
|
|
806
1487
|
"isStatic": false,
|
|
807
1488
|
"parameterCount": 2,
|
|
1489
|
+
"visibility": "Public",
|
|
808
1490
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteTypeMappingSource",
|
|
809
1491
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
810
1492
|
}
|
|
@@ -821,7 +1503,52 @@
|
|
|
821
1503
|
"isSealed": false,
|
|
822
1504
|
"isStatic": false,
|
|
823
1505
|
"arity": 0,
|
|
824
|
-
"
|
|
1506
|
+
"baseType": {
|
|
1507
|
+
"stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Storage.ULongTypeMapping",
|
|
1508
|
+
"clrName": "Microsoft.EntityFrameworkCore.Storage.ULongTypeMapping"
|
|
1509
|
+
},
|
|
1510
|
+
"methods": [
|
|
1511
|
+
{
|
|
1512
|
+
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteULongTypeMapping::Clone(Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping\u002BRelationalTypeMappingParameters):Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping",
|
|
1513
|
+
"clrName": "Clone",
|
|
1514
|
+
"metadataToken": 100663905,
|
|
1515
|
+
"canonicalSignature": "(Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping\u002BRelationalTypeMappingParameters):Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping",
|
|
1516
|
+
"normalizedSignature": "Clone|(Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping\u002BRelationalTypeMappingParameters):Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping|static=false",
|
|
1517
|
+
"emitScope": "ClassSurface",
|
|
1518
|
+
"provenance": "Original",
|
|
1519
|
+
"arity": 0,
|
|
1520
|
+
"parameterCount": 1,
|
|
1521
|
+
"isStatic": false,
|
|
1522
|
+
"isAbstract": false,
|
|
1523
|
+
"isVirtual": true,
|
|
1524
|
+
"isOverride": true,
|
|
1525
|
+
"isSealed": false,
|
|
1526
|
+
"visibility": "Protected",
|
|
1527
|
+
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteULongTypeMapping",
|
|
1528
|
+
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
|
|
1529
|
+
"isExtensionMethod": false
|
|
1530
|
+
},
|
|
1531
|
+
{
|
|
1532
|
+
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteULongTypeMapping::GenerateNonNullSqlLiteral(System.Object):System.String",
|
|
1533
|
+
"clrName": "GenerateNonNullSqlLiteral",
|
|
1534
|
+
"metadataToken": 100663906,
|
|
1535
|
+
"canonicalSignature": "(System.Object):System.String",
|
|
1536
|
+
"normalizedSignature": "GenerateNonNullSqlLiteral|(System.Object):System.String|static=false",
|
|
1537
|
+
"emitScope": "ClassSurface",
|
|
1538
|
+
"provenance": "Original",
|
|
1539
|
+
"arity": 0,
|
|
1540
|
+
"parameterCount": 1,
|
|
1541
|
+
"isStatic": false,
|
|
1542
|
+
"isAbstract": false,
|
|
1543
|
+
"isVirtual": true,
|
|
1544
|
+
"isOverride": true,
|
|
1545
|
+
"isSealed": false,
|
|
1546
|
+
"visibility": "Protected",
|
|
1547
|
+
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteULongTypeMapping",
|
|
1548
|
+
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
|
|
1549
|
+
"isExtensionMethod": false
|
|
1550
|
+
}
|
|
1551
|
+
],
|
|
825
1552
|
"properties": [
|
|
826
1553
|
{
|
|
827
1554
|
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteULongTypeMapping::Default:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteULongTypeMapping",
|
|
@@ -838,6 +1565,7 @@
|
|
|
838
1565
|
"isAbstract": false,
|
|
839
1566
|
"isVirtual": false,
|
|
840
1567
|
"isOverride": false,
|
|
1568
|
+
"visibility": "Public",
|
|
841
1569
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteULongTypeMapping",
|
|
842
1570
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
843
1571
|
}
|
|
@@ -852,6 +1580,18 @@
|
|
|
852
1580
|
"normalizedSignature": "constructor|(System.String,System.Nullable_1[[System.Data.DbType,System.Data.Common,Version=10.0.0.0,Culture=neutral,PublicKeyToken=b03f5f7f11d50a3a]]):void|static=false",
|
|
853
1581
|
"isStatic": false,
|
|
854
1582
|
"parameterCount": 2,
|
|
1583
|
+
"visibility": "Public",
|
|
1584
|
+
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteULongTypeMapping",
|
|
1585
|
+
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
1586
|
+
},
|
|
1587
|
+
{
|
|
1588
|
+
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteULongTypeMapping::.ctor(Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping\u002BRelationalTypeMappingParameters):void",
|
|
1589
|
+
"metadataToken": 100663904,
|
|
1590
|
+
"canonicalSignature": "(Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping\u002BRelationalTypeMappingParameters):void",
|
|
1591
|
+
"normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping\u002BRelationalTypeMappingParameters):void|static=false",
|
|
1592
|
+
"isStatic": false,
|
|
1593
|
+
"parameterCount": 1,
|
|
1594
|
+
"visibility": "Protected",
|
|
855
1595
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.SqliteULongTypeMapping",
|
|
856
1596
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
857
1597
|
}
|