@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.
Files changed (46) hide show
  1. package/Microsoft.Data.Sqlite/bindings.json +948 -1
  2. package/Microsoft.Data.Sqlite/internal/index.d.ts +51 -6
  3. package/Microsoft.DotNet.PlatformAbstractions/bindings.json +10 -0
  4. package/Microsoft.EntityFrameworkCore/bindings.json +113 -0
  5. package/Microsoft.EntityFrameworkCore.Diagnostics/bindings.json +31 -0
  6. package/Microsoft.EntityFrameworkCore.Infrastructure/bindings.json +21 -0
  7. package/Microsoft.EntityFrameworkCore.Metadata/bindings.json +25 -0
  8. package/Microsoft.EntityFrameworkCore.Metadata.Conventions/bindings.json +197 -2
  9. package/Microsoft.EntityFrameworkCore.Metadata.Conventions/internal/index.d.ts +30 -6
  10. package/Microsoft.EntityFrameworkCore.Metadata.Conventions.d.ts +3 -2
  11. package/Microsoft.EntityFrameworkCore.Migrations/bindings.json +557 -0
  12. package/Microsoft.EntityFrameworkCore.Migrations/internal/index.d.ts +35 -4
  13. package/Microsoft.EntityFrameworkCore.Migrations.d.ts +3 -3
  14. package/Microsoft.EntityFrameworkCore.Sqlite.Design.Internal/bindings.json +52 -0
  15. package/Microsoft.EntityFrameworkCore.Sqlite.Design.Internal/internal/index.d.ts +7 -2
  16. package/Microsoft.EntityFrameworkCore.Sqlite.Design.Internal.d.ts +1 -1
  17. package/Microsoft.EntityFrameworkCore.Sqlite.Diagnostics.Internal/bindings.json +37 -0
  18. package/Microsoft.EntityFrameworkCore.Sqlite.Infrastructure.Internal/bindings.json +190 -0
  19. package/Microsoft.EntityFrameworkCore.Sqlite.Infrastructure.Internal/internal/index.d.ts +24 -4
  20. package/Microsoft.EntityFrameworkCore.Sqlite.Infrastructure.Internal.d.ts +3 -2
  21. package/Microsoft.EntityFrameworkCore.Sqlite.Internal/bindings.json +62 -0
  22. package/Microsoft.EntityFrameworkCore.Sqlite.Metadata.Internal/bindings.json +26 -0
  23. package/Microsoft.EntityFrameworkCore.Sqlite.Migrations.Internal/bindings.json +98 -0
  24. package/Microsoft.EntityFrameworkCore.Sqlite.Migrations.Internal/internal/index.d.ts +9 -2
  25. package/Microsoft.EntityFrameworkCore.Sqlite.Migrations.Internal.d.ts +1 -1
  26. package/Microsoft.EntityFrameworkCore.Sqlite.Query.Internal/bindings.json +1541 -79
  27. package/Microsoft.EntityFrameworkCore.Sqlite.Query.Internal/internal/index.d.ts +131 -19
  28. package/Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.d.ts +5 -4
  29. package/Microsoft.EntityFrameworkCore.Sqlite.Scaffolding.Internal/bindings.json +45 -0
  30. package/Microsoft.EntityFrameworkCore.Sqlite.Scaffolding.Internal/internal/index.d.ts +8 -3
  31. package/Microsoft.EntityFrameworkCore.Sqlite.Scaffolding.Internal.d.ts +2 -2
  32. package/Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal/bindings.json +749 -9
  33. package/Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal/internal/index.d.ts +98 -14
  34. package/Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.d.ts +3 -2
  35. package/Microsoft.EntityFrameworkCore.Sqlite.Storage.Json.Internal/bindings.json +55 -0
  36. package/Microsoft.EntityFrameworkCore.Sqlite.Update.Internal/bindings.json +194 -2
  37. package/Microsoft.EntityFrameworkCore.Sqlite.Update.Internal/internal/index.d.ts +24 -5
  38. package/Microsoft.EntityFrameworkCore.Sqlite.Update.Internal.d.ts +3 -2
  39. package/Microsoft.Extensions.DependencyInjection/bindings.json +6 -0
  40. package/Microsoft.Extensions.DependencyModel/bindings.json +213 -0
  41. package/Microsoft.Extensions.DependencyModel/internal/index.d.ts +6 -1
  42. package/Microsoft.Extensions.DependencyModel.Resolution/bindings.json +63 -0
  43. package/SQLitePCL/bindings.json +1398 -9
  44. package/SQLitePCL/internal/index.d.ts +40 -10
  45. package/System.Collections.Generic/bindings.json +10 -0
  46. package/package.json +1 -1
@@ -15,7 +15,41 @@
15
15
  "isSealed": false,
16
16
  "isStatic": false,
17
17
  "arity": 0,
18
+ "baseType": {
19
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression",
20
+ "clrName": "Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression"
21
+ },
22
+ "interfaces": [
23
+ {
24
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.IRelationalQuotableExpression",
25
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IRelationalQuotableExpression"
26
+ },
27
+ {
28
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Query.IPrintableExpression",
29
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IPrintableExpression"
30
+ }
31
+ ],
18
32
  "methods": [
33
+ {
34
+ "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.GlobExpression::VisitChildren(System.Linq.Expressions.ExpressionVisitor):System.Linq.Expressions.Expression",
35
+ "clrName": "VisitChildren",
36
+ "metadataToken": 100663934,
37
+ "canonicalSignature": "(System.Linq.Expressions.ExpressionVisitor):System.Linq.Expressions.Expression",
38
+ "normalizedSignature": "VisitChildren|(System.Linq.Expressions.ExpressionVisitor):System.Linq.Expressions.Expression|static=false",
39
+ "emitScope": "ClassSurface",
40
+ "provenance": "Original",
41
+ "arity": 0,
42
+ "parameterCount": 1,
43
+ "isStatic": false,
44
+ "isAbstract": false,
45
+ "isVirtual": true,
46
+ "isOverride": true,
47
+ "isSealed": false,
48
+ "visibility": "Protected",
49
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.GlobExpression",
50
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
51
+ "isExtensionMethod": false
52
+ },
19
53
  {
20
54
  "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.GlobExpression::Update(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression):Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.GlobExpression",
21
55
  "clrName": "Update",
@@ -31,6 +65,7 @@
31
65
  "isVirtual": true,
32
66
  "isOverride": false,
33
67
  "isSealed": false,
68
+ "visibility": "Public",
34
69
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.GlobExpression",
35
70
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
36
71
  "isExtensionMethod": false
@@ -50,6 +85,27 @@
50
85
  "isVirtual": true,
51
86
  "isOverride": true,
52
87
  "isSealed": false,
88
+ "visibility": "Public",
89
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.GlobExpression",
90
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
91
+ "isExtensionMethod": false
92
+ },
93
+ {
94
+ "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.GlobExpression::Print(Microsoft.EntityFrameworkCore.Query.ExpressionPrinter):System.Void",
95
+ "clrName": "Print",
96
+ "metadataToken": 100663937,
97
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.ExpressionPrinter):System.Void",
98
+ "normalizedSignature": "Print|(Microsoft.EntityFrameworkCore.Query.ExpressionPrinter):System.Void|static=false",
99
+ "emitScope": "ClassSurface",
100
+ "provenance": "Original",
101
+ "arity": 0,
102
+ "parameterCount": 1,
103
+ "isStatic": false,
104
+ "isAbstract": false,
105
+ "isVirtual": true,
106
+ "isOverride": true,
107
+ "isSealed": false,
108
+ "visibility": "Protected",
53
109
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.GlobExpression",
54
110
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
55
111
  "isExtensionMethod": false
@@ -69,6 +125,7 @@
69
125
  "isVirtual": true,
70
126
  "isOverride": true,
71
127
  "isSealed": false,
128
+ "visibility": "Public",
72
129
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.GlobExpression",
73
130
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
74
131
  "isExtensionMethod": false
@@ -88,6 +145,7 @@
88
145
  "isVirtual": true,
89
146
  "isOverride": true,
90
147
  "isSealed": false,
148
+ "visibility": "Public",
91
149
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.GlobExpression",
92
150
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
93
151
  "isExtensionMethod": false
@@ -109,6 +167,7 @@
109
167
  "isAbstract": false,
110
168
  "isVirtual": true,
111
169
  "isOverride": true,
170
+ "visibility": "Public",
112
171
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.GlobExpression",
113
172
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
114
173
  },
@@ -127,6 +186,7 @@
127
186
  "isAbstract": false,
128
187
  "isVirtual": true,
129
188
  "isOverride": false,
189
+ "visibility": "Public",
130
190
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.GlobExpression",
131
191
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
132
192
  },
@@ -145,6 +205,7 @@
145
205
  "isAbstract": false,
146
206
  "isVirtual": true,
147
207
  "isOverride": false,
208
+ "visibility": "Public",
148
209
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.GlobExpression",
149
210
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
150
211
  }
@@ -159,6 +220,7 @@
159
220
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping):void|static=false",
160
221
  "isStatic": false,
161
222
  "parameterCount": 3,
223
+ "visibility": "Public",
162
224
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.GlobExpression",
163
225
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
164
226
  }
@@ -175,7 +237,45 @@
175
237
  "isSealed": false,
176
238
  "isStatic": false,
177
239
  "arity": 0,
240
+ "baseType": {
241
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableValuedFunctionExpression",
242
+ "clrName": "Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableValuedFunctionExpression"
243
+ },
244
+ "interfaces": [
245
+ {
246
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.IRelationalQuotableExpression",
247
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IRelationalQuotableExpression"
248
+ },
249
+ {
250
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Query.IPrintableExpression",
251
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IPrintableExpression"
252
+ },
253
+ {
254
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.SqlExpressions.ITableBasedExpression",
255
+ "clrName": "Microsoft.EntityFrameworkCore.Query.SqlExpressions.ITableBasedExpression"
256
+ }
257
+ ],
178
258
  "methods": [
259
+ {
260
+ "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.JsonEachExpression::VisitChildren(System.Linq.Expressions.ExpressionVisitor):System.Linq.Expressions.Expression",
261
+ "clrName": "VisitChildren",
262
+ "metadataToken": 100663944,
263
+ "canonicalSignature": "(System.Linq.Expressions.ExpressionVisitor):System.Linq.Expressions.Expression",
264
+ "normalizedSignature": "VisitChildren|(System.Linq.Expressions.ExpressionVisitor):System.Linq.Expressions.Expression|static=false",
265
+ "emitScope": "ClassSurface",
266
+ "provenance": "Original",
267
+ "arity": 0,
268
+ "parameterCount": 1,
269
+ "isStatic": false,
270
+ "isAbstract": false,
271
+ "isVirtual": true,
272
+ "isOverride": true,
273
+ "isSealed": false,
274
+ "visibility": "Protected",
275
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.JsonEachExpression",
276
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
277
+ "isExtensionMethod": false
278
+ },
179
279
  {
180
280
  "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.JsonEachExpression::Update(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,System.Collections.Generic.IReadOnlyList_1[[Microsoft.EntityFrameworkCore.Query.PathSegment,Microsoft.EntityFrameworkCore.Relational,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.JsonEachExpression",
181
281
  "clrName": "Update",
@@ -191,6 +291,7 @@
191
291
  "isVirtual": true,
192
292
  "isOverride": false,
193
293
  "isSealed": false,
294
+ "visibility": "Public",
194
295
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.JsonEachExpression",
195
296
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
196
297
  "isExtensionMethod": false
@@ -210,6 +311,7 @@
210
311
  "isVirtual": true,
211
312
  "isOverride": true,
212
313
  "isSealed": false,
314
+ "visibility": "Public",
213
315
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.JsonEachExpression",
214
316
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
215
317
  "isExtensionMethod": false
@@ -229,6 +331,7 @@
229
331
  "isVirtual": true,
230
332
  "isOverride": false,
231
333
  "isSealed": false,
334
+ "visibility": "Public",
232
335
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.JsonEachExpression",
233
336
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
234
337
  "isExtensionMethod": false
@@ -248,6 +351,27 @@
248
351
  "isVirtual": true,
249
352
  "isOverride": true,
250
353
  "isSealed": false,
354
+ "visibility": "Public",
355
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.JsonEachExpression",
356
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
357
+ "isExtensionMethod": false
358
+ },
359
+ {
360
+ "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.JsonEachExpression::Print(Microsoft.EntityFrameworkCore.Query.ExpressionPrinter):System.Void",
361
+ "clrName": "Print",
362
+ "metadataToken": 100663949,
363
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.ExpressionPrinter):System.Void",
364
+ "normalizedSignature": "Print|(Microsoft.EntityFrameworkCore.Query.ExpressionPrinter):System.Void|static=false",
365
+ "emitScope": "ClassSurface",
366
+ "provenance": "Original",
367
+ "arity": 0,
368
+ "parameterCount": 1,
369
+ "isStatic": false,
370
+ "isAbstract": false,
371
+ "isVirtual": true,
372
+ "isOverride": true,
373
+ "isSealed": false,
374
+ "visibility": "Protected",
251
375
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.JsonEachExpression",
252
376
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
253
377
  "isExtensionMethod": false
@@ -267,6 +391,7 @@
267
391
  "isVirtual": true,
268
392
  "isOverride": true,
269
393
  "isSealed": false,
394
+ "visibility": "Public",
270
395
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.JsonEachExpression",
271
396
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
272
397
  "isExtensionMethod": false
@@ -286,6 +411,7 @@
286
411
  "isVirtual": true,
287
412
  "isOverride": true,
288
413
  "isSealed": false,
414
+ "visibility": "Public",
289
415
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.JsonEachExpression",
290
416
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
291
417
  "isExtensionMethod": false
@@ -307,6 +433,7 @@
307
433
  "isAbstract": false,
308
434
  "isVirtual": true,
309
435
  "isOverride": false,
436
+ "visibility": "Public",
310
437
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.JsonEachExpression",
311
438
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
312
439
  },
@@ -325,6 +452,7 @@
325
452
  "isAbstract": false,
326
453
  "isVirtual": true,
327
454
  "isOverride": false,
455
+ "visibility": "Public",
328
456
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.JsonEachExpression",
329
457
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
330
458
  }
@@ -339,6 +467,7 @@
339
467
  "normalizedSignature": "constructor|(System.String,Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,System.Collections.Generic.IReadOnlyList_1[[Microsoft.EntityFrameworkCore.Query.PathSegment,Microsoft.EntityFrameworkCore.Relational,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):void|static=false",
340
468
  "isStatic": false,
341
469
  "parameterCount": 3,
470
+ "visibility": "Public",
342
471
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.JsonEachExpression",
343
472
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
344
473
  }
@@ -355,7 +484,41 @@
355
484
  "isSealed": false,
356
485
  "isStatic": false,
357
486
  "arity": 0,
487
+ "baseType": {
488
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression",
489
+ "clrName": "Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression"
490
+ },
491
+ "interfaces": [
492
+ {
493
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.IRelationalQuotableExpression",
494
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IRelationalQuotableExpression"
495
+ },
496
+ {
497
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Query.IPrintableExpression",
498
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IPrintableExpression"
499
+ }
500
+ ],
358
501
  "methods": [
502
+ {
503
+ "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.RegexpExpression::VisitChildren(System.Linq.Expressions.ExpressionVisitor):System.Linq.Expressions.Expression",
504
+ "clrName": "VisitChildren",
505
+ "metadataToken": 100663957,
506
+ "canonicalSignature": "(System.Linq.Expressions.ExpressionVisitor):System.Linq.Expressions.Expression",
507
+ "normalizedSignature": "VisitChildren|(System.Linq.Expressions.ExpressionVisitor):System.Linq.Expressions.Expression|static=false",
508
+ "emitScope": "ClassSurface",
509
+ "provenance": "Original",
510
+ "arity": 0,
511
+ "parameterCount": 1,
512
+ "isStatic": false,
513
+ "isAbstract": false,
514
+ "isVirtual": true,
515
+ "isOverride": true,
516
+ "isSealed": false,
517
+ "visibility": "Protected",
518
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.RegexpExpression",
519
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
520
+ "isExtensionMethod": false
521
+ },
359
522
  {
360
523
  "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.RegexpExpression::Update(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression):Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.RegexpExpression",
361
524
  "clrName": "Update",
@@ -371,6 +534,7 @@
371
534
  "isVirtual": true,
372
535
  "isOverride": false,
373
536
  "isSealed": false,
537
+ "visibility": "Public",
374
538
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.RegexpExpression",
375
539
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
376
540
  "isExtensionMethod": false
@@ -390,6 +554,27 @@
390
554
  "isVirtual": true,
391
555
  "isOverride": true,
392
556
  "isSealed": false,
557
+ "visibility": "Public",
558
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.RegexpExpression",
559
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
560
+ "isExtensionMethod": false
561
+ },
562
+ {
563
+ "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.RegexpExpression::Print(Microsoft.EntityFrameworkCore.Query.ExpressionPrinter):System.Void",
564
+ "clrName": "Print",
565
+ "metadataToken": 100663960,
566
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.ExpressionPrinter):System.Void",
567
+ "normalizedSignature": "Print|(Microsoft.EntityFrameworkCore.Query.ExpressionPrinter):System.Void|static=false",
568
+ "emitScope": "ClassSurface",
569
+ "provenance": "Original",
570
+ "arity": 0,
571
+ "parameterCount": 1,
572
+ "isStatic": false,
573
+ "isAbstract": false,
574
+ "isVirtual": true,
575
+ "isOverride": true,
576
+ "isSealed": false,
577
+ "visibility": "Protected",
393
578
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.RegexpExpression",
394
579
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
395
580
  "isExtensionMethod": false
@@ -409,6 +594,7 @@
409
594
  "isVirtual": true,
410
595
  "isOverride": true,
411
596
  "isSealed": false,
597
+ "visibility": "Public",
412
598
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.RegexpExpression",
413
599
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
414
600
  "isExtensionMethod": false
@@ -428,6 +614,7 @@
428
614
  "isVirtual": true,
429
615
  "isOverride": true,
430
616
  "isSealed": false,
617
+ "visibility": "Public",
431
618
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.RegexpExpression",
432
619
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
433
620
  "isExtensionMethod": false
@@ -449,6 +636,7 @@
449
636
  "isAbstract": false,
450
637
  "isVirtual": true,
451
638
  "isOverride": true,
639
+ "visibility": "Public",
452
640
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.RegexpExpression",
453
641
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
454
642
  },
@@ -467,6 +655,7 @@
467
655
  "isAbstract": false,
468
656
  "isVirtual": true,
469
657
  "isOverride": false,
658
+ "visibility": "Public",
470
659
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.RegexpExpression",
471
660
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
472
661
  },
@@ -485,6 +674,7 @@
485
674
  "isAbstract": false,
486
675
  "isVirtual": true,
487
676
  "isOverride": false,
677
+ "visibility": "Public",
488
678
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.RegexpExpression",
489
679
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
490
680
  }
@@ -499,6 +689,7 @@
499
689
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping):void|static=false",
500
690
  "isStatic": false,
501
691
  "parameterCount": 3,
692
+ "visibility": "Public",
502
693
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.RegexpExpression",
503
694
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
504
695
  }
@@ -515,6 +706,16 @@
515
706
  "isSealed": false,
516
707
  "isStatic": false,
517
708
  "arity": 0,
709
+ "baseType": {
710
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.RelationalAggregateMethodCallTranslatorProvider",
711
+ "clrName": "Microsoft.EntityFrameworkCore.Query.RelationalAggregateMethodCallTranslatorProvider"
712
+ },
713
+ "interfaces": [
714
+ {
715
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.IAggregateMethodCallTranslatorProvider",
716
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IAggregateMethodCallTranslatorProvider"
717
+ }
718
+ ],
518
719
  "methods": [],
519
720
  "properties": [],
520
721
  "fields": [],
@@ -527,6 +728,7 @@
527
728
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.RelationalAggregateMethodCallTranslatorProviderDependencies):void|static=false",
528
729
  "isStatic": false,
529
730
  "parameterCount": 1,
731
+ "visibility": "Public",
530
732
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteAggregateMethodCallTranslatorProvider",
531
733
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
532
734
  }
@@ -543,6 +745,16 @@
543
745
  "isSealed": false,
544
746
  "isStatic": false,
545
747
  "arity": 0,
748
+ "baseType": {
749
+ "stableId": "System.Private.CoreLib:System.Object",
750
+ "clrName": "System.Object"
751
+ },
752
+ "interfaces": [
753
+ {
754
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.IMethodCallTranslator",
755
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IMethodCallTranslator"
756
+ }
757
+ ],
546
758
  "methods": [
547
759
  {
548
760
  "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteByteArrayMethodTranslator::Translate(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,System.Reflection.MethodInfo,System.Collections.Generic.IReadOnlyList_1[[Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,Microsoft.EntityFrameworkCore.Relational,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]],Microsoft.EntityFrameworkCore.Diagnostics.IDiagnosticsLogger_1[[Microsoft.EntityFrameworkCore.DbLoggerCategory\u002BQuery,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression",
@@ -559,6 +771,7 @@
559
771
  "isVirtual": true,
560
772
  "isOverride": false,
561
773
  "isSealed": false,
774
+ "visibility": "Public",
562
775
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteByteArrayMethodTranslator",
563
776
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
564
777
  "isExtensionMethod": false
@@ -575,6 +788,7 @@
575
788
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.ISqlExpressionFactory):void|static=false",
576
789
  "isStatic": false,
577
790
  "parameterCount": 1,
791
+ "visibility": "Public",
578
792
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteByteArrayMethodTranslator",
579
793
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
580
794
  }
@@ -591,6 +805,16 @@
591
805
  "isSealed": false,
592
806
  "isStatic": false,
593
807
  "arity": 0,
808
+ "baseType": {
809
+ "stableId": "System.Private.CoreLib:System.Object",
810
+ "clrName": "System.Object"
811
+ },
812
+ "interfaces": [
813
+ {
814
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.IMethodCallTranslator",
815
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IMethodCallTranslator"
816
+ }
817
+ ],
594
818
  "methods": [
595
819
  {
596
820
  "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteCharMethodTranslator::Translate(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,System.Reflection.MethodInfo,System.Collections.Generic.IReadOnlyList_1[[Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,Microsoft.EntityFrameworkCore.Relational,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]],Microsoft.EntityFrameworkCore.Diagnostics.IDiagnosticsLogger_1[[Microsoft.EntityFrameworkCore.DbLoggerCategory\u002BQuery,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression",
@@ -607,6 +831,7 @@
607
831
  "isVirtual": true,
608
832
  "isOverride": false,
609
833
  "isSealed": false,
834
+ "visibility": "Public",
610
835
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteCharMethodTranslator",
611
836
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
612
837
  "isExtensionMethod": false
@@ -623,6 +848,7 @@
623
848
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.ISqlExpressionFactory):void|static=false",
624
849
  "isStatic": false,
625
850
  "parameterCount": 1,
851
+ "visibility": "Public",
626
852
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteCharMethodTranslator",
627
853
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
628
854
  }
@@ -639,6 +865,16 @@
639
865
  "isSealed": false,
640
866
  "isStatic": false,
641
867
  "arity": 0,
868
+ "baseType": {
869
+ "stableId": "System.Private.CoreLib:System.Object",
870
+ "clrName": "System.Object"
871
+ },
872
+ "interfaces": [
873
+ {
874
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.IMemberTranslator",
875
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IMemberTranslator"
876
+ }
877
+ ],
642
878
  "methods": [
643
879
  {
644
880
  "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteDateOnlyMemberTranslator::Translate(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,System.Reflection.MemberInfo,System.Type,Microsoft.EntityFrameworkCore.Diagnostics.IDiagnosticsLogger_1[[Microsoft.EntityFrameworkCore.DbLoggerCategory\u002BQuery,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression",
@@ -655,6 +891,7 @@
655
891
  "isVirtual": true,
656
892
  "isOverride": false,
657
893
  "isSealed": false,
894
+ "visibility": "Public",
658
895
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteDateOnlyMemberTranslator",
659
896
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
660
897
  "isExtensionMethod": false
@@ -671,6 +908,7 @@
671
908
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteSqlExpressionFactory):void|static=false",
672
909
  "isStatic": false,
673
910
  "parameterCount": 1,
911
+ "visibility": "Public",
674
912
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteDateOnlyMemberTranslator",
675
913
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
676
914
  }
@@ -687,6 +925,16 @@
687
925
  "isSealed": false,
688
926
  "isStatic": false,
689
927
  "arity": 0,
928
+ "baseType": {
929
+ "stableId": "System.Private.CoreLib:System.Object",
930
+ "clrName": "System.Object"
931
+ },
932
+ "interfaces": [
933
+ {
934
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.IMethodCallTranslator",
935
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IMethodCallTranslator"
936
+ }
937
+ ],
690
938
  "methods": [
691
939
  {
692
940
  "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteDateOnlyMethodTranslator::Translate(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,System.Reflection.MethodInfo,System.Collections.Generic.IReadOnlyList_1[[Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,Microsoft.EntityFrameworkCore.Relational,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]],Microsoft.EntityFrameworkCore.Diagnostics.IDiagnosticsLogger_1[[Microsoft.EntityFrameworkCore.DbLoggerCategory\u002BQuery,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression",
@@ -703,6 +951,7 @@
703
951
  "isVirtual": true,
704
952
  "isOverride": false,
705
953
  "isSealed": true,
954
+ "visibility": "Public",
706
955
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteDateOnlyMethodTranslator",
707
956
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
708
957
  "isExtensionMethod": false
@@ -719,6 +968,7 @@
719
968
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteSqlExpressionFactory):void|static=false",
720
969
  "isStatic": false,
721
970
  "parameterCount": 1,
971
+ "visibility": "Public",
722
972
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteDateOnlyMethodTranslator",
723
973
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
724
974
  }
@@ -735,6 +985,16 @@
735
985
  "isSealed": false,
736
986
  "isStatic": false,
737
987
  "arity": 0,
988
+ "baseType": {
989
+ "stableId": "System.Private.CoreLib:System.Object",
990
+ "clrName": "System.Object"
991
+ },
992
+ "interfaces": [
993
+ {
994
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.IMemberTranslator",
995
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IMemberTranslator"
996
+ }
997
+ ],
738
998
  "methods": [
739
999
  {
740
1000
  "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteDateTimeMemberTranslator::Translate(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,System.Reflection.MemberInfo,System.Type,Microsoft.EntityFrameworkCore.Diagnostics.IDiagnosticsLogger_1[[Microsoft.EntityFrameworkCore.DbLoggerCategory\u002BQuery,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression",
@@ -751,6 +1011,7 @@
751
1011
  "isVirtual": true,
752
1012
  "isOverride": false,
753
1013
  "isSealed": false,
1014
+ "visibility": "Public",
754
1015
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteDateTimeMemberTranslator",
755
1016
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
756
1017
  "isExtensionMethod": false
@@ -767,6 +1028,7 @@
767
1028
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteSqlExpressionFactory):void|static=false",
768
1029
  "isStatic": false,
769
1030
  "parameterCount": 1,
1031
+ "visibility": "Public",
770
1032
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteDateTimeMemberTranslator",
771
1033
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
772
1034
  }
@@ -783,6 +1045,16 @@
783
1045
  "isSealed": false,
784
1046
  "isStatic": false,
785
1047
  "arity": 0,
1048
+ "baseType": {
1049
+ "stableId": "System.Private.CoreLib:System.Object",
1050
+ "clrName": "System.Object"
1051
+ },
1052
+ "interfaces": [
1053
+ {
1054
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.IMethodCallTranslator",
1055
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IMethodCallTranslator"
1056
+ }
1057
+ ],
786
1058
  "methods": [
787
1059
  {
788
1060
  "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteDateTimeMethodTranslator::Translate(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,System.Reflection.MethodInfo,System.Collections.Generic.IReadOnlyList_1[[Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,Microsoft.EntityFrameworkCore.Relational,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]],Microsoft.EntityFrameworkCore.Diagnostics.IDiagnosticsLogger_1[[Microsoft.EntityFrameworkCore.DbLoggerCategory\u002BQuery,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression",
@@ -799,6 +1071,7 @@
799
1071
  "isVirtual": true,
800
1072
  "isOverride": false,
801
1073
  "isSealed": false,
1074
+ "visibility": "Public",
802
1075
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteDateTimeMethodTranslator",
803
1076
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
804
1077
  "isExtensionMethod": false
@@ -815,6 +1088,7 @@
815
1088
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteSqlExpressionFactory):void|static=false",
816
1089
  "isStatic": false,
817
1090
  "parameterCount": 1,
1091
+ "visibility": "Public",
818
1092
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteDateTimeMethodTranslator",
819
1093
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
820
1094
  }
@@ -831,6 +1105,16 @@
831
1105
  "isSealed": false,
832
1106
  "isStatic": false,
833
1107
  "arity": 0,
1108
+ "baseType": {
1109
+ "stableId": "System.Private.CoreLib:System.Object",
1110
+ "clrName": "System.Object"
1111
+ },
1112
+ "interfaces": [
1113
+ {
1114
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.IMethodCallTranslator",
1115
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IMethodCallTranslator"
1116
+ }
1117
+ ],
834
1118
  "methods": [
835
1119
  {
836
1120
  "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteGlobMethodTranslator::Translate(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,System.Reflection.MethodInfo,System.Collections.Generic.IReadOnlyList_1[[Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,Microsoft.EntityFrameworkCore.Relational,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]],Microsoft.EntityFrameworkCore.Diagnostics.IDiagnosticsLogger_1[[Microsoft.EntityFrameworkCore.DbLoggerCategory\u002BQuery,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression",
@@ -847,6 +1131,7 @@
847
1131
  "isVirtual": true,
848
1132
  "isOverride": false,
849
1133
  "isSealed": false,
1134
+ "visibility": "Public",
850
1135
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteGlobMethodTranslator",
851
1136
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
852
1137
  "isExtensionMethod": false
@@ -863,6 +1148,7 @@
863
1148
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteSqlExpressionFactory):void|static=false",
864
1149
  "isStatic": false,
865
1150
  "parameterCount": 1,
1151
+ "visibility": "Public",
866
1152
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteGlobMethodTranslator",
867
1153
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
868
1154
  }
@@ -879,6 +1165,16 @@
879
1165
  "isSealed": false,
880
1166
  "isStatic": false,
881
1167
  "arity": 0,
1168
+ "baseType": {
1169
+ "stableId": "System.Private.CoreLib:System.Object",
1170
+ "clrName": "System.Object"
1171
+ },
1172
+ "interfaces": [
1173
+ {
1174
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.IMethodCallTranslator",
1175
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IMethodCallTranslator"
1176
+ }
1177
+ ],
882
1178
  "methods": [
883
1179
  {
884
1180
  "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteHexMethodTranslator::Translate(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,System.Reflection.MethodInfo,System.Collections.Generic.IReadOnlyList_1[[Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,Microsoft.EntityFrameworkCore.Relational,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]],Microsoft.EntityFrameworkCore.Diagnostics.IDiagnosticsLogger_1[[Microsoft.EntityFrameworkCore.DbLoggerCategory\u002BQuery,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression",
@@ -895,6 +1191,7 @@
895
1191
  "isVirtual": true,
896
1192
  "isOverride": false,
897
1193
  "isSealed": false,
1194
+ "visibility": "Public",
898
1195
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteHexMethodTranslator",
899
1196
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
900
1197
  "isExtensionMethod": false
@@ -911,6 +1208,7 @@
911
1208
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.ISqlExpressionFactory):void|static=false",
912
1209
  "isStatic": false,
913
1210
  "parameterCount": 1,
1211
+ "visibility": "Public",
914
1212
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteHexMethodTranslator",
915
1213
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
916
1214
  }
@@ -927,6 +1225,16 @@
927
1225
  "isSealed": false,
928
1226
  "isStatic": false,
929
1227
  "arity": 0,
1228
+ "baseType": {
1229
+ "stableId": "System.Private.CoreLib:System.Object",
1230
+ "clrName": "System.Object"
1231
+ },
1232
+ "interfaces": [
1233
+ {
1234
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.IMethodCallTranslator",
1235
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IMethodCallTranslator"
1236
+ }
1237
+ ],
930
1238
  "methods": [
931
1239
  {
932
1240
  "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteMathTranslator::Translate(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,System.Reflection.MethodInfo,System.Collections.Generic.IReadOnlyList_1[[Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,Microsoft.EntityFrameworkCore.Relational,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]],Microsoft.EntityFrameworkCore.Diagnostics.IDiagnosticsLogger_1[[Microsoft.EntityFrameworkCore.DbLoggerCategory\u002BQuery,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression",
@@ -943,6 +1251,7 @@
943
1251
  "isVirtual": true,
944
1252
  "isOverride": false,
945
1253
  "isSealed": false,
1254
+ "visibility": "Public",
946
1255
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteMathTranslator",
947
1256
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
948
1257
  "isExtensionMethod": false
@@ -959,6 +1268,7 @@
959
1268
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.ISqlExpressionFactory):void|static=false",
960
1269
  "isStatic": false,
961
1270
  "parameterCount": 1,
1271
+ "visibility": "Public",
962
1272
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteMathTranslator",
963
1273
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
964
1274
  }
@@ -975,6 +1285,16 @@
975
1285
  "isSealed": false,
976
1286
  "isStatic": false,
977
1287
  "arity": 0,
1288
+ "baseType": {
1289
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.RelationalMemberTranslatorProvider",
1290
+ "clrName": "Microsoft.EntityFrameworkCore.Query.RelationalMemberTranslatorProvider"
1291
+ },
1292
+ "interfaces": [
1293
+ {
1294
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.IMemberTranslatorProvider",
1295
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IMemberTranslatorProvider"
1296
+ }
1297
+ ],
978
1298
  "methods": [],
979
1299
  "properties": [],
980
1300
  "fields": [],
@@ -987,6 +1307,7 @@
987
1307
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.RelationalMemberTranslatorProviderDependencies):void|static=false",
988
1308
  "isStatic": false,
989
1309
  "parameterCount": 1,
1310
+ "visibility": "Public",
990
1311
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteMemberTranslatorProvider",
991
1312
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
992
1313
  }
@@ -1003,6 +1324,16 @@
1003
1324
  "isSealed": false,
1004
1325
  "isStatic": false,
1005
1326
  "arity": 0,
1327
+ "baseType": {
1328
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.RelationalMethodCallTranslatorProvider",
1329
+ "clrName": "Microsoft.EntityFrameworkCore.Query.RelationalMethodCallTranslatorProvider"
1330
+ },
1331
+ "interfaces": [
1332
+ {
1333
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.IMethodCallTranslatorProvider",
1334
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IMethodCallTranslatorProvider"
1335
+ }
1336
+ ],
1006
1337
  "methods": [],
1007
1338
  "properties": [],
1008
1339
  "fields": [],
@@ -1015,6 +1346,7 @@
1015
1346
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.RelationalMethodCallTranslatorProviderDependencies):void|static=false",
1016
1347
  "isStatic": false,
1017
1348
  "parameterCount": 1,
1349
+ "visibility": "Public",
1018
1350
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteMethodCallTranslatorProvider",
1019
1351
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
1020
1352
  }
@@ -1031,6 +1363,16 @@
1031
1363
  "isSealed": false,
1032
1364
  "isStatic": false,
1033
1365
  "arity": 0,
1366
+ "baseType": {
1367
+ "stableId": "System.Private.CoreLib:System.Object",
1368
+ "clrName": "System.Object"
1369
+ },
1370
+ "interfaces": [
1371
+ {
1372
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.IMethodCallTranslator",
1373
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IMethodCallTranslator"
1374
+ }
1375
+ ],
1034
1376
  "methods": [
1035
1377
  {
1036
1378
  "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteObjectToStringTranslator::Translate(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,System.Reflection.MethodInfo,System.Collections.Generic.IReadOnlyList_1[[Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,Microsoft.EntityFrameworkCore.Relational,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]],Microsoft.EntityFrameworkCore.Diagnostics.IDiagnosticsLogger_1[[Microsoft.EntityFrameworkCore.DbLoggerCategory\u002BQuery,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression",
@@ -1047,6 +1389,7 @@
1047
1389
  "isVirtual": true,
1048
1390
  "isOverride": false,
1049
1391
  "isSealed": false,
1392
+ "visibility": "Public",
1050
1393
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteObjectToStringTranslator",
1051
1394
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
1052
1395
  "isExtensionMethod": false
@@ -1063,6 +1406,7 @@
1063
1406
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.ISqlExpressionFactory):void|static=false",
1064
1407
  "isStatic": false,
1065
1408
  "parameterCount": 1,
1409
+ "visibility": "Public",
1066
1410
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteObjectToStringTranslator",
1067
1411
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
1068
1412
  }
@@ -1079,7 +1423,32 @@
1079
1423
  "isSealed": false,
1080
1424
  "isStatic": false,
1081
1425
  "arity": 0,
1082
- "methods": [],
1426
+ "baseType": {
1427
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.RelationalParameterBasedSqlProcessor",
1428
+ "clrName": "Microsoft.EntityFrameworkCore.Query.RelationalParameterBasedSqlProcessor"
1429
+ },
1430
+ "methods": [
1431
+ {
1432
+ "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteParameterBasedSqlProcessor::ProcessSqlNullability(System.Linq.Expressions.Expression,Microsoft.EntityFrameworkCore.Query.ParametersCacheDecorator):System.Linq.Expressions.Expression",
1433
+ "clrName": "ProcessSqlNullability",
1434
+ "metadataToken": 100663968,
1435
+ "canonicalSignature": "(System.Linq.Expressions.Expression,Microsoft.EntityFrameworkCore.Query.ParametersCacheDecorator):System.Linq.Expressions.Expression",
1436
+ "normalizedSignature": "ProcessSqlNullability|(System.Linq.Expressions.Expression,Microsoft.EntityFrameworkCore.Query.ParametersCacheDecorator):System.Linq.Expressions.Expression|static=false",
1437
+ "emitScope": "ClassSurface",
1438
+ "provenance": "Original",
1439
+ "arity": 0,
1440
+ "parameterCount": 2,
1441
+ "isStatic": false,
1442
+ "isAbstract": false,
1443
+ "isVirtual": true,
1444
+ "isOverride": true,
1445
+ "isSealed": false,
1446
+ "visibility": "Protected",
1447
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteParameterBasedSqlProcessor",
1448
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
1449
+ "isExtensionMethod": false
1450
+ }
1451
+ ],
1083
1452
  "properties": [],
1084
1453
  "fields": [],
1085
1454
  "events": [],
@@ -1091,6 +1460,7 @@
1091
1460
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.RelationalParameterBasedSqlProcessorDependencies,Microsoft.EntityFrameworkCore.Query.RelationalParameterBasedSqlProcessorParameters):void|static=false",
1092
1461
  "isStatic": false,
1093
1462
  "parameterCount": 2,
1463
+ "visibility": "Public",
1094
1464
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteParameterBasedSqlProcessor",
1095
1465
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
1096
1466
  }
@@ -1107,6 +1477,16 @@
1107
1477
  "isSealed": false,
1108
1478
  "isStatic": false,
1109
1479
  "arity": 0,
1480
+ "baseType": {
1481
+ "stableId": "System.Private.CoreLib:System.Object",
1482
+ "clrName": "System.Object"
1483
+ },
1484
+ "interfaces": [
1485
+ {
1486
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.IRelationalParameterBasedSqlProcessorFactory",
1487
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IRelationalParameterBasedSqlProcessorFactory"
1488
+ }
1489
+ ],
1110
1490
  "methods": [
1111
1491
  {
1112
1492
  "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteParameterBasedSqlProcessorFactory::Create(Microsoft.EntityFrameworkCore.Query.RelationalParameterBasedSqlProcessorParameters):Microsoft.EntityFrameworkCore.Query.RelationalParameterBasedSqlProcessor",
@@ -1123,6 +1503,7 @@
1123
1503
  "isVirtual": true,
1124
1504
  "isOverride": false,
1125
1505
  "isSealed": false,
1506
+ "visibility": "Public",
1126
1507
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteParameterBasedSqlProcessorFactory",
1127
1508
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
1128
1509
  "isExtensionMethod": false
@@ -1139,6 +1520,7 @@
1139
1520
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.RelationalParameterBasedSqlProcessorDependencies):void|static=false",
1140
1521
  "isStatic": false,
1141
1522
  "parameterCount": 1,
1523
+ "visibility": "Public",
1142
1524
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteParameterBasedSqlProcessorFactory",
1143
1525
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
1144
1526
  }
@@ -1155,6 +1537,16 @@
1155
1537
  "isSealed": false,
1156
1538
  "isStatic": false,
1157
1539
  "arity": 0,
1540
+ "baseType": {
1541
+ "stableId": "System.Private.CoreLib:System.Object",
1542
+ "clrName": "System.Object"
1543
+ },
1544
+ "interfaces": [
1545
+ {
1546
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.IAggregateMethodCallTranslator",
1547
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IAggregateMethodCallTranslator"
1548
+ }
1549
+ ],
1158
1550
  "methods": [
1159
1551
  {
1160
1552
  "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryableAggregateMethodTranslator::Translate(System.Reflection.MethodInfo,Microsoft.EntityFrameworkCore.Query.EnumerableExpression,System.Collections.Generic.IReadOnlyList_1[[Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,Microsoft.EntityFrameworkCore.Relational,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]],Microsoft.EntityFrameworkCore.Diagnostics.IDiagnosticsLogger_1[[Microsoft.EntityFrameworkCore.DbLoggerCategory\u002BQuery,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression",
@@ -1171,6 +1563,7 @@
1171
1563
  "isVirtual": true,
1172
1564
  "isOverride": false,
1173
1565
  "isSealed": false,
1566
+ "visibility": "Public",
1174
1567
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryableAggregateMethodTranslator",
1175
1568
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
1176
1569
  "isExtensionMethod": false
@@ -1187,6 +1580,7 @@
1187
1580
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.ISqlExpressionFactory):void|static=false",
1188
1581
  "isStatic": false,
1189
1582
  "parameterCount": 1,
1583
+ "visibility": "Public",
1190
1584
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryableAggregateMethodTranslator",
1191
1585
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
1192
1586
  }
@@ -1203,99 +1597,400 @@
1203
1597
  "isSealed": false,
1204
1598
  "isStatic": false,
1205
1599
  "arity": 0,
1600
+ "baseType": {
1601
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.RelationalQueryableMethodTranslatingExpressionVisitor",
1602
+ "clrName": "Microsoft.EntityFrameworkCore.Query.RelationalQueryableMethodTranslatingExpressionVisitor"
1603
+ },
1206
1604
  "methods": [
1207
1605
  {
1208
- "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryableMethodTranslatingExpressionVisitor::ApplyJsonSqlConversion(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteSqlExpressionFactory,Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping,System.Boolean):Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression",
1209
- "clrName": "ApplyJsonSqlConversion",
1210
- "metadataToken": 100663985,
1211
- "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteSqlExpressionFactory,Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping,System.Boolean):Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression",
1212
- "normalizedSignature": "ApplyJsonSqlConversion|(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteSqlExpressionFactory,Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping,System.Boolean):Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression|static=true",
1606
+ "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryableMethodTranslatingExpressionVisitor::CreateSubqueryVisitor():Microsoft.EntityFrameworkCore.Query.QueryableMethodTranslatingExpressionVisitor",
1607
+ "clrName": "CreateSubqueryVisitor",
1608
+ "metadataToken": 100663973,
1609
+ "canonicalSignature": "():Microsoft.EntityFrameworkCore.Query.QueryableMethodTranslatingExpressionVisitor",
1610
+ "normalizedSignature": "CreateSubqueryVisitor|():Microsoft.EntityFrameworkCore.Query.QueryableMethodTranslatingExpressionVisitor|static=false",
1213
1611
  "emitScope": "ClassSurface",
1214
1612
  "provenance": "Original",
1215
1613
  "arity": 0,
1216
- "parameterCount": 4,
1217
- "isStatic": true,
1614
+ "parameterCount": 0,
1615
+ "isStatic": false,
1218
1616
  "isAbstract": false,
1219
- "isVirtual": false,
1220
- "isOverride": false,
1617
+ "isVirtual": true,
1618
+ "isOverride": true,
1221
1619
  "isSealed": false,
1620
+ "visibility": "Protected",
1222
1621
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryableMethodTranslatingExpressionVisitor",
1223
1622
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
1224
1623
  "isExtensionMethod": false
1225
- }
1226
- ],
1227
- "properties": [],
1228
- "fields": [
1229
- {
1230
- "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryableMethodTranslatingExpressionVisitor::JsonEachKeyColumnNameSystem.String",
1231
- "clrName": "JsonEachKeyColumnName",
1232
- "metadataToken": 67109102,
1233
- "normalizedSignature": "JsonEachKeyColumnName|System.String|static=true|const=true",
1234
- "isStatic": true,
1235
- "isReadOnly": false,
1236
- "isLiteral": true,
1237
- "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryableMethodTranslatingExpressionVisitor",
1238
- "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
1239
1624
  },
1240
1625
  {
1241
- "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryableMethodTranslatingExpressionVisitor::JsonEachValueColumnNameSystem.String",
1242
- "clrName": "JsonEachValueColumnName",
1243
- "metadataToken": 67109103,
1244
- "normalizedSignature": "JsonEachValueColumnName|System.String|static=true|const=true",
1245
- "isStatic": true,
1246
- "isReadOnly": false,
1247
- "isLiteral": true,
1626
+ "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryableMethodTranslatingExpressionVisitor::TranslateAny(Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression,System.Linq.Expressions.LambdaExpression):Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression",
1627
+ "clrName": "TranslateAny",
1628
+ "metadataToken": 100663974,
1629
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression,System.Linq.Expressions.LambdaExpression):Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression",
1630
+ "normalizedSignature": "TranslateAny|(Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression,System.Linq.Expressions.LambdaExpression):Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression|static=false",
1631
+ "emitScope": "ClassSurface",
1632
+ "provenance": "Original",
1633
+ "arity": 0,
1634
+ "parameterCount": 2,
1635
+ "isStatic": false,
1636
+ "isAbstract": false,
1637
+ "isVirtual": true,
1638
+ "isOverride": true,
1639
+ "isSealed": false,
1640
+ "visibility": "Protected",
1248
1641
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryableMethodTranslatingExpressionVisitor",
1249
- "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
1250
- }
1251
- ],
1252
- "events": [],
1253
- "constructors": [
1642
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
1643
+ "isExtensionMethod": false
1644
+ },
1254
1645
  {
1255
- "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryableMethodTranslatingExpressionVisitor::.ctor(Microsoft.EntityFrameworkCore.Query.QueryableMethodTranslatingExpressionVisitorDependencies,Microsoft.EntityFrameworkCore.Query.RelationalQueryableMethodTranslatingExpressionVisitorDependencies,Microsoft.EntityFrameworkCore.Query.RelationalQueryCompilationContext):void",
1256
- "metadataToken": 100663971,
1257
- "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.QueryableMethodTranslatingExpressionVisitorDependencies,Microsoft.EntityFrameworkCore.Query.RelationalQueryableMethodTranslatingExpressionVisitorDependencies,Microsoft.EntityFrameworkCore.Query.RelationalQueryCompilationContext):void",
1258
- "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.QueryableMethodTranslatingExpressionVisitorDependencies,Microsoft.EntityFrameworkCore.Query.RelationalQueryableMethodTranslatingExpressionVisitorDependencies,Microsoft.EntityFrameworkCore.Query.RelationalQueryCompilationContext):void|static=false",
1259
- "isStatic": false,
1646
+ "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryableMethodTranslatingExpressionVisitor::TranslateOrderBy(Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression,System.Linq.Expressions.LambdaExpression,System.Boolean):Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression",
1647
+ "clrName": "TranslateOrderBy",
1648
+ "metadataToken": 100663975,
1649
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression,System.Linq.Expressions.LambdaExpression,System.Boolean):Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression",
1650
+ "normalizedSignature": "TranslateOrderBy|(Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression,System.Linq.Expressions.LambdaExpression,System.Boolean):Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression|static=false",
1651
+ "emitScope": "ClassSurface",
1652
+ "provenance": "Original",
1653
+ "arity": 0,
1260
1654
  "parameterCount": 3,
1655
+ "isStatic": false,
1656
+ "isAbstract": false,
1657
+ "isVirtual": true,
1658
+ "isOverride": true,
1659
+ "isSealed": false,
1660
+ "visibility": "Protected",
1261
1661
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryableMethodTranslatingExpressionVisitor",
1262
- "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
1263
- }
1264
- ]
1265
- },
1266
- {
1267
- "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryableMethodTranslatingExpressionVisitorFactory",
1268
- "clrName": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryableMethodTranslatingExpressionVisitorFactory",
1269
- "assemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
1270
- "metadataToken": 0,
1271
- "kind": "Class",
1272
- "accessibility": "Public",
1273
- "isAbstract": false,
1274
- "isSealed": false,
1275
- "isStatic": false,
1276
- "arity": 0,
1277
- "methods": [
1662
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
1663
+ "isExtensionMethod": false
1664
+ },
1278
1665
  {
1279
- "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryableMethodTranslatingExpressionVisitorFactory::Create(Microsoft.EntityFrameworkCore.Query.QueryCompilationContext):Microsoft.EntityFrameworkCore.Query.QueryableMethodTranslatingExpressionVisitor",
1280
- "clrName": "Create",
1281
- "metadataToken": 100663991,
1282
- "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.QueryCompilationContext):Microsoft.EntityFrameworkCore.Query.QueryableMethodTranslatingExpressionVisitor",
1283
- "normalizedSignature": "Create|(Microsoft.EntityFrameworkCore.Query.QueryCompilationContext):Microsoft.EntityFrameworkCore.Query.QueryableMethodTranslatingExpressionVisitor|static=false",
1666
+ "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryableMethodTranslatingExpressionVisitor::TranslateThenBy(Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression,System.Linq.Expressions.LambdaExpression,System.Boolean):Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression",
1667
+ "clrName": "TranslateThenBy",
1668
+ "metadataToken": 100663976,
1669
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression,System.Linq.Expressions.LambdaExpression,System.Boolean):Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression",
1670
+ "normalizedSignature": "TranslateThenBy|(Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression,System.Linq.Expressions.LambdaExpression,System.Boolean):Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression|static=false",
1284
1671
  "emitScope": "ClassSurface",
1285
1672
  "provenance": "Original",
1286
1673
  "arity": 0,
1287
- "parameterCount": 1,
1674
+ "parameterCount": 3,
1288
1675
  "isStatic": false,
1289
1676
  "isAbstract": false,
1290
1677
  "isVirtual": true,
1291
- "isOverride": false,
1678
+ "isOverride": true,
1292
1679
  "isSealed": false,
1293
- "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryableMethodTranslatingExpressionVisitorFactory",
1680
+ "visibility": "Protected",
1681
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryableMethodTranslatingExpressionVisitor",
1294
1682
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
1295
1683
  "isExtensionMethod": false
1296
- }
1297
- ],
1684
+ },
1685
+ {
1686
+ "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryableMethodTranslatingExpressionVisitor::TranslateCount(Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression,System.Linq.Expressions.LambdaExpression):Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression",
1687
+ "clrName": "TranslateCount",
1688
+ "metadataToken": 100663977,
1689
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression,System.Linq.Expressions.LambdaExpression):Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression",
1690
+ "normalizedSignature": "TranslateCount|(Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression,System.Linq.Expressions.LambdaExpression):Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression|static=false",
1691
+ "emitScope": "ClassSurface",
1692
+ "provenance": "Original",
1693
+ "arity": 0,
1694
+ "parameterCount": 2,
1695
+ "isStatic": false,
1696
+ "isAbstract": false,
1697
+ "isVirtual": true,
1698
+ "isOverride": true,
1699
+ "isSealed": false,
1700
+ "visibility": "Protected",
1701
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryableMethodTranslatingExpressionVisitor",
1702
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
1703
+ "isExtensionMethod": false
1704
+ },
1705
+ {
1706
+ "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryableMethodTranslatingExpressionVisitor::TranslatePrimitiveCollection(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,Microsoft.EntityFrameworkCore.Metadata.IProperty,System.String):Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression",
1707
+ "clrName": "TranslatePrimitiveCollection",
1708
+ "metadataToken": 100663978,
1709
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,Microsoft.EntityFrameworkCore.Metadata.IProperty,System.String):Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression",
1710
+ "normalizedSignature": "TranslatePrimitiveCollection|(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,Microsoft.EntityFrameworkCore.Metadata.IProperty,System.String):Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression|static=false",
1711
+ "emitScope": "ClassSurface",
1712
+ "provenance": "Original",
1713
+ "arity": 0,
1714
+ "parameterCount": 3,
1715
+ "isStatic": false,
1716
+ "isAbstract": false,
1717
+ "isVirtual": true,
1718
+ "isOverride": true,
1719
+ "isSealed": false,
1720
+ "visibility": "Protected",
1721
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryableMethodTranslatingExpressionVisitor",
1722
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
1723
+ "isExtensionMethod": false
1724
+ },
1725
+ {
1726
+ "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryableMethodTranslatingExpressionVisitor::TransformJsonQueryToTable(Microsoft.EntityFrameworkCore.Query.JsonQueryExpression):Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression",
1727
+ "clrName": "TransformJsonQueryToTable",
1728
+ "metadataToken": 100663979,
1729
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.JsonQueryExpression):Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression",
1730
+ "normalizedSignature": "TransformJsonQueryToTable|(Microsoft.EntityFrameworkCore.Query.JsonQueryExpression):Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression|static=false",
1731
+ "emitScope": "ClassSurface",
1732
+ "provenance": "Original",
1733
+ "arity": 0,
1734
+ "parameterCount": 1,
1735
+ "isStatic": false,
1736
+ "isAbstract": false,
1737
+ "isVirtual": true,
1738
+ "isOverride": true,
1739
+ "isSealed": false,
1740
+ "visibility": "Protected",
1741
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryableMethodTranslatingExpressionVisitor",
1742
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
1743
+ "isExtensionMethod": false
1744
+ },
1745
+ {
1746
+ "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryableMethodTranslatingExpressionVisitor::TranslateElementAtOrDefault(Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression,System.Linq.Expressions.Expression,System.Boolean):Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression",
1747
+ "clrName": "TranslateElementAtOrDefault",
1748
+ "metadataToken": 100663980,
1749
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression,System.Linq.Expressions.Expression,System.Boolean):Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression",
1750
+ "normalizedSignature": "TranslateElementAtOrDefault|(Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression,System.Linq.Expressions.Expression,System.Boolean):Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression|static=false",
1751
+ "emitScope": "ClassSurface",
1752
+ "provenance": "Original",
1753
+ "arity": 0,
1754
+ "parameterCount": 3,
1755
+ "isStatic": false,
1756
+ "isAbstract": false,
1757
+ "isVirtual": true,
1758
+ "isOverride": true,
1759
+ "isSealed": false,
1760
+ "visibility": "Protected",
1761
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryableMethodTranslatingExpressionVisitor",
1762
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
1763
+ "isExtensionMethod": false
1764
+ },
1765
+ {
1766
+ "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryableMethodTranslatingExpressionVisitor::TrySerializeScalarToJson(Microsoft.EntityFrameworkCore.Query.SqlExpressions.JsonScalarExpression,Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression\u0026):System.Boolean",
1767
+ "clrName": "TrySerializeScalarToJson",
1768
+ "metadataToken": 100663981,
1769
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.SqlExpressions.JsonScalarExpression,Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression\u0026):System.Boolean",
1770
+ "normalizedSignature": "TrySerializeScalarToJson|(Microsoft.EntityFrameworkCore.Query.SqlExpressions.JsonScalarExpression,Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression\u0026):System.Boolean|static=false",
1771
+ "emitScope": "ClassSurface",
1772
+ "provenance": "Original",
1773
+ "arity": 0,
1774
+ "parameterCount": 3,
1775
+ "isStatic": false,
1776
+ "isAbstract": false,
1777
+ "isVirtual": true,
1778
+ "isOverride": true,
1779
+ "isSealed": false,
1780
+ "visibility": "Protected",
1781
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryableMethodTranslatingExpressionVisitor",
1782
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
1783
+ "isExtensionMethod": false,
1784
+ "parameterModifiers": [
1785
+ {
1786
+ "index": 2,
1787
+ "modifier": "out"
1788
+ }
1789
+ ]
1790
+ },
1791
+ {
1792
+ "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryableMethodTranslatingExpressionVisitor::GenerateJsonPartialUpdateSetter(System.Linq.Expressions.Expression,Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression\u0026):Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression",
1793
+ "clrName": "GenerateJsonPartialUpdateSetter",
1794
+ "metadataToken": 100663982,
1795
+ "canonicalSignature": "(System.Linq.Expressions.Expression,Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression\u0026):Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression",
1796
+ "normalizedSignature": "GenerateJsonPartialUpdateSetter|(System.Linq.Expressions.Expression,Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression\u0026):Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression|static=false",
1797
+ "emitScope": "ClassSurface",
1798
+ "provenance": "Original",
1799
+ "arity": 0,
1800
+ "parameterCount": 3,
1801
+ "isStatic": false,
1802
+ "isAbstract": false,
1803
+ "isVirtual": true,
1804
+ "isOverride": true,
1805
+ "isSealed": false,
1806
+ "visibility": "Protected",
1807
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryableMethodTranslatingExpressionVisitor",
1808
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
1809
+ "isExtensionMethod": false,
1810
+ "parameterModifiers": [
1811
+ {
1812
+ "index": 2,
1813
+ "modifier": "ref"
1814
+ }
1815
+ ]
1816
+ },
1817
+ {
1818
+ "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryableMethodTranslatingExpressionVisitor::IsNaturallyOrdered(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression):System.Boolean",
1819
+ "clrName": "IsNaturallyOrdered",
1820
+ "metadataToken": 100663983,
1821
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression):System.Boolean",
1822
+ "normalizedSignature": "IsNaturallyOrdered|(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression):System.Boolean|static=false",
1823
+ "emitScope": "ClassSurface",
1824
+ "provenance": "Original",
1825
+ "arity": 0,
1826
+ "parameterCount": 1,
1827
+ "isStatic": false,
1828
+ "isAbstract": false,
1829
+ "isVirtual": true,
1830
+ "isOverride": true,
1831
+ "isSealed": false,
1832
+ "visibility": "Protected",
1833
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryableMethodTranslatingExpressionVisitor",
1834
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
1835
+ "isExtensionMethod": false
1836
+ },
1837
+ {
1838
+ "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryableMethodTranslatingExpressionVisitor::ApplyJsonSqlConversion(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteSqlExpressionFactory,Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping,System.Boolean):Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression",
1839
+ "clrName": "ApplyJsonSqlConversion",
1840
+ "metadataToken": 100663985,
1841
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteSqlExpressionFactory,Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping,System.Boolean):Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression",
1842
+ "normalizedSignature": "ApplyJsonSqlConversion|(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteSqlExpressionFactory,Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping,System.Boolean):Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression|static=true",
1843
+ "emitScope": "ClassSurface",
1844
+ "provenance": "Original",
1845
+ "arity": 0,
1846
+ "parameterCount": 4,
1847
+ "isStatic": true,
1848
+ "isAbstract": false,
1849
+ "isVirtual": false,
1850
+ "isOverride": false,
1851
+ "isSealed": false,
1852
+ "visibility": "Public",
1853
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryableMethodTranslatingExpressionVisitor",
1854
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
1855
+ "isExtensionMethod": false
1856
+ }
1857
+ ],
1298
1858
  "properties": [],
1859
+ "fields": [
1860
+ {
1861
+ "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryableMethodTranslatingExpressionVisitor::JsonEachKeyColumnNameSystem.String",
1862
+ "clrName": "JsonEachKeyColumnName",
1863
+ "metadataToken": 67109102,
1864
+ "normalizedSignature": "JsonEachKeyColumnName|System.String|static=true|const=true",
1865
+ "isStatic": true,
1866
+ "isReadOnly": false,
1867
+ "isLiteral": true,
1868
+ "visibility": "Public",
1869
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryableMethodTranslatingExpressionVisitor",
1870
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
1871
+ },
1872
+ {
1873
+ "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryableMethodTranslatingExpressionVisitor::JsonEachValueColumnNameSystem.String",
1874
+ "clrName": "JsonEachValueColumnName",
1875
+ "metadataToken": 67109103,
1876
+ "normalizedSignature": "JsonEachValueColumnName|System.String|static=true|const=true",
1877
+ "isStatic": true,
1878
+ "isReadOnly": false,
1879
+ "isLiteral": true,
1880
+ "visibility": "Public",
1881
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryableMethodTranslatingExpressionVisitor",
1882
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
1883
+ }
1884
+ ],
1885
+ "events": [],
1886
+ "constructors": [
1887
+ {
1888
+ "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryableMethodTranslatingExpressionVisitor::.ctor(Microsoft.EntityFrameworkCore.Query.QueryableMethodTranslatingExpressionVisitorDependencies,Microsoft.EntityFrameworkCore.Query.RelationalQueryableMethodTranslatingExpressionVisitorDependencies,Microsoft.EntityFrameworkCore.Query.RelationalQueryCompilationContext):void",
1889
+ "metadataToken": 100663971,
1890
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.QueryableMethodTranslatingExpressionVisitorDependencies,Microsoft.EntityFrameworkCore.Query.RelationalQueryableMethodTranslatingExpressionVisitorDependencies,Microsoft.EntityFrameworkCore.Query.RelationalQueryCompilationContext):void",
1891
+ "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.QueryableMethodTranslatingExpressionVisitorDependencies,Microsoft.EntityFrameworkCore.Query.RelationalQueryableMethodTranslatingExpressionVisitorDependencies,Microsoft.EntityFrameworkCore.Query.RelationalQueryCompilationContext):void|static=false",
1892
+ "isStatic": false,
1893
+ "parameterCount": 3,
1894
+ "visibility": "Public",
1895
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryableMethodTranslatingExpressionVisitor",
1896
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
1897
+ },
1898
+ {
1899
+ "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryableMethodTranslatingExpressionVisitor::.ctor(Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryableMethodTranslatingExpressionVisitor):void",
1900
+ "metadataToken": 100663972,
1901
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryableMethodTranslatingExpressionVisitor):void",
1902
+ "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryableMethodTranslatingExpressionVisitor):void|static=false",
1903
+ "isStatic": false,
1904
+ "parameterCount": 1,
1905
+ "visibility": "Protected",
1906
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryableMethodTranslatingExpressionVisitor",
1907
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
1908
+ }
1909
+ ]
1910
+ },
1911
+ {
1912
+ "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryableMethodTranslatingExpressionVisitorFactory",
1913
+ "clrName": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryableMethodTranslatingExpressionVisitorFactory",
1914
+ "assemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
1915
+ "metadataToken": 0,
1916
+ "kind": "Class",
1917
+ "accessibility": "Public",
1918
+ "isAbstract": false,
1919
+ "isSealed": false,
1920
+ "isStatic": false,
1921
+ "arity": 0,
1922
+ "baseType": {
1923
+ "stableId": "System.Private.CoreLib:System.Object",
1924
+ "clrName": "System.Object"
1925
+ },
1926
+ "interfaces": [
1927
+ {
1928
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Query.IQueryableMethodTranslatingExpressionVisitorFactory",
1929
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IQueryableMethodTranslatingExpressionVisitorFactory"
1930
+ }
1931
+ ],
1932
+ "methods": [
1933
+ {
1934
+ "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryableMethodTranslatingExpressionVisitorFactory::Create(Microsoft.EntityFrameworkCore.Query.QueryCompilationContext):Microsoft.EntityFrameworkCore.Query.QueryableMethodTranslatingExpressionVisitor",
1935
+ "clrName": "Create",
1936
+ "metadataToken": 100663991,
1937
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.QueryCompilationContext):Microsoft.EntityFrameworkCore.Query.QueryableMethodTranslatingExpressionVisitor",
1938
+ "normalizedSignature": "Create|(Microsoft.EntityFrameworkCore.Query.QueryCompilationContext):Microsoft.EntityFrameworkCore.Query.QueryableMethodTranslatingExpressionVisitor|static=false",
1939
+ "emitScope": "ClassSurface",
1940
+ "provenance": "Original",
1941
+ "arity": 0,
1942
+ "parameterCount": 1,
1943
+ "isStatic": false,
1944
+ "isAbstract": false,
1945
+ "isVirtual": true,
1946
+ "isOverride": false,
1947
+ "isSealed": false,
1948
+ "visibility": "Public",
1949
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryableMethodTranslatingExpressionVisitorFactory",
1950
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
1951
+ "isExtensionMethod": false
1952
+ }
1953
+ ],
1954
+ "properties": [
1955
+ {
1956
+ "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryableMethodTranslatingExpressionVisitorFactory::Dependencies:Microsoft.EntityFrameworkCore.Query.QueryableMethodTranslatingExpressionVisitorDependencies",
1957
+ "clrName": "Dependencies",
1958
+ "metadataToken": 385876111,
1959
+ "canonicalSignature": ":Microsoft.EntityFrameworkCore.Query.QueryableMethodTranslatingExpressionVisitorDependencies",
1960
+ "normalizedSignature": "Dependencies|:Microsoft.EntityFrameworkCore.Query.QueryableMethodTranslatingExpressionVisitorDependencies|static=false|accessor=get",
1961
+ "emitScope": "ClassSurface",
1962
+ "provenance": "Original",
1963
+ "isIndexer": false,
1964
+ "hasGetter": true,
1965
+ "hasSetter": false,
1966
+ "isStatic": false,
1967
+ "isAbstract": false,
1968
+ "isVirtual": true,
1969
+ "isOverride": false,
1970
+ "visibility": "Protected",
1971
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryableMethodTranslatingExpressionVisitorFactory",
1972
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
1973
+ },
1974
+ {
1975
+ "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryableMethodTranslatingExpressionVisitorFactory::RelationalDependencies:Microsoft.EntityFrameworkCore.Query.RelationalQueryableMethodTranslatingExpressionVisitorDependencies",
1976
+ "clrName": "RelationalDependencies",
1977
+ "metadataToken": 385876112,
1978
+ "canonicalSignature": ":Microsoft.EntityFrameworkCore.Query.RelationalQueryableMethodTranslatingExpressionVisitorDependencies",
1979
+ "normalizedSignature": "RelationalDependencies|:Microsoft.EntityFrameworkCore.Query.RelationalQueryableMethodTranslatingExpressionVisitorDependencies|static=false|accessor=get",
1980
+ "emitScope": "ClassSurface",
1981
+ "provenance": "Original",
1982
+ "isIndexer": false,
1983
+ "hasGetter": true,
1984
+ "hasSetter": false,
1985
+ "isStatic": false,
1986
+ "isAbstract": false,
1987
+ "isVirtual": true,
1988
+ "isOverride": false,
1989
+ "visibility": "Protected",
1990
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryableMethodTranslatingExpressionVisitorFactory",
1991
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
1992
+ }
1993
+ ],
1299
1994
  "fields": [],
1300
1995
  "events": [],
1301
1996
  "constructors": [
@@ -1306,6 +2001,7 @@
1306
2001
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.QueryableMethodTranslatingExpressionVisitorDependencies,Microsoft.EntityFrameworkCore.Query.RelationalQueryableMethodTranslatingExpressionVisitorDependencies):void|static=false",
1307
2002
  "isStatic": false,
1308
2003
  "parameterCount": 2,
2004
+ "visibility": "Public",
1309
2005
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryableMethodTranslatingExpressionVisitorFactory",
1310
2006
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
1311
2007
  }
@@ -1322,6 +2018,10 @@
1322
2018
  "isSealed": false,
1323
2019
  "isStatic": false,
1324
2020
  "arity": 0,
2021
+ "baseType": {
2022
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.RelationalQueryCompilationContext",
2023
+ "clrName": "Microsoft.EntityFrameworkCore.Query.RelationalQueryCompilationContext"
2024
+ },
1325
2025
  "methods": [],
1326
2026
  "properties": [
1327
2027
  {
@@ -1339,6 +2039,7 @@
1339
2039
  "isAbstract": false,
1340
2040
  "isVirtual": true,
1341
2041
  "isOverride": true,
2042
+ "visibility": "Public",
1342
2043
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryCompilationContext",
1343
2044
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
1344
2045
  }
@@ -1353,6 +2054,7 @@
1353
2054
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.QueryCompilationContextDependencies,Microsoft.EntityFrameworkCore.Query.RelationalQueryCompilationContextDependencies,System.Boolean):void|static=false",
1354
2055
  "isStatic": false,
1355
2056
  "parameterCount": 3,
2057
+ "visibility": "Public",
1356
2058
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryCompilationContext",
1357
2059
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
1358
2060
  },
@@ -1363,6 +2065,7 @@
1363
2065
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.QueryCompilationContextDependencies,Microsoft.EntityFrameworkCore.Query.RelationalQueryCompilationContextDependencies,System.Boolean,System.Boolean):void|static=false",
1364
2066
  "isStatic": false,
1365
2067
  "parameterCount": 4,
2068
+ "visibility": "Public",
1366
2069
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryCompilationContext",
1367
2070
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
1368
2071
  }
@@ -1379,6 +2082,16 @@
1379
2082
  "isSealed": false,
1380
2083
  "isStatic": false,
1381
2084
  "arity": 0,
2085
+ "baseType": {
2086
+ "stableId": "System.Private.CoreLib:System.Object",
2087
+ "clrName": "System.Object"
2088
+ },
2089
+ "interfaces": [
2090
+ {
2091
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Query.IQueryCompilationContextFactory",
2092
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IQueryCompilationContextFactory"
2093
+ }
2094
+ ],
1382
2095
  "methods": [
1383
2096
  {
1384
2097
  "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryCompilationContextFactory::Create(System.Boolean):Microsoft.EntityFrameworkCore.Query.QueryCompilationContext",
@@ -1395,6 +2108,7 @@
1395
2108
  "isVirtual": true,
1396
2109
  "isOverride": false,
1397
2110
  "isSealed": true,
2111
+ "visibility": "Public",
1398
2112
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryCompilationContextFactory",
1399
2113
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
1400
2114
  "isExtensionMethod": false
@@ -1414,12 +2128,52 @@
1414
2128
  "isVirtual": true,
1415
2129
  "isOverride": false,
1416
2130
  "isSealed": false,
2131
+ "visibility": "Public",
1417
2132
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryCompilationContextFactory",
1418
2133
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
1419
2134
  "isExtensionMethod": false
1420
2135
  }
1421
2136
  ],
1422
- "properties": [],
2137
+ "properties": [
2138
+ {
2139
+ "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryCompilationContextFactory::Dependencies:Microsoft.EntityFrameworkCore.Query.QueryCompilationContextDependencies",
2140
+ "clrName": "Dependencies",
2141
+ "metadataToken": 385876114,
2142
+ "canonicalSignature": ":Microsoft.EntityFrameworkCore.Query.QueryCompilationContextDependencies",
2143
+ "normalizedSignature": "Dependencies|:Microsoft.EntityFrameworkCore.Query.QueryCompilationContextDependencies|static=false|accessor=get",
2144
+ "emitScope": "ClassSurface",
2145
+ "provenance": "Original",
2146
+ "isIndexer": false,
2147
+ "hasGetter": true,
2148
+ "hasSetter": false,
2149
+ "isStatic": false,
2150
+ "isAbstract": false,
2151
+ "isVirtual": true,
2152
+ "isOverride": false,
2153
+ "visibility": "Protected",
2154
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryCompilationContextFactory",
2155
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
2156
+ },
2157
+ {
2158
+ "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryCompilationContextFactory::RelationalDependencies:Microsoft.EntityFrameworkCore.Query.RelationalQueryCompilationContextDependencies",
2159
+ "clrName": "RelationalDependencies",
2160
+ "metadataToken": 385876115,
2161
+ "canonicalSignature": ":Microsoft.EntityFrameworkCore.Query.RelationalQueryCompilationContextDependencies",
2162
+ "normalizedSignature": "RelationalDependencies|:Microsoft.EntityFrameworkCore.Query.RelationalQueryCompilationContextDependencies|static=false|accessor=get",
2163
+ "emitScope": "ClassSurface",
2164
+ "provenance": "Original",
2165
+ "isIndexer": false,
2166
+ "hasGetter": true,
2167
+ "hasSetter": false,
2168
+ "isStatic": false,
2169
+ "isAbstract": false,
2170
+ "isVirtual": true,
2171
+ "isOverride": false,
2172
+ "visibility": "Protected",
2173
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryCompilationContextFactory",
2174
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
2175
+ }
2176
+ ],
1423
2177
  "fields": [],
1424
2178
  "events": [],
1425
2179
  "constructors": [
@@ -1430,6 +2184,7 @@
1430
2184
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.QueryCompilationContextDependencies,Microsoft.EntityFrameworkCore.Query.RelationalQueryCompilationContextDependencies):void|static=false",
1431
2185
  "isStatic": false,
1432
2186
  "parameterCount": 2,
2187
+ "visibility": "Public",
1433
2188
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryCompilationContextFactory",
1434
2189
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
1435
2190
  }
@@ -1446,7 +2201,202 @@
1446
2201
  "isSealed": false,
1447
2202
  "isStatic": false,
1448
2203
  "arity": 0,
1449
- "methods": [],
2204
+ "baseType": {
2205
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.QuerySqlGenerator",
2206
+ "clrName": "Microsoft.EntityFrameworkCore.Query.QuerySqlGenerator"
2207
+ },
2208
+ "methods": [
2209
+ {
2210
+ "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQuerySqlGenerator::VisitExtension(System.Linq.Expressions.Expression):System.Linq.Expressions.Expression",
2211
+ "clrName": "VisitExtension",
2212
+ "metadataToken": 100664001,
2213
+ "canonicalSignature": "(System.Linq.Expressions.Expression):System.Linq.Expressions.Expression",
2214
+ "normalizedSignature": "VisitExtension|(System.Linq.Expressions.Expression):System.Linq.Expressions.Expression|static=false",
2215
+ "emitScope": "ClassSurface",
2216
+ "provenance": "Original",
2217
+ "arity": 0,
2218
+ "parameterCount": 1,
2219
+ "isStatic": false,
2220
+ "isAbstract": false,
2221
+ "isVirtual": true,
2222
+ "isOverride": true,
2223
+ "isSealed": false,
2224
+ "visibility": "Protected",
2225
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQuerySqlGenerator",
2226
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
2227
+ "isExtensionMethod": false
2228
+ },
2229
+ {
2230
+ "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQuerySqlGenerator::GetOperator(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlBinaryExpression):System.String",
2231
+ "clrName": "GetOperator",
2232
+ "metadataToken": 100664002,
2233
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlBinaryExpression):System.String",
2234
+ "normalizedSignature": "GetOperator|(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlBinaryExpression):System.String|static=false",
2235
+ "emitScope": "ClassSurface",
2236
+ "provenance": "Original",
2237
+ "arity": 0,
2238
+ "parameterCount": 1,
2239
+ "isStatic": false,
2240
+ "isAbstract": false,
2241
+ "isVirtual": true,
2242
+ "isOverride": true,
2243
+ "isSealed": false,
2244
+ "visibility": "Protected",
2245
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQuerySqlGenerator",
2246
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
2247
+ "isExtensionMethod": false
2248
+ },
2249
+ {
2250
+ "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQuerySqlGenerator::GenerateLimitOffset(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression):System.Void",
2251
+ "clrName": "GenerateLimitOffset",
2252
+ "metadataToken": 100664003,
2253
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression):System.Void",
2254
+ "normalizedSignature": "GenerateLimitOffset|(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression):System.Void|static=false",
2255
+ "emitScope": "ClassSurface",
2256
+ "provenance": "Original",
2257
+ "arity": 0,
2258
+ "parameterCount": 1,
2259
+ "isStatic": false,
2260
+ "isAbstract": false,
2261
+ "isVirtual": true,
2262
+ "isOverride": true,
2263
+ "isSealed": false,
2264
+ "visibility": "Protected",
2265
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQuerySqlGenerator",
2266
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
2267
+ "isExtensionMethod": false
2268
+ },
2269
+ {
2270
+ "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQuerySqlGenerator::GenerateSetOperationOperand(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SetOperationBase,Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression):System.Void",
2271
+ "clrName": "GenerateSetOperationOperand",
2272
+ "metadataToken": 100664004,
2273
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SetOperationBase,Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression):System.Void",
2274
+ "normalizedSignature": "GenerateSetOperationOperand|(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SetOperationBase,Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression):System.Void|static=false",
2275
+ "emitScope": "ClassSurface",
2276
+ "provenance": "Original",
2277
+ "arity": 0,
2278
+ "parameterCount": 2,
2279
+ "isStatic": false,
2280
+ "isAbstract": false,
2281
+ "isVirtual": true,
2282
+ "isOverride": true,
2283
+ "isSealed": false,
2284
+ "visibility": "Protected",
2285
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQuerySqlGenerator",
2286
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
2287
+ "isExtensionMethod": false
2288
+ },
2289
+ {
2290
+ "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQuerySqlGenerator::GenerateJsonEach(Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.JsonEachExpression):System.Void",
2291
+ "clrName": "GenerateJsonEach",
2292
+ "metadataToken": 100664007,
2293
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.JsonEachExpression):System.Void",
2294
+ "normalizedSignature": "GenerateJsonEach|(Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.JsonEachExpression):System.Void|static=false",
2295
+ "emitScope": "ClassSurface",
2296
+ "provenance": "Original",
2297
+ "arity": 0,
2298
+ "parameterCount": 1,
2299
+ "isStatic": false,
2300
+ "isAbstract": false,
2301
+ "isVirtual": true,
2302
+ "isOverride": false,
2303
+ "isSealed": false,
2304
+ "visibility": "Protected",
2305
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQuerySqlGenerator",
2306
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
2307
+ "isExtensionMethod": false
2308
+ },
2309
+ {
2310
+ "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQuerySqlGenerator::VisitSqlConstant(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlConstantExpression):System.Linq.Expressions.Expression",
2311
+ "clrName": "VisitSqlConstant",
2312
+ "metadataToken": 100664009,
2313
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlConstantExpression):System.Linq.Expressions.Expression",
2314
+ "normalizedSignature": "VisitSqlConstant|(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlConstantExpression):System.Linq.Expressions.Expression|static=false",
2315
+ "emitScope": "ClassSurface",
2316
+ "provenance": "Original",
2317
+ "arity": 0,
2318
+ "parameterCount": 1,
2319
+ "isStatic": false,
2320
+ "isAbstract": false,
2321
+ "isVirtual": true,
2322
+ "isOverride": true,
2323
+ "isSealed": false,
2324
+ "visibility": "Protected",
2325
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQuerySqlGenerator",
2326
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
2327
+ "isExtensionMethod": false
2328
+ },
2329
+ {
2330
+ "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQuerySqlGenerator::VisitJsonScalar(Microsoft.EntityFrameworkCore.Query.SqlExpressions.JsonScalarExpression):System.Linq.Expressions.Expression",
2331
+ "clrName": "VisitJsonScalar",
2332
+ "metadataToken": 100664010,
2333
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.SqlExpressions.JsonScalarExpression):System.Linq.Expressions.Expression",
2334
+ "normalizedSignature": "VisitJsonScalar|(Microsoft.EntityFrameworkCore.Query.SqlExpressions.JsonScalarExpression):System.Linq.Expressions.Expression|static=false",
2335
+ "emitScope": "ClassSurface",
2336
+ "provenance": "Original",
2337
+ "arity": 0,
2338
+ "parameterCount": 1,
2339
+ "isStatic": false,
2340
+ "isAbstract": false,
2341
+ "isVirtual": true,
2342
+ "isOverride": true,
2343
+ "isSealed": false,
2344
+ "visibility": "Protected",
2345
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQuerySqlGenerator",
2346
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
2347
+ "isExtensionMethod": false
2348
+ },
2349
+ {
2350
+ "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQuerySqlGenerator::VisitSqlUnary(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlUnaryExpression):System.Linq.Expressions.Expression",
2351
+ "clrName": "VisitSqlUnary",
2352
+ "metadataToken": 100664011,
2353
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlUnaryExpression):System.Linq.Expressions.Expression",
2354
+ "normalizedSignature": "VisitSqlUnary|(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlUnaryExpression):System.Linq.Expressions.Expression|static=false",
2355
+ "emitScope": "ClassSurface",
2356
+ "provenance": "Original",
2357
+ "arity": 0,
2358
+ "parameterCount": 1,
2359
+ "isStatic": false,
2360
+ "isAbstract": false,
2361
+ "isVirtual": true,
2362
+ "isOverride": true,
2363
+ "isSealed": false,
2364
+ "visibility": "Protected",
2365
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQuerySqlGenerator",
2366
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
2367
+ "isExtensionMethod": false
2368
+ },
2369
+ {
2370
+ "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQuerySqlGenerator::TryGetOperatorInfo(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,System.Int32\u0026,System.Boolean\u0026):System.Boolean",
2371
+ "clrName": "TryGetOperatorInfo",
2372
+ "metadataToken": 100664012,
2373
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,System.Int32\u0026,System.Boolean\u0026):System.Boolean",
2374
+ "normalizedSignature": "TryGetOperatorInfo|(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,System.Int32\u0026,System.Boolean\u0026):System.Boolean|static=false",
2375
+ "emitScope": "ClassSurface",
2376
+ "provenance": "Original",
2377
+ "arity": 0,
2378
+ "parameterCount": 3,
2379
+ "isStatic": false,
2380
+ "isAbstract": false,
2381
+ "isVirtual": true,
2382
+ "isOverride": true,
2383
+ "isSealed": false,
2384
+ "visibility": "Protected",
2385
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQuerySqlGenerator",
2386
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
2387
+ "isExtensionMethod": false,
2388
+ "parameterModifiers": [
2389
+ {
2390
+ "index": 1,
2391
+ "modifier": "out"
2392
+ },
2393
+ {
2394
+ "index": 2,
2395
+ "modifier": "out"
2396
+ }
2397
+ ]
2398
+ }
2399
+ ],
1450
2400
  "properties": [],
1451
2401
  "fields": [],
1452
2402
  "events": [],
@@ -1458,6 +2408,7 @@
1458
2408
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.QuerySqlGeneratorDependencies):void|static=false",
1459
2409
  "isStatic": false,
1460
2410
  "parameterCount": 1,
2411
+ "visibility": "Public",
1461
2412
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQuerySqlGenerator",
1462
2413
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
1463
2414
  }
@@ -1474,6 +2425,16 @@
1474
2425
  "isSealed": false,
1475
2426
  "isStatic": false,
1476
2427
  "arity": 0,
2428
+ "baseType": {
2429
+ "stableId": "System.Private.CoreLib:System.Object",
2430
+ "clrName": "System.Object"
2431
+ },
2432
+ "interfaces": [
2433
+ {
2434
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.IQuerySqlGeneratorFactory",
2435
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IQuerySqlGeneratorFactory"
2436
+ }
2437
+ ],
1477
2438
  "methods": [
1478
2439
  {
1479
2440
  "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQuerySqlGeneratorFactory::Create():Microsoft.EntityFrameworkCore.Query.QuerySqlGenerator",
@@ -1483,19 +2444,40 @@
1483
2444
  "normalizedSignature": "Create|():Microsoft.EntityFrameworkCore.Query.QuerySqlGenerator|static=false",
1484
2445
  "emitScope": "ClassSurface",
1485
2446
  "provenance": "Original",
1486
- "arity": 0,
1487
- "parameterCount": 0,
2447
+ "arity": 0,
2448
+ "parameterCount": 0,
2449
+ "isStatic": false,
2450
+ "isAbstract": false,
2451
+ "isVirtual": true,
2452
+ "isOverride": false,
2453
+ "isSealed": false,
2454
+ "visibility": "Public",
2455
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQuerySqlGeneratorFactory",
2456
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
2457
+ "isExtensionMethod": false
2458
+ }
2459
+ ],
2460
+ "properties": [
2461
+ {
2462
+ "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQuerySqlGeneratorFactory::Dependencies:Microsoft.EntityFrameworkCore.Query.QuerySqlGeneratorDependencies",
2463
+ "clrName": "Dependencies",
2464
+ "metadataToken": 385876116,
2465
+ "canonicalSignature": ":Microsoft.EntityFrameworkCore.Query.QuerySqlGeneratorDependencies",
2466
+ "normalizedSignature": "Dependencies|:Microsoft.EntityFrameworkCore.Query.QuerySqlGeneratorDependencies|static=false|accessor=get",
2467
+ "emitScope": "ClassSurface",
2468
+ "provenance": "Original",
2469
+ "isIndexer": false,
2470
+ "hasGetter": true,
2471
+ "hasSetter": false,
1488
2472
  "isStatic": false,
1489
2473
  "isAbstract": false,
1490
2474
  "isVirtual": true,
1491
2475
  "isOverride": false,
1492
- "isSealed": false,
2476
+ "visibility": "Protected",
1493
2477
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQuerySqlGeneratorFactory",
1494
- "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
1495
- "isExtensionMethod": false
2478
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
1496
2479
  }
1497
2480
  ],
1498
- "properties": [],
1499
2481
  "fields": [],
1500
2482
  "events": [],
1501
2483
  "constructors": [
@@ -1506,6 +2488,7 @@
1506
2488
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.QuerySqlGeneratorDependencies):void|static=false",
1507
2489
  "isStatic": false,
1508
2490
  "parameterCount": 1,
2491
+ "visibility": "Public",
1509
2492
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQuerySqlGeneratorFactory",
1510
2493
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
1511
2494
  }
@@ -1522,6 +2505,16 @@
1522
2505
  "isSealed": false,
1523
2506
  "isStatic": false,
1524
2507
  "arity": 0,
2508
+ "baseType": {
2509
+ "stableId": "System.Private.CoreLib:System.Object",
2510
+ "clrName": "System.Object"
2511
+ },
2512
+ "interfaces": [
2513
+ {
2514
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.IRelationalQueryStringFactory",
2515
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IRelationalQueryStringFactory"
2516
+ }
2517
+ ],
1525
2518
  "methods": [
1526
2519
  {
1527
2520
  "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryStringFactory::Create(System.Data.Common.DbCommand):System.String",
@@ -1538,6 +2531,7 @@
1538
2531
  "isVirtual": true,
1539
2532
  "isOverride": false,
1540
2533
  "isSealed": false,
2534
+ "visibility": "Public",
1541
2535
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryStringFactory",
1542
2536
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
1543
2537
  "isExtensionMethod": false
@@ -1554,6 +2548,7 @@
1554
2548
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Storage.IRelationalTypeMappingSource):void|static=false",
1555
2549
  "isStatic": false,
1556
2550
  "parameterCount": 1,
2551
+ "visibility": "Public",
1557
2552
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryStringFactory",
1558
2553
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
1559
2554
  }
@@ -1570,6 +2565,10 @@
1570
2565
  "isSealed": false,
1571
2566
  "isStatic": false,
1572
2567
  "arity": 0,
2568
+ "baseType": {
2569
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.RelationalQueryTranslationPostprocessor",
2570
+ "clrName": "Microsoft.EntityFrameworkCore.Query.RelationalQueryTranslationPostprocessor"
2571
+ },
1573
2572
  "methods": [
1574
2573
  {
1575
2574
  "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryTranslationPostprocessor::Process(System.Linq.Expressions.Expression):System.Linq.Expressions.Expression",
@@ -1586,6 +2585,27 @@
1586
2585
  "isVirtual": true,
1587
2586
  "isOverride": true,
1588
2587
  "isSealed": false,
2588
+ "visibility": "Public",
2589
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryTranslationPostprocessor",
2590
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
2591
+ "isExtensionMethod": false
2592
+ },
2593
+ {
2594
+ "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryTranslationPostprocessor::ProcessTypeMappings(System.Linq.Expressions.Expression):System.Linq.Expressions.Expression",
2595
+ "clrName": "ProcessTypeMappings",
2596
+ "metadataToken": 100664021,
2597
+ "canonicalSignature": "(System.Linq.Expressions.Expression):System.Linq.Expressions.Expression",
2598
+ "normalizedSignature": "ProcessTypeMappings|(System.Linq.Expressions.Expression):System.Linq.Expressions.Expression|static=false",
2599
+ "emitScope": "ClassSurface",
2600
+ "provenance": "Original",
2601
+ "arity": 0,
2602
+ "parameterCount": 1,
2603
+ "isStatic": false,
2604
+ "isAbstract": false,
2605
+ "isVirtual": true,
2606
+ "isOverride": true,
2607
+ "isSealed": false,
2608
+ "visibility": "Protected",
1589
2609
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryTranslationPostprocessor",
1590
2610
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
1591
2611
  "isExtensionMethod": false
@@ -1602,6 +2622,7 @@
1602
2622
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.QueryTranslationPostprocessorDependencies,Microsoft.EntityFrameworkCore.Query.RelationalQueryTranslationPostprocessorDependencies,Microsoft.EntityFrameworkCore.Query.RelationalQueryCompilationContext):void|static=false",
1603
2623
  "isStatic": false,
1604
2624
  "parameterCount": 3,
2625
+ "visibility": "Public",
1605
2626
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryTranslationPostprocessor",
1606
2627
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
1607
2628
  }
@@ -1618,6 +2639,16 @@
1618
2639
  "isSealed": false,
1619
2640
  "isStatic": false,
1620
2641
  "arity": 0,
2642
+ "baseType": {
2643
+ "stableId": "System.Private.CoreLib:System.Object",
2644
+ "clrName": "System.Object"
2645
+ },
2646
+ "interfaces": [
2647
+ {
2648
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Query.IQueryTranslationPostprocessorFactory",
2649
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IQueryTranslationPostprocessorFactory"
2650
+ }
2651
+ ],
1621
2652
  "methods": [
1622
2653
  {
1623
2654
  "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryTranslationPostprocessorFactory::Create(Microsoft.EntityFrameworkCore.Query.QueryCompilationContext):Microsoft.EntityFrameworkCore.Query.QueryTranslationPostprocessor",
@@ -1634,12 +2665,52 @@
1634
2665
  "isVirtual": true,
1635
2666
  "isOverride": false,
1636
2667
  "isSealed": false,
2668
+ "visibility": "Public",
1637
2669
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryTranslationPostprocessorFactory",
1638
2670
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
1639
2671
  "isExtensionMethod": false
1640
2672
  }
1641
2673
  ],
1642
- "properties": [],
2674
+ "properties": [
2675
+ {
2676
+ "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryTranslationPostprocessorFactory::Dependencies:Microsoft.EntityFrameworkCore.Query.QueryTranslationPostprocessorDependencies",
2677
+ "clrName": "Dependencies",
2678
+ "metadataToken": 385876117,
2679
+ "canonicalSignature": ":Microsoft.EntityFrameworkCore.Query.QueryTranslationPostprocessorDependencies",
2680
+ "normalizedSignature": "Dependencies|:Microsoft.EntityFrameworkCore.Query.QueryTranslationPostprocessorDependencies|static=false|accessor=get",
2681
+ "emitScope": "ClassSurface",
2682
+ "provenance": "Original",
2683
+ "isIndexer": false,
2684
+ "hasGetter": true,
2685
+ "hasSetter": false,
2686
+ "isStatic": false,
2687
+ "isAbstract": false,
2688
+ "isVirtual": true,
2689
+ "isOverride": false,
2690
+ "visibility": "Protected",
2691
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryTranslationPostprocessorFactory",
2692
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
2693
+ },
2694
+ {
2695
+ "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryTranslationPostprocessorFactory::RelationalDependencies:Microsoft.EntityFrameworkCore.Query.RelationalQueryTranslationPostprocessorDependencies",
2696
+ "clrName": "RelationalDependencies",
2697
+ "metadataToken": 385876118,
2698
+ "canonicalSignature": ":Microsoft.EntityFrameworkCore.Query.RelationalQueryTranslationPostprocessorDependencies",
2699
+ "normalizedSignature": "RelationalDependencies|:Microsoft.EntityFrameworkCore.Query.RelationalQueryTranslationPostprocessorDependencies|static=false|accessor=get",
2700
+ "emitScope": "ClassSurface",
2701
+ "provenance": "Original",
2702
+ "isIndexer": false,
2703
+ "hasGetter": true,
2704
+ "hasSetter": false,
2705
+ "isStatic": false,
2706
+ "isAbstract": false,
2707
+ "isVirtual": true,
2708
+ "isOverride": false,
2709
+ "visibility": "Protected",
2710
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryTranslationPostprocessorFactory",
2711
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
2712
+ }
2713
+ ],
1643
2714
  "fields": [],
1644
2715
  "events": [],
1645
2716
  "constructors": [
@@ -1650,6 +2721,7 @@
1650
2721
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.QueryTranslationPostprocessorDependencies,Microsoft.EntityFrameworkCore.Query.RelationalQueryTranslationPostprocessorDependencies):void|static=false",
1651
2722
  "isStatic": false,
1652
2723
  "parameterCount": 2,
2724
+ "visibility": "Public",
1653
2725
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteQueryTranslationPostprocessorFactory",
1654
2726
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
1655
2727
  }
@@ -1666,6 +2738,16 @@
1666
2738
  "isSealed": false,
1667
2739
  "isStatic": false,
1668
2740
  "arity": 0,
2741
+ "baseType": {
2742
+ "stableId": "System.Private.CoreLib:System.Object",
2743
+ "clrName": "System.Object"
2744
+ },
2745
+ "interfaces": [
2746
+ {
2747
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.IMethodCallTranslator",
2748
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IMethodCallTranslator"
2749
+ }
2750
+ ],
1669
2751
  "methods": [
1670
2752
  {
1671
2753
  "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteRandomTranslator::Translate(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,System.Reflection.MethodInfo,System.Collections.Generic.IReadOnlyList_1[[Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,Microsoft.EntityFrameworkCore.Relational,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]],Microsoft.EntityFrameworkCore.Diagnostics.IDiagnosticsLogger_1[[Microsoft.EntityFrameworkCore.DbLoggerCategory\u002BQuery,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression",
@@ -1682,6 +2764,7 @@
1682
2764
  "isVirtual": true,
1683
2765
  "isOverride": false,
1684
2766
  "isSealed": false,
2767
+ "visibility": "Public",
1685
2768
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteRandomTranslator",
1686
2769
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
1687
2770
  "isExtensionMethod": false
@@ -1698,6 +2781,7 @@
1698
2781
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.ISqlExpressionFactory):void|static=false",
1699
2782
  "isStatic": false,
1700
2783
  "parameterCount": 1,
2784
+ "visibility": "Public",
1701
2785
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteRandomTranslator",
1702
2786
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
1703
2787
  }
@@ -1714,6 +2798,16 @@
1714
2798
  "isSealed": false,
1715
2799
  "isStatic": false,
1716
2800
  "arity": 0,
2801
+ "baseType": {
2802
+ "stableId": "System.Private.CoreLib:System.Object",
2803
+ "clrName": "System.Object"
2804
+ },
2805
+ "interfaces": [
2806
+ {
2807
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.IMethodCallTranslator",
2808
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IMethodCallTranslator"
2809
+ }
2810
+ ],
1717
2811
  "methods": [
1718
2812
  {
1719
2813
  "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteRegexMethodTranslator::Translate(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,System.Reflection.MethodInfo,System.Collections.Generic.IReadOnlyList_1[[Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,Microsoft.EntityFrameworkCore.Relational,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]],Microsoft.EntityFrameworkCore.Diagnostics.IDiagnosticsLogger_1[[Microsoft.EntityFrameworkCore.DbLoggerCategory\u002BQuery,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression",
@@ -1730,6 +2824,7 @@
1730
2824
  "isVirtual": true,
1731
2825
  "isOverride": false,
1732
2826
  "isSealed": false,
2827
+ "visibility": "Public",
1733
2828
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteRegexMethodTranslator",
1734
2829
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
1735
2830
  "isExtensionMethod": false
@@ -1746,6 +2841,7 @@
1746
2841
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteSqlExpressionFactory):void|static=false",
1747
2842
  "isStatic": false,
1748
2843
  "parameterCount": 1,
2844
+ "visibility": "Public",
1749
2845
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteRegexMethodTranslator",
1750
2846
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
1751
2847
  }
@@ -1762,6 +2858,16 @@
1762
2858
  "isSealed": false,
1763
2859
  "isStatic": false,
1764
2860
  "arity": 0,
2861
+ "baseType": {
2862
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.SqlExpressionFactory",
2863
+ "clrName": "Microsoft.EntityFrameworkCore.Query.SqlExpressionFactory"
2864
+ },
2865
+ "interfaces": [
2866
+ {
2867
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.ISqlExpressionFactory",
2868
+ "clrName": "Microsoft.EntityFrameworkCore.Query.ISqlExpressionFactory"
2869
+ }
2870
+ ],
1765
2871
  "methods": [
1766
2872
  {
1767
2873
  "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteSqlExpressionFactory::Strftime(System.Type,System.String,Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,System.Collections.Generic.IEnumerable_1[[Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,Microsoft.EntityFrameworkCore.Relational,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]],Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping):Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression",
@@ -1778,6 +2884,7 @@
1778
2884
  "isVirtual": true,
1779
2885
  "isOverride": false,
1780
2886
  "isSealed": false,
2887
+ "visibility": "Public",
1781
2888
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteSqlExpressionFactory",
1782
2889
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
1783
2890
  "isExtensionMethod": false
@@ -1797,6 +2904,7 @@
1797
2904
  "isVirtual": true,
1798
2905
  "isOverride": false,
1799
2906
  "isSealed": false,
2907
+ "visibility": "Public",
1800
2908
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteSqlExpressionFactory",
1801
2909
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
1802
2910
  "isExtensionMethod": false
@@ -1816,6 +2924,7 @@
1816
2924
  "isVirtual": true,
1817
2925
  "isOverride": false,
1818
2926
  "isSealed": false,
2927
+ "visibility": "Public",
1819
2928
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteSqlExpressionFactory",
1820
2929
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
1821
2930
  "isExtensionMethod": false
@@ -1835,6 +2944,7 @@
1835
2944
  "isVirtual": true,
1836
2945
  "isOverride": false,
1837
2946
  "isSealed": false,
2947
+ "visibility": "Public",
1838
2948
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteSqlExpressionFactory",
1839
2949
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
1840
2950
  "isExtensionMethod": false
@@ -1854,6 +2964,7 @@
1854
2964
  "isVirtual": true,
1855
2965
  "isOverride": true,
1856
2966
  "isSealed": false,
2967
+ "visibility": "Public",
1857
2968
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteSqlExpressionFactory",
1858
2969
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
1859
2970
  "isExtensionMethod": false
@@ -1870,6 +2981,7 @@
1870
2981
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.SqlExpressionFactoryDependencies):void|static=false",
1871
2982
  "isStatic": false,
1872
2983
  "parameterCount": 1,
2984
+ "visibility": "Public",
1873
2985
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteSqlExpressionFactory",
1874
2986
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
1875
2987
  }
@@ -1886,7 +2998,162 @@
1886
2998
  "isSealed": false,
1887
2999
  "isStatic": false,
1888
3000
  "arity": 0,
1889
- "methods": [],
3001
+ "baseType": {
3002
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.SqlNullabilityProcessor",
3003
+ "clrName": "Microsoft.EntityFrameworkCore.Query.SqlNullabilityProcessor"
3004
+ },
3005
+ "methods": [
3006
+ {
3007
+ "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteSqlNullabilityProcessor::VisitCustomSqlExpression(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,System.Boolean,System.Boolean\u0026):Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression",
3008
+ "clrName": "VisitCustomSqlExpression",
3009
+ "metadataToken": 100664035,
3010
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,System.Boolean,System.Boolean\u0026):Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression",
3011
+ "normalizedSignature": "VisitCustomSqlExpression|(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,System.Boolean,System.Boolean\u0026):Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression|static=false",
3012
+ "emitScope": "ClassSurface",
3013
+ "provenance": "Original",
3014
+ "arity": 0,
3015
+ "parameterCount": 3,
3016
+ "isStatic": false,
3017
+ "isAbstract": false,
3018
+ "isVirtual": true,
3019
+ "isOverride": true,
3020
+ "isSealed": false,
3021
+ "visibility": "Protected",
3022
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteSqlNullabilityProcessor",
3023
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
3024
+ "isExtensionMethod": false,
3025
+ "parameterModifiers": [
3026
+ {
3027
+ "index": 2,
3028
+ "modifier": "out"
3029
+ }
3030
+ ]
3031
+ },
3032
+ {
3033
+ "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteSqlNullabilityProcessor::VisitGlob(Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.GlobExpression,System.Boolean,System.Boolean\u0026):Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression",
3034
+ "clrName": "VisitGlob",
3035
+ "metadataToken": 100664036,
3036
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.GlobExpression,System.Boolean,System.Boolean\u0026):Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression",
3037
+ "normalizedSignature": "VisitGlob|(Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.GlobExpression,System.Boolean,System.Boolean\u0026):Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression|static=false",
3038
+ "emitScope": "ClassSurface",
3039
+ "provenance": "Original",
3040
+ "arity": 0,
3041
+ "parameterCount": 3,
3042
+ "isStatic": false,
3043
+ "isAbstract": false,
3044
+ "isVirtual": true,
3045
+ "isOverride": false,
3046
+ "isSealed": false,
3047
+ "visibility": "Protected",
3048
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteSqlNullabilityProcessor",
3049
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
3050
+ "isExtensionMethod": false,
3051
+ "parameterModifiers": [
3052
+ {
3053
+ "index": 2,
3054
+ "modifier": "out"
3055
+ }
3056
+ ]
3057
+ },
3058
+ {
3059
+ "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteSqlNullabilityProcessor::VisitRegexp(Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.RegexpExpression,System.Boolean,System.Boolean\u0026):Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression",
3060
+ "clrName": "VisitRegexp",
3061
+ "metadataToken": 100664037,
3062
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.RegexpExpression,System.Boolean,System.Boolean\u0026):Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression",
3063
+ "normalizedSignature": "VisitRegexp|(Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.RegexpExpression,System.Boolean,System.Boolean\u0026):Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression|static=false",
3064
+ "emitScope": "ClassSurface",
3065
+ "provenance": "Original",
3066
+ "arity": 0,
3067
+ "parameterCount": 3,
3068
+ "isStatic": false,
3069
+ "isAbstract": false,
3070
+ "isVirtual": true,
3071
+ "isOverride": false,
3072
+ "isSealed": false,
3073
+ "visibility": "Protected",
3074
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteSqlNullabilityProcessor",
3075
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
3076
+ "isExtensionMethod": false,
3077
+ "parameterModifiers": [
3078
+ {
3079
+ "index": 2,
3080
+ "modifier": "out"
3081
+ }
3082
+ ]
3083
+ },
3084
+ {
3085
+ "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteSqlNullabilityProcessor::VisitSqlFunction(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlFunctionExpression,System.Boolean,System.Boolean\u0026):Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression",
3086
+ "clrName": "VisitSqlFunction",
3087
+ "metadataToken": 100664038,
3088
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlFunctionExpression,System.Boolean,System.Boolean\u0026):Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression",
3089
+ "normalizedSignature": "VisitSqlFunction|(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlFunctionExpression,System.Boolean,System.Boolean\u0026):Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression|static=false",
3090
+ "emitScope": "ClassSurface",
3091
+ "provenance": "Original",
3092
+ "arity": 0,
3093
+ "parameterCount": 3,
3094
+ "isStatic": false,
3095
+ "isAbstract": false,
3096
+ "isVirtual": true,
3097
+ "isOverride": true,
3098
+ "isSealed": false,
3099
+ "visibility": "Protected",
3100
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteSqlNullabilityProcessor",
3101
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
3102
+ "isExtensionMethod": false,
3103
+ "parameterModifiers": [
3104
+ {
3105
+ "index": 2,
3106
+ "modifier": "out"
3107
+ }
3108
+ ]
3109
+ },
3110
+ {
3111
+ "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteSqlNullabilityProcessor::IsCollectionTable(Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase,System.Linq.Expressions.Expression\u0026):System.Boolean",
3112
+ "clrName": "IsCollectionTable",
3113
+ "metadataToken": 100664039,
3114
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase,System.Linq.Expressions.Expression\u0026):System.Boolean",
3115
+ "normalizedSignature": "IsCollectionTable|(Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase,System.Linq.Expressions.Expression\u0026):System.Boolean|static=false",
3116
+ "emitScope": "ClassSurface",
3117
+ "provenance": "Original",
3118
+ "arity": 0,
3119
+ "parameterCount": 2,
3120
+ "isStatic": false,
3121
+ "isAbstract": false,
3122
+ "isVirtual": true,
3123
+ "isOverride": true,
3124
+ "isSealed": false,
3125
+ "visibility": "Protected",
3126
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteSqlNullabilityProcessor",
3127
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
3128
+ "isExtensionMethod": false,
3129
+ "parameterModifiers": [
3130
+ {
3131
+ "index": 1,
3132
+ "modifier": "out"
3133
+ }
3134
+ ]
3135
+ },
3136
+ {
3137
+ "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteSqlNullabilityProcessor::UpdateParameterCollection(Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase,Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlParameterExpression):Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase",
3138
+ "clrName": "UpdateParameterCollection",
3139
+ "metadataToken": 100664040,
3140
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase,Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlParameterExpression):Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase",
3141
+ "normalizedSignature": "UpdateParameterCollection|(Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase,Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlParameterExpression):Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase|static=false",
3142
+ "emitScope": "ClassSurface",
3143
+ "provenance": "Original",
3144
+ "arity": 0,
3145
+ "parameterCount": 2,
3146
+ "isStatic": false,
3147
+ "isAbstract": false,
3148
+ "isVirtual": true,
3149
+ "isOverride": true,
3150
+ "isSealed": false,
3151
+ "visibility": "Protected",
3152
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteSqlNullabilityProcessor",
3153
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
3154
+ "isExtensionMethod": false
3155
+ }
3156
+ ],
1890
3157
  "properties": [],
1891
3158
  "fields": [],
1892
3159
  "events": [],
@@ -1898,6 +3165,7 @@
1898
3165
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.RelationalParameterBasedSqlProcessorDependencies,Microsoft.EntityFrameworkCore.Query.RelationalParameterBasedSqlProcessorParameters):void|static=false",
1899
3166
  "isStatic": false,
1900
3167
  "parameterCount": 2,
3168
+ "visibility": "Public",
1901
3169
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteSqlNullabilityProcessor",
1902
3170
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
1903
3171
  }
@@ -1914,7 +3182,71 @@
1914
3182
  "isSealed": false,
1915
3183
  "isStatic": false,
1916
3184
  "arity": 0,
3185
+ "baseType": {
3186
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.RelationalSqlTranslatingExpressionVisitor",
3187
+ "clrName": "Microsoft.EntityFrameworkCore.Query.RelationalSqlTranslatingExpressionVisitor"
3188
+ },
1917
3189
  "methods": [
3190
+ {
3191
+ "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteSqlTranslatingExpressionVisitor::VisitUnary(System.Linq.Expressions.UnaryExpression):System.Linq.Expressions.Expression",
3192
+ "clrName": "VisitUnary",
3193
+ "metadataToken": 100664042,
3194
+ "canonicalSignature": "(System.Linq.Expressions.UnaryExpression):System.Linq.Expressions.Expression",
3195
+ "normalizedSignature": "VisitUnary|(System.Linq.Expressions.UnaryExpression):System.Linq.Expressions.Expression|static=false",
3196
+ "emitScope": "ClassSurface",
3197
+ "provenance": "Original",
3198
+ "arity": 0,
3199
+ "parameterCount": 1,
3200
+ "isStatic": false,
3201
+ "isAbstract": false,
3202
+ "isVirtual": true,
3203
+ "isOverride": true,
3204
+ "isSealed": false,
3205
+ "visibility": "Protected",
3206
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteSqlTranslatingExpressionVisitor",
3207
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
3208
+ "isExtensionMethod": false
3209
+ },
3210
+ {
3211
+ "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteSqlTranslatingExpressionVisitor::VisitBinary(System.Linq.Expressions.BinaryExpression):System.Linq.Expressions.Expression",
3212
+ "clrName": "VisitBinary",
3213
+ "metadataToken": 100664043,
3214
+ "canonicalSignature": "(System.Linq.Expressions.BinaryExpression):System.Linq.Expressions.Expression",
3215
+ "normalizedSignature": "VisitBinary|(System.Linq.Expressions.BinaryExpression):System.Linq.Expressions.Expression|static=false",
3216
+ "emitScope": "ClassSurface",
3217
+ "provenance": "Original",
3218
+ "arity": 0,
3219
+ "parameterCount": 1,
3220
+ "isStatic": false,
3221
+ "isAbstract": false,
3222
+ "isVirtual": true,
3223
+ "isOverride": true,
3224
+ "isSealed": false,
3225
+ "visibility": "Protected",
3226
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteSqlTranslatingExpressionVisitor",
3227
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
3228
+ "isExtensionMethod": false
3229
+ },
3230
+ {
3231
+ "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteSqlTranslatingExpressionVisitor::VisitMethodCall(System.Linq.Expressions.MethodCallExpression):System.Linq.Expressions.Expression",
3232
+ "clrName": "VisitMethodCall",
3233
+ "metadataToken": 100664044,
3234
+ "canonicalSignature": "(System.Linq.Expressions.MethodCallExpression):System.Linq.Expressions.Expression",
3235
+ "normalizedSignature": "VisitMethodCall|(System.Linq.Expressions.MethodCallExpression):System.Linq.Expressions.Expression|static=false",
3236
+ "emitScope": "ClassSurface",
3237
+ "provenance": "Original",
3238
+ "arity": 0,
3239
+ "parameterCount": 1,
3240
+ "isStatic": false,
3241
+ "isAbstract": false,
3242
+ "isVirtual": true,
3243
+ "isOverride": true,
3244
+ "isSealed": false,
3245
+ "visibility": "Protected",
3246
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteSqlTranslatingExpressionVisitor",
3247
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
3248
+ "isExtensionMethod": false
3249
+ },
1918
3250
  {
1919
3251
  "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteSqlTranslatingExpressionVisitor::ConstructLikePatternParameter(Microsoft.EntityFrameworkCore.Query.QueryContext,System.String,System.Boolean):System.String",
1920
3252
  "clrName": "ConstructLikePatternParameter",
@@ -1930,6 +3262,7 @@
1930
3262
  "isVirtual": false,
1931
3263
  "isOverride": false,
1932
3264
  "isSealed": false,
3265
+ "visibility": "Public",
1933
3266
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteSqlTranslatingExpressionVisitor",
1934
3267
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
1935
3268
  "isExtensionMethod": false
@@ -1949,6 +3282,7 @@
1949
3282
  "isVirtual": true,
1950
3283
  "isOverride": true,
1951
3284
  "isSealed": false,
3285
+ "visibility": "Public",
1952
3286
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteSqlTranslatingExpressionVisitor",
1953
3287
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
1954
3288
  "isExtensionMethod": false
@@ -1968,6 +3302,7 @@
1968
3302
  "isVirtual": true,
1969
3303
  "isOverride": true,
1970
3304
  "isSealed": false,
3305
+ "visibility": "Public",
1971
3306
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteSqlTranslatingExpressionVisitor",
1972
3307
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
1973
3308
  "isExtensionMethod": false
@@ -1984,6 +3319,7 @@
1984
3319
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.RelationalSqlTranslatingExpressionVisitorDependencies,Microsoft.EntityFrameworkCore.Query.QueryCompilationContext,Microsoft.EntityFrameworkCore.Query.QueryableMethodTranslatingExpressionVisitor):void|static=false",
1985
3320
  "isStatic": false,
1986
3321
  "parameterCount": 3,
3322
+ "visibility": "Public",
1987
3323
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteSqlTranslatingExpressionVisitor",
1988
3324
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
1989
3325
  }
@@ -2000,6 +3336,16 @@
2000
3336
  "isSealed": false,
2001
3337
  "isStatic": false,
2002
3338
  "arity": 0,
3339
+ "baseType": {
3340
+ "stableId": "System.Private.CoreLib:System.Object",
3341
+ "clrName": "System.Object"
3342
+ },
3343
+ "interfaces": [
3344
+ {
3345
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.IRelationalSqlTranslatingExpressionVisitorFactory",
3346
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IRelationalSqlTranslatingExpressionVisitorFactory"
3347
+ }
3348
+ ],
2003
3349
  "methods": [
2004
3350
  {
2005
3351
  "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteSqlTranslatingExpressionVisitorFactory::Create(Microsoft.EntityFrameworkCore.Query.QueryCompilationContext,Microsoft.EntityFrameworkCore.Query.QueryableMethodTranslatingExpressionVisitor):Microsoft.EntityFrameworkCore.Query.RelationalSqlTranslatingExpressionVisitor",
@@ -2016,12 +3362,33 @@
2016
3362
  "isVirtual": true,
2017
3363
  "isOverride": false,
2018
3364
  "isSealed": false,
3365
+ "visibility": "Public",
2019
3366
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteSqlTranslatingExpressionVisitorFactory",
2020
3367
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
2021
3368
  "isExtensionMethod": false
2022
3369
  }
2023
3370
  ],
2024
- "properties": [],
3371
+ "properties": [
3372
+ {
3373
+ "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteSqlTranslatingExpressionVisitorFactory::Dependencies:Microsoft.EntityFrameworkCore.Query.RelationalSqlTranslatingExpressionVisitorDependencies",
3374
+ "clrName": "Dependencies",
3375
+ "metadataToken": 385876119,
3376
+ "canonicalSignature": ":Microsoft.EntityFrameworkCore.Query.RelationalSqlTranslatingExpressionVisitorDependencies",
3377
+ "normalizedSignature": "Dependencies|:Microsoft.EntityFrameworkCore.Query.RelationalSqlTranslatingExpressionVisitorDependencies|static=false|accessor=get",
3378
+ "emitScope": "ClassSurface",
3379
+ "provenance": "Original",
3380
+ "isIndexer": false,
3381
+ "hasGetter": true,
3382
+ "hasSetter": false,
3383
+ "isStatic": false,
3384
+ "isAbstract": false,
3385
+ "isVirtual": true,
3386
+ "isOverride": false,
3387
+ "visibility": "Protected",
3388
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteSqlTranslatingExpressionVisitorFactory",
3389
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
3390
+ }
3391
+ ],
2025
3392
  "fields": [],
2026
3393
  "events": [],
2027
3394
  "constructors": [
@@ -2032,6 +3399,7 @@
2032
3399
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.RelationalSqlTranslatingExpressionVisitorDependencies):void|static=false",
2033
3400
  "isStatic": false,
2034
3401
  "parameterCount": 1,
3402
+ "visibility": "Public",
2035
3403
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteSqlTranslatingExpressionVisitorFactory",
2036
3404
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
2037
3405
  }
@@ -2048,6 +3416,16 @@
2048
3416
  "isSealed": false,
2049
3417
  "isStatic": false,
2050
3418
  "arity": 0,
3419
+ "baseType": {
3420
+ "stableId": "System.Private.CoreLib:System.Object",
3421
+ "clrName": "System.Object"
3422
+ },
3423
+ "interfaces": [
3424
+ {
3425
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.IAggregateMethodCallTranslator",
3426
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IAggregateMethodCallTranslator"
3427
+ }
3428
+ ],
2051
3429
  "methods": [
2052
3430
  {
2053
3431
  "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteStringAggregateMethodTranslator::Translate(System.Reflection.MethodInfo,Microsoft.EntityFrameworkCore.Query.EnumerableExpression,System.Collections.Generic.IReadOnlyList_1[[Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,Microsoft.EntityFrameworkCore.Relational,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]],Microsoft.EntityFrameworkCore.Diagnostics.IDiagnosticsLogger_1[[Microsoft.EntityFrameworkCore.DbLoggerCategory\u002BQuery,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression",
@@ -2064,6 +3442,7 @@
2064
3442
  "isVirtual": true,
2065
3443
  "isOverride": false,
2066
3444
  "isSealed": false,
3445
+ "visibility": "Public",
2067
3446
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteStringAggregateMethodTranslator",
2068
3447
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
2069
3448
  "isExtensionMethod": false
@@ -2080,6 +3459,7 @@
2080
3459
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.ISqlExpressionFactory):void|static=false",
2081
3460
  "isStatic": false,
2082
3461
  "parameterCount": 1,
3462
+ "visibility": "Public",
2083
3463
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteStringAggregateMethodTranslator",
2084
3464
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
2085
3465
  }
@@ -2096,6 +3476,16 @@
2096
3476
  "isSealed": false,
2097
3477
  "isStatic": false,
2098
3478
  "arity": 0,
3479
+ "baseType": {
3480
+ "stableId": "System.Private.CoreLib:System.Object",
3481
+ "clrName": "System.Object"
3482
+ },
3483
+ "interfaces": [
3484
+ {
3485
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.IMemberTranslator",
3486
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IMemberTranslator"
3487
+ }
3488
+ ],
2099
3489
  "methods": [
2100
3490
  {
2101
3491
  "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteStringLengthTranslator::Translate(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,System.Reflection.MemberInfo,System.Type,Microsoft.EntityFrameworkCore.Diagnostics.IDiagnosticsLogger_1[[Microsoft.EntityFrameworkCore.DbLoggerCategory\u002BQuery,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression",
@@ -2112,6 +3502,7 @@
2112
3502
  "isVirtual": true,
2113
3503
  "isOverride": false,
2114
3504
  "isSealed": false,
3505
+ "visibility": "Public",
2115
3506
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteStringLengthTranslator",
2116
3507
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
2117
3508
  "isExtensionMethod": false
@@ -2128,6 +3519,7 @@
2128
3519
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.ISqlExpressionFactory):void|static=false",
2129
3520
  "isStatic": false,
2130
3521
  "parameterCount": 1,
3522
+ "visibility": "Public",
2131
3523
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteStringLengthTranslator",
2132
3524
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
2133
3525
  }
@@ -2144,6 +3536,16 @@
2144
3536
  "isSealed": false,
2145
3537
  "isStatic": false,
2146
3538
  "arity": 0,
3539
+ "baseType": {
3540
+ "stableId": "System.Private.CoreLib:System.Object",
3541
+ "clrName": "System.Object"
3542
+ },
3543
+ "interfaces": [
3544
+ {
3545
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.IMethodCallTranslator",
3546
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IMethodCallTranslator"
3547
+ }
3548
+ ],
2147
3549
  "methods": [
2148
3550
  {
2149
3551
  "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteStringMethodTranslator::Translate(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,System.Reflection.MethodInfo,System.Collections.Generic.IReadOnlyList_1[[Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,Microsoft.EntityFrameworkCore.Relational,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]],Microsoft.EntityFrameworkCore.Diagnostics.IDiagnosticsLogger_1[[Microsoft.EntityFrameworkCore.DbLoggerCategory\u002BQuery,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression",
@@ -2160,6 +3562,7 @@
2160
3562
  "isVirtual": true,
2161
3563
  "isOverride": false,
2162
3564
  "isSealed": false,
3565
+ "visibility": "Public",
2163
3566
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteStringMethodTranslator",
2164
3567
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
2165
3568
  "isExtensionMethod": false
@@ -2176,6 +3579,7 @@
2176
3579
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.ISqlExpressionFactory):void|static=false",
2177
3580
  "isStatic": false,
2178
3581
  "parameterCount": 1,
3582
+ "visibility": "Public",
2179
3583
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteStringMethodTranslator",
2180
3584
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
2181
3585
  }
@@ -2192,6 +3596,16 @@
2192
3596
  "isSealed": false,
2193
3597
  "isStatic": false,
2194
3598
  "arity": 0,
3599
+ "baseType": {
3600
+ "stableId": "System.Private.CoreLib:System.Object",
3601
+ "clrName": "System.Object"
3602
+ },
3603
+ "interfaces": [
3604
+ {
3605
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.IMethodCallTranslator",
3606
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IMethodCallTranslator"
3607
+ }
3608
+ ],
2195
3609
  "methods": [
2196
3610
  {
2197
3611
  "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteSubstrMethodTranslator::Translate(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,System.Reflection.MethodInfo,System.Collections.Generic.IReadOnlyList_1[[Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,Microsoft.EntityFrameworkCore.Relational,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]],Microsoft.EntityFrameworkCore.Diagnostics.IDiagnosticsLogger_1[[Microsoft.EntityFrameworkCore.DbLoggerCategory\u002BQuery,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression",
@@ -2208,6 +3622,7 @@
2208
3622
  "isVirtual": true,
2209
3623
  "isOverride": false,
2210
3624
  "isSealed": false,
3625
+ "visibility": "Public",
2211
3626
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteSubstrMethodTranslator",
2212
3627
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
2213
3628
  "isExtensionMethod": false
@@ -2224,6 +3639,7 @@
2224
3639
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.ISqlExpressionFactory):void|static=false",
2225
3640
  "isStatic": false,
2226
3641
  "parameterCount": 1,
3642
+ "visibility": "Public",
2227
3643
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteSubstrMethodTranslator",
2228
3644
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
2229
3645
  }
@@ -2240,7 +3656,52 @@
2240
3656
  "isSealed": false,
2241
3657
  "isStatic": false,
2242
3658
  "arity": 0,
2243
- "methods": [],
3659
+ "baseType": {
3660
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.RelationalTypeMappingPostprocessor",
3661
+ "clrName": "Microsoft.EntityFrameworkCore.Query.RelationalTypeMappingPostprocessor"
3662
+ },
3663
+ "methods": [
3664
+ {
3665
+ "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteTypeMappingPostprocessor::VisitExtension(System.Linq.Expressions.Expression):System.Linq.Expressions.Expression",
3666
+ "clrName": "VisitExtension",
3667
+ "metadataToken": 100664066,
3668
+ "canonicalSignature": "(System.Linq.Expressions.Expression):System.Linq.Expressions.Expression",
3669
+ "normalizedSignature": "VisitExtension|(System.Linq.Expressions.Expression):System.Linq.Expressions.Expression|static=false",
3670
+ "emitScope": "ClassSurface",
3671
+ "provenance": "Original",
3672
+ "arity": 0,
3673
+ "parameterCount": 1,
3674
+ "isStatic": false,
3675
+ "isAbstract": false,
3676
+ "isVirtual": true,
3677
+ "isOverride": true,
3678
+ "isSealed": false,
3679
+ "visibility": "Protected",
3680
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteTypeMappingPostprocessor",
3681
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
3682
+ "isExtensionMethod": false
3683
+ },
3684
+ {
3685
+ "stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteTypeMappingPostprocessor::ApplyTypeMappingsOnJsonEachExpression(Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.JsonEachExpression,Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping):Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.JsonEachExpression",
3686
+ "clrName": "ApplyTypeMappingsOnJsonEachExpression",
3687
+ "metadataToken": 100664067,
3688
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.JsonEachExpression,Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping):Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.JsonEachExpression",
3689
+ "normalizedSignature": "ApplyTypeMappingsOnJsonEachExpression|(Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.JsonEachExpression,Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping):Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.JsonEachExpression|static=false",
3690
+ "emitScope": "ClassSurface",
3691
+ "provenance": "Original",
3692
+ "arity": 0,
3693
+ "parameterCount": 2,
3694
+ "isStatic": false,
3695
+ "isAbstract": false,
3696
+ "isVirtual": true,
3697
+ "isOverride": false,
3698
+ "isSealed": false,
3699
+ "visibility": "Protected",
3700
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteTypeMappingPostprocessor",
3701
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
3702
+ "isExtensionMethod": false
3703
+ }
3704
+ ],
2244
3705
  "properties": [],
2245
3706
  "fields": [],
2246
3707
  "events": [],
@@ -2252,6 +3713,7 @@
2252
3713
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.QueryTranslationPostprocessorDependencies,Microsoft.EntityFrameworkCore.Query.RelationalQueryTranslationPostprocessorDependencies,Microsoft.EntityFrameworkCore.Query.RelationalQueryCompilationContext):void|static=false",
2253
3714
  "isStatic": false,
2254
3715
  "parameterCount": 3,
3716
+ "visibility": "Public",
2255
3717
  "declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.SqliteTypeMappingPostprocessor",
2256
3718
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
2257
3719
  }