@tsonic/efcore-sqlserver 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 (142) hide show
  1. package/Azure/bindings.json +686 -17
  2. package/Azure/internal/index.d.ts +37 -7
  3. package/Azure.Core/bindings.json +1048 -19
  4. package/Azure.Core/internal/index.d.ts +40 -9
  5. package/Azure.Core.Cryptography/bindings.json +5 -0
  6. package/Azure.Core.Diagnostics/bindings.json +56 -0
  7. package/Azure.Core.Diagnostics/internal/index.d.ts +9 -3
  8. package/Azure.Core.Diagnostics.d.ts +2 -2
  9. package/Azure.Core.Extensions/bindings.json +17 -0
  10. package/Azure.Core.GeoJson/bindings.json +362 -0
  11. package/Azure.Core.Pipeline/bindings.json +450 -3
  12. package/Azure.Core.Pipeline/internal/index.d.ts +27 -4
  13. package/Azure.Core.Pipeline.d.ts +2 -2
  14. package/Azure.Core.Serialization/bindings.json +89 -1
  15. package/Azure.Core.Serialization/internal/index.d.ts +1 -0
  16. package/Azure.Core.d.ts +1 -1
  17. package/Azure.Identity/bindings.json +1039 -58
  18. package/Azure.Identity/internal/index.d.ts +51 -30
  19. package/Azure.Identity.d.ts +1 -1
  20. package/Azure.Messaging/bindings.json +69 -0
  21. package/Azure.Messaging/internal/index.d.ts +6 -1
  22. package/Azure.d.ts +1 -1
  23. package/Microsoft.Data/bindings.json +16 -0
  24. package/Microsoft.Data.Sql/bindings.json +16 -0
  25. package/Microsoft.Data.SqlClient/bindings.json +2482 -38
  26. package/Microsoft.Data.SqlClient/internal/index.d.ts +114 -22
  27. package/Microsoft.Data.SqlClient.DataClassification/bindings.json +66 -0
  28. package/Microsoft.Data.SqlClient.Diagnostics/bindings.json +639 -0
  29. package/Microsoft.Data.SqlClient.Server/bindings.json +163 -0
  30. package/Microsoft.Data.SqlTypes/bindings.json +73 -0
  31. package/Microsoft.EntityFrameworkCore/bindings.json +700 -2
  32. package/Microsoft.EntityFrameworkCore/internal/index.d.ts +9 -2
  33. package/Microsoft.EntityFrameworkCore.Diagnostics/bindings.json +35 -0
  34. package/Microsoft.EntityFrameworkCore.Infrastructure/bindings.json +107 -1
  35. package/Microsoft.EntityFrameworkCore.Infrastructure/internal/index.d.ts +1 -0
  36. package/Microsoft.EntityFrameworkCore.Metadata/bindings.json +27 -0
  37. package/Microsoft.EntityFrameworkCore.Metadata.Builders/bindings.json +78 -0
  38. package/Microsoft.EntityFrameworkCore.Metadata.Conventions/bindings.json +853 -10
  39. package/Microsoft.EntityFrameworkCore.Metadata.Conventions/internal/index.d.ts +85 -13
  40. package/Microsoft.EntityFrameworkCore.Metadata.Conventions.d.ts +3 -2
  41. package/Microsoft.EntityFrameworkCore.Metadata.Internal/bindings.json +10 -0
  42. package/Microsoft.EntityFrameworkCore.Migrations/bindings.json +917 -0
  43. package/Microsoft.EntityFrameworkCore.Migrations/internal/index.d.ts +56 -6
  44. package/Microsoft.EntityFrameworkCore.Migrations.Operations/bindings.json +41 -0
  45. package/Microsoft.EntityFrameworkCore.Migrations.d.ts +6 -5
  46. package/Microsoft.EntityFrameworkCore.SqlServer.Design.Internal/bindings.json +122 -0
  47. package/Microsoft.EntityFrameworkCore.SqlServer.Design.Internal/internal/index.d.ts +10 -2
  48. package/Microsoft.EntityFrameworkCore.SqlServer.Design.Internal.d.ts +1 -1
  49. package/Microsoft.EntityFrameworkCore.SqlServer.Diagnostics.Internal/bindings.json +28 -0
  50. package/Microsoft.EntityFrameworkCore.SqlServer.Extensions.Internal/bindings.json +27 -0
  51. package/Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal/bindings.json +421 -8
  52. package/Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal/internal/index.d.ts +34 -10
  53. package/Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.d.ts +3 -2
  54. package/Microsoft.EntityFrameworkCore.SqlServer.Internal/bindings.json +87 -0
  55. package/Microsoft.EntityFrameworkCore.SqlServer.Metadata.Internal/bindings.json +56 -0
  56. package/Microsoft.EntityFrameworkCore.SqlServer.Migrations.Internal/bindings.json +95 -0
  57. package/Microsoft.EntityFrameworkCore.SqlServer.Migrations.Internal/internal/index.d.ts +8 -2
  58. package/Microsoft.EntityFrameworkCore.SqlServer.Migrations.Internal.d.ts +1 -1
  59. package/Microsoft.EntityFrameworkCore.SqlServer.Query.Internal/bindings.json +2415 -31
  60. package/Microsoft.EntityFrameworkCore.SqlServer.Query.Internal/internal/index.d.ts +209 -30
  61. package/Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlExpressions/bindings.json +39 -0
  62. package/Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlExpressions/internal/index.d.ts +8 -3
  63. package/Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlExpressions.d.ts +2 -2
  64. package/Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.d.ts +5 -5
  65. package/Microsoft.EntityFrameworkCore.SqlServer.Scaffolding.Internal/bindings.json +32 -0
  66. package/Microsoft.EntityFrameworkCore.SqlServer.Storage.Internal/bindings.json +1816 -67
  67. package/Microsoft.EntityFrameworkCore.SqlServer.Storage.Internal/internal/index.d.ts +197 -27
  68. package/Microsoft.EntityFrameworkCore.SqlServer.Storage.Internal.d.ts +2 -2
  69. package/Microsoft.EntityFrameworkCore.SqlServer.Update.Internal/bindings.json +397 -4
  70. package/Microsoft.EntityFrameworkCore.SqlServer.Update.Internal/internal/index.d.ts +38 -7
  71. package/Microsoft.EntityFrameworkCore.SqlServer.Update.Internal.d.ts +3 -3
  72. package/Microsoft.EntityFrameworkCore.SqlServer.ValueGeneration.Internal/bindings.json +138 -1
  73. package/Microsoft.EntityFrameworkCore.SqlServer.ValueGeneration.Internal/internal/index.d.ts +16 -3
  74. package/Microsoft.EntityFrameworkCore.SqlServer.ValueGeneration.Internal.d.ts +3 -1
  75. package/Microsoft.EntityFrameworkCore.d.ts +1 -1
  76. package/Microsoft.Extensions.DependencyInjection/bindings.json +10 -0
  77. package/Microsoft.Identity.Client/bindings.json +1941 -39
  78. package/Microsoft.Identity.Client/internal/index.d.ts +94 -28
  79. package/Microsoft.Identity.Client.Advanced/bindings.json +5 -0
  80. package/Microsoft.Identity.Client.AppConfig/bindings.json +21 -0
  81. package/Microsoft.Identity.Client.AuthScheme/bindings.json +6 -0
  82. package/Microsoft.Identity.Client.AuthScheme.PoP/bindings.json +3 -0
  83. package/Microsoft.Identity.Client.Cache/bindings.json +34 -0
  84. package/Microsoft.Identity.Client.Extensibility/bindings.json +80 -10
  85. package/Microsoft.Identity.Client.Extensibility/internal/index.d.ts +6 -5
  86. package/Microsoft.Identity.Client.Extensions.Msal/bindings.json +117 -0
  87. package/Microsoft.Identity.Client.Extensions.Msal/internal/index.d.ts +2 -1
  88. package/Microsoft.Identity.Client.Extensions.Msal.d.ts +1 -1
  89. package/Microsoft.Identity.Client.Kerberos/bindings.json +77 -0
  90. package/Microsoft.Identity.Client.ManagedIdentity/bindings.json +31 -0
  91. package/Microsoft.Identity.Client.Platforms.Features.DesktopOs.Kerberos/bindings.json +18 -1
  92. package/Microsoft.Identity.Client.Platforms.Features.DesktopOs.Kerberos/internal/index.d.ts +1 -0
  93. package/Microsoft.Identity.Client.RP/bindings.json +10 -0
  94. package/Microsoft.Identity.Client.Region/bindings.json +29 -0
  95. package/Microsoft.Identity.Client.SSHCertificates/bindings.json +6 -0
  96. package/Microsoft.Identity.Client.TelemetryCore.TelemetryClient/bindings.json +6 -0
  97. package/Microsoft.Identity.Client.Utils/bindings.json +10 -0
  98. package/Microsoft.Identity.Client.Utils.Windows/bindings.json +6 -0
  99. package/Microsoft.IdentityModel.Abstractions/bindings.json +135 -1
  100. package/Microsoft.IdentityModel.Abstractions/internal/index.d.ts +1 -0
  101. package/Microsoft.IdentityModel.JsonWebTokens/bindings.json +252 -6
  102. package/Microsoft.IdentityModel.JsonWebTokens/internal/index.d.ts +12 -5
  103. package/Microsoft.IdentityModel.JsonWebTokens.d.ts +1 -1
  104. package/Microsoft.IdentityModel.Logging/bindings.json +122 -2
  105. package/Microsoft.IdentityModel.Logging/internal/index.d.ts +8 -3
  106. package/Microsoft.IdentityModel.Logging.d.ts +1 -1
  107. package/Microsoft.IdentityModel.Protocols/bindings.json +155 -1
  108. package/Microsoft.IdentityModel.Protocols/internal/index.d.ts +1 -0
  109. package/Microsoft.IdentityModel.Protocols.Configuration/bindings.json +30 -0
  110. package/Microsoft.IdentityModel.Protocols.Configuration/internal/index.d.ts +2 -1
  111. package/Microsoft.IdentityModel.Protocols.Configuration.d.ts +1 -1
  112. package/Microsoft.IdentityModel.Protocols.OpenIdConnect/bindings.json +645 -0
  113. package/Microsoft.IdentityModel.Protocols.OpenIdConnect/internal/index.d.ts +17 -2
  114. package/Microsoft.IdentityModel.Protocols.OpenIdConnect.Configuration/bindings.json +17 -0
  115. package/Microsoft.IdentityModel.Protocols.OpenIdConnect.d.ts +1 -1
  116. package/Microsoft.IdentityModel.Tokens/bindings.json +2486 -77
  117. package/Microsoft.IdentityModel.Tokens/internal/index.d.ts +135 -35
  118. package/Microsoft.IdentityModel.Tokens.Configuration/bindings.json +10 -0
  119. package/Microsoft.IdentityModel.Tokens.d.ts +1 -1
  120. package/Microsoft.SqlServer.Server/bindings.json +144 -0
  121. package/System/bindings.json +63 -0
  122. package/System.ClientModel/bindings.json +256 -11
  123. package/System.ClientModel/internal/index.d.ts +22 -6
  124. package/System.ClientModel.Primitives/bindings.json +1673 -120
  125. package/System.ClientModel.Primitives/internal/index.d.ts +111 -17
  126. package/System.ClientModel.Primitives.d.ts +2 -2
  127. package/System.Configuration/bindings.json +5382 -321
  128. package/System.Configuration/internal/index.d.ts +323 -51
  129. package/System.Configuration.Internal/bindings.json +193 -1
  130. package/System.Configuration.Provider/bindings.json +69 -1
  131. package/System.Configuration.Provider/internal/index.d.ts +3 -1
  132. package/System.Configuration.Provider.d.ts +1 -1
  133. package/System.Configuration.d.ts +3 -3
  134. package/System.Diagnostics/bindings.json +5 -0
  135. package/System.Drawing.Configuration/bindings.json +25 -0
  136. package/System.Drawing.Configuration/internal/index.d.ts +11 -3
  137. package/System.Drawing.Configuration.d.ts +5 -2
  138. package/System.IdentityModel.Tokens.Jwt/bindings.json +646 -36
  139. package/System.IdentityModel.Tokens.Jwt/internal/index.d.ts +33 -19
  140. package/System.Security.Cryptography/bindings.json +31 -0
  141. package/System.Text.Json.Serialization/bindings.json +10 -0
  142. package/package.json +1 -1
@@ -15,6 +15,28 @@
15
15
  "isSealed": true,
16
16
  "isStatic": false,
17
17
  "arity": 0,
18
+ "baseType": {
19
+ "stableId": "System.Private.CoreLib:System.Enum",
20
+ "clrName": "System.Enum"
21
+ },
22
+ "interfaces": [
23
+ {
24
+ "stableId": "System.Private.CoreLib:System.IComparable",
25
+ "clrName": "System.IComparable"
26
+ },
27
+ {
28
+ "stableId": "System.Private.CoreLib:System.ISpanFormattable",
29
+ "clrName": "System.ISpanFormattable"
30
+ },
31
+ {
32
+ "stableId": "System.Private.CoreLib:System.IFormattable",
33
+ "clrName": "System.IFormattable"
34
+ },
35
+ {
36
+ "stableId": "System.Private.CoreLib:System.IConvertible",
37
+ "clrName": "System.IConvertible"
38
+ }
39
+ ],
18
40
  "methods": [],
19
41
  "properties": [],
20
42
  "fields": [
@@ -26,6 +48,7 @@
26
48
  "isStatic": false,
27
49
  "isReadOnly": false,
28
50
  "isLiteral": false,
51
+ "visibility": "Public",
29
52
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerSqlTranslatingExpressionVisitor\u002BStartsEndsWithContains",
30
53
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
31
54
  },
@@ -37,6 +60,7 @@
37
60
  "isStatic": true,
38
61
  "isReadOnly": false,
39
62
  "isLiteral": true,
63
+ "visibility": "Public",
40
64
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerSqlTranslatingExpressionVisitor\u002BStartsEndsWithContains",
41
65
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
42
66
  },
@@ -48,6 +72,7 @@
48
72
  "isStatic": true,
49
73
  "isReadOnly": false,
50
74
  "isLiteral": true,
75
+ "visibility": "Public",
51
76
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerSqlTranslatingExpressionVisitor\u002BStartsEndsWithContains",
52
77
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
53
78
  },
@@ -59,6 +84,7 @@
59
84
  "isStatic": true,
60
85
  "isReadOnly": false,
61
86
  "isLiteral": true,
87
+ "visibility": "Public",
62
88
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerSqlTranslatingExpressionVisitor\u002BStartsEndsWithContains",
63
89
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
64
90
  }
@@ -77,6 +103,28 @@
77
103
  "isSealed": true,
78
104
  "isStatic": false,
79
105
  "arity": 0,
106
+ "baseType": {
107
+ "stableId": "System.Private.CoreLib:System.Enum",
108
+ "clrName": "System.Enum"
109
+ },
110
+ "interfaces": [
111
+ {
112
+ "stableId": "System.Private.CoreLib:System.IComparable",
113
+ "clrName": "System.IComparable"
114
+ },
115
+ {
116
+ "stableId": "System.Private.CoreLib:System.ISpanFormattable",
117
+ "clrName": "System.ISpanFormattable"
118
+ },
119
+ {
120
+ "stableId": "System.Private.CoreLib:System.IFormattable",
121
+ "clrName": "System.IFormattable"
122
+ },
123
+ {
124
+ "stableId": "System.Private.CoreLib:System.IConvertible",
125
+ "clrName": "System.IConvertible"
126
+ }
127
+ ],
80
128
  "methods": [],
81
129
  "properties": [],
82
130
  "fields": [
@@ -88,6 +136,7 @@
88
136
  "isStatic": false,
89
137
  "isReadOnly": false,
90
138
  "isLiteral": false,
139
+ "visibility": "Public",
91
140
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalOperationType",
92
141
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
93
142
  },
@@ -99,6 +148,7 @@
99
148
  "isStatic": true,
100
149
  "isReadOnly": false,
101
150
  "isLiteral": true,
151
+ "visibility": "Public",
102
152
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalOperationType",
103
153
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
104
154
  },
@@ -110,6 +160,7 @@
110
160
  "isStatic": true,
111
161
  "isReadOnly": false,
112
162
  "isLiteral": true,
163
+ "visibility": "Public",
113
164
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalOperationType",
114
165
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
115
166
  },
@@ -121,6 +172,7 @@
121
172
  "isStatic": true,
122
173
  "isReadOnly": false,
123
174
  "isLiteral": true,
175
+ "visibility": "Public",
124
176
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalOperationType",
125
177
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
126
178
  },
@@ -132,6 +184,7 @@
132
184
  "isStatic": true,
133
185
  "isReadOnly": false,
134
186
  "isLiteral": true,
187
+ "visibility": "Public",
135
188
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalOperationType",
136
189
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
137
190
  },
@@ -143,6 +196,7 @@
143
196
  "isStatic": true,
144
197
  "isReadOnly": false,
145
198
  "isLiteral": true,
199
+ "visibility": "Public",
146
200
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalOperationType",
147
201
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
148
202
  }
@@ -161,6 +215,19 @@
161
215
  "isSealed": true,
162
216
  "isStatic": false,
163
217
  "arity": 0,
218
+ "baseType": {
219
+ "stableId": "System.Private.CoreLib:System.ValueType",
220
+ "clrName": "System.ValueType"
221
+ },
222
+ "interfaces": [
223
+ {
224
+ "stableId": "System.Private.CoreLib:System.IEquatable\u00601",
225
+ "clrName": "System.IEquatable\u00601",
226
+ "typeArguments": [
227
+ "ColumnInfo"
228
+ ]
229
+ }
230
+ ],
164
231
  "methods": [
165
232
  {
166
233
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerOpenJsonExpression\u002BColumnInfo::ToString():System.String",
@@ -177,6 +244,7 @@
177
244
  "isVirtual": true,
178
245
  "isOverride": true,
179
246
  "isSealed": false,
247
+ "visibility": "Public",
180
248
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerOpenJsonExpression\u002BColumnInfo",
181
249
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
182
250
  "isExtensionMethod": false
@@ -196,6 +264,7 @@
196
264
  "isVirtual": true,
197
265
  "isOverride": true,
198
266
  "isSealed": false,
267
+ "visibility": "Public",
199
268
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerOpenJsonExpression\u002BColumnInfo",
200
269
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
201
270
  "isExtensionMethod": false
@@ -215,6 +284,7 @@
215
284
  "isVirtual": true,
216
285
  "isOverride": true,
217
286
  "isSealed": false,
287
+ "visibility": "Public",
218
288
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerOpenJsonExpression\u002BColumnInfo",
219
289
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
220
290
  "isExtensionMethod": false
@@ -234,6 +304,7 @@
234
304
  "isVirtual": true,
235
305
  "isOverride": false,
236
306
  "isSealed": true,
307
+ "visibility": "Public",
237
308
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerOpenJsonExpression\u002BColumnInfo",
238
309
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
239
310
  "isExtensionMethod": false
@@ -253,6 +324,7 @@
253
324
  "isVirtual": false,
254
325
  "isOverride": false,
255
326
  "isSealed": false,
327
+ "visibility": "Public",
256
328
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerOpenJsonExpression\u002BColumnInfo",
257
329
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
258
330
  "isExtensionMethod": false,
@@ -292,6 +364,7 @@
292
364
  "isAbstract": false,
293
365
  "isVirtual": false,
294
366
  "isOverride": false,
367
+ "visibility": "Public",
295
368
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerOpenJsonExpression\u002BColumnInfo",
296
369
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
297
370
  },
@@ -310,6 +383,7 @@
310
383
  "isAbstract": false,
311
384
  "isVirtual": false,
312
385
  "isOverride": false,
386
+ "visibility": "Public",
313
387
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerOpenJsonExpression\u002BColumnInfo",
314
388
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
315
389
  },
@@ -328,6 +402,7 @@
328
402
  "isAbstract": false,
329
403
  "isVirtual": false,
330
404
  "isOverride": false,
405
+ "visibility": "Public",
331
406
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerOpenJsonExpression\u002BColumnInfo",
332
407
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
333
408
  },
@@ -346,6 +421,7 @@
346
421
  "isAbstract": false,
347
422
  "isVirtual": false,
348
423
  "isOverride": false,
424
+ "visibility": "Public",
349
425
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerOpenJsonExpression\u002BColumnInfo",
350
426
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
351
427
  }
@@ -360,6 +436,7 @@
360
436
  "normalizedSignature": "constructor|(System.String,Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping,System.Collections.Generic.IReadOnlyList_1[[Microsoft.EntityFrameworkCore.Query.PathSegment,Microsoft.EntityFrameworkCore.Relational,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]],System.Boolean):void|static=false",
361
437
  "isStatic": false,
362
438
  "parameterCount": 4,
439
+ "visibility": "Public",
363
440
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerOpenJsonExpression\u002BColumnInfo",
364
441
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
365
442
  }
@@ -376,6 +453,10 @@
376
453
  "isSealed": false,
377
454
  "isStatic": false,
378
455
  "arity": 0,
456
+ "baseType": {
457
+ "stableId": "System.Linq.Expressions:System.Linq.Expressions.ExpressionVisitor",
458
+ "clrName": "System.Linq.Expressions.ExpressionVisitor"
459
+ },
379
460
  "methods": [
380
461
  {
381
462
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SearchConditionConverter::Visit(System.Linq.Expressions.Expression):System.Linq.Expressions.Expression",
@@ -392,6 +473,127 @@
392
473
  "isVirtual": true,
393
474
  "isOverride": true,
394
475
  "isSealed": false,
476
+ "visibility": "Public",
477
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SearchConditionConverter",
478
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
479
+ "isExtensionMethod": false
480
+ },
481
+ {
482
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SearchConditionConverter::Visit(System.Linq.Expressions.Expression,System.Boolean,System.Boolean):System.Linq.Expressions.Expression",
483
+ "clrName": "Visit",
484
+ "metadataToken": 100664754,
485
+ "canonicalSignature": "(System.Linq.Expressions.Expression,System.Boolean,System.Boolean):System.Linq.Expressions.Expression",
486
+ "normalizedSignature": "Visit|(System.Linq.Expressions.Expression,System.Boolean,System.Boolean):System.Linq.Expressions.Expression|static=false",
487
+ "emitScope": "ClassSurface",
488
+ "provenance": "Original",
489
+ "arity": 0,
490
+ "parameterCount": 3,
491
+ "isStatic": false,
492
+ "isAbstract": false,
493
+ "isVirtual": true,
494
+ "isOverride": false,
495
+ "isSealed": false,
496
+ "visibility": "Protected",
497
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SearchConditionConverter",
498
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
499
+ "isExtensionMethod": false
500
+ },
501
+ {
502
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SearchConditionConverter::VisitCase(Microsoft.EntityFrameworkCore.Query.SqlExpressions.CaseExpression,System.Boolean,System.Boolean):System.Linq.Expressions.Expression",
503
+ "clrName": "VisitCase",
504
+ "metadataToken": 100664757,
505
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.SqlExpressions.CaseExpression,System.Boolean,System.Boolean):System.Linq.Expressions.Expression",
506
+ "normalizedSignature": "VisitCase|(Microsoft.EntityFrameworkCore.Query.SqlExpressions.CaseExpression,System.Boolean,System.Boolean):System.Linq.Expressions.Expression|static=false",
507
+ "emitScope": "ClassSurface",
508
+ "provenance": "Original",
509
+ "arity": 0,
510
+ "parameterCount": 3,
511
+ "isStatic": false,
512
+ "isAbstract": false,
513
+ "isVirtual": true,
514
+ "isOverride": false,
515
+ "isSealed": false,
516
+ "visibility": "Protected",
517
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SearchConditionConverter",
518
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
519
+ "isExtensionMethod": false
520
+ },
521
+ {
522
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SearchConditionConverter::VisitPredicateJoin(Microsoft.EntityFrameworkCore.Query.SqlExpressions.PredicateJoinExpressionBase):System.Linq.Expressions.Expression",
523
+ "clrName": "VisitPredicateJoin",
524
+ "metadataToken": 100664758,
525
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.SqlExpressions.PredicateJoinExpressionBase):System.Linq.Expressions.Expression",
526
+ "normalizedSignature": "VisitPredicateJoin|(Microsoft.EntityFrameworkCore.Query.SqlExpressions.PredicateJoinExpressionBase):System.Linq.Expressions.Expression|static=false",
527
+ "emitScope": "ClassSurface",
528
+ "provenance": "Original",
529
+ "arity": 0,
530
+ "parameterCount": 1,
531
+ "isStatic": false,
532
+ "isAbstract": false,
533
+ "isVirtual": true,
534
+ "isOverride": false,
535
+ "isSealed": false,
536
+ "visibility": "Protected",
537
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SearchConditionConverter",
538
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
539
+ "isExtensionMethod": false
540
+ },
541
+ {
542
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SearchConditionConverter::VisitSelect(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression):System.Linq.Expressions.Expression",
543
+ "clrName": "VisitSelect",
544
+ "metadataToken": 100664759,
545
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression):System.Linq.Expressions.Expression",
546
+ "normalizedSignature": "VisitSelect|(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression):System.Linq.Expressions.Expression|static=false",
547
+ "emitScope": "ClassSurface",
548
+ "provenance": "Original",
549
+ "arity": 0,
550
+ "parameterCount": 1,
551
+ "isStatic": false,
552
+ "isAbstract": false,
553
+ "isVirtual": true,
554
+ "isOverride": false,
555
+ "isSealed": false,
556
+ "visibility": "Protected",
557
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SearchConditionConverter",
558
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
559
+ "isExtensionMethod": false
560
+ },
561
+ {
562
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SearchConditionConverter::VisitSqlBinary(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlBinaryExpression,System.Boolean,System.Boolean):System.Linq.Expressions.Expression",
563
+ "clrName": "VisitSqlBinary",
564
+ "metadataToken": 100664760,
565
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlBinaryExpression,System.Boolean,System.Boolean):System.Linq.Expressions.Expression",
566
+ "normalizedSignature": "VisitSqlBinary|(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlBinaryExpression,System.Boolean,System.Boolean):System.Linq.Expressions.Expression|static=false",
567
+ "emitScope": "ClassSurface",
568
+ "provenance": "Original",
569
+ "arity": 0,
570
+ "parameterCount": 3,
571
+ "isStatic": false,
572
+ "isAbstract": false,
573
+ "isVirtual": true,
574
+ "isOverride": false,
575
+ "isSealed": false,
576
+ "visibility": "Protected",
577
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SearchConditionConverter",
578
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
579
+ "isExtensionMethod": false
580
+ },
581
+ {
582
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SearchConditionConverter::VisitSqlUnary(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlUnaryExpression,System.Boolean):System.Linq.Expressions.Expression",
583
+ "clrName": "VisitSqlUnary",
584
+ "metadataToken": 100664761,
585
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlUnaryExpression,System.Boolean):System.Linq.Expressions.Expression",
586
+ "normalizedSignature": "VisitSqlUnary|(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlUnaryExpression,System.Boolean):System.Linq.Expressions.Expression|static=false",
587
+ "emitScope": "ClassSurface",
588
+ "provenance": "Original",
589
+ "arity": 0,
590
+ "parameterCount": 2,
591
+ "isStatic": false,
592
+ "isAbstract": false,
593
+ "isVirtual": true,
594
+ "isOverride": false,
595
+ "isSealed": false,
596
+ "visibility": "Protected",
395
597
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SearchConditionConverter",
396
598
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
397
599
  "isExtensionMethod": false
@@ -408,6 +610,7 @@
408
610
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.ISqlExpressionFactory):void|static=false",
409
611
  "isStatic": false,
410
612
  "parameterCount": 1,
613
+ "visibility": "Public",
411
614
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SearchConditionConverter",
412
615
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
413
616
  }
@@ -424,7 +627,41 @@
424
627
  "isSealed": false,
425
628
  "isStatic": false,
426
629
  "arity": 0,
630
+ "baseType": {
631
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression",
632
+ "clrName": "Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression"
633
+ },
634
+ "interfaces": [
635
+ {
636
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.IRelationalQuotableExpression",
637
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IRelationalQuotableExpression"
638
+ },
639
+ {
640
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Query.IPrintableExpression",
641
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IPrintableExpression"
642
+ }
643
+ ],
427
644
  "methods": [
645
+ {
646
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerAggregateFunctionExpression::VisitChildren(System.Linq.Expressions.ExpressionVisitor):System.Linq.Expressions.Expression",
647
+ "clrName": "VisitChildren",
648
+ "metadataToken": 100664836,
649
+ "canonicalSignature": "(System.Linq.Expressions.ExpressionVisitor):System.Linq.Expressions.Expression",
650
+ "normalizedSignature": "VisitChildren|(System.Linq.Expressions.ExpressionVisitor):System.Linq.Expressions.Expression|static=false",
651
+ "emitScope": "ClassSurface",
652
+ "provenance": "Original",
653
+ "arity": 0,
654
+ "parameterCount": 1,
655
+ "isStatic": false,
656
+ "isAbstract": false,
657
+ "isVirtual": true,
658
+ "isOverride": true,
659
+ "isSealed": false,
660
+ "visibility": "Protected",
661
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerAggregateFunctionExpression",
662
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
663
+ "isExtensionMethod": false
664
+ },
428
665
  {
429
666
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerAggregateFunctionExpression::ApplyTypeMapping(Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping):Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerAggregateFunctionExpression",
430
667
  "clrName": "ApplyTypeMapping",
@@ -440,6 +677,7 @@
440
677
  "isVirtual": true,
441
678
  "isOverride": false,
442
679
  "isSealed": false,
680
+ "visibility": "Public",
443
681
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerAggregateFunctionExpression",
444
682
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
445
683
  "isExtensionMethod": false
@@ -459,6 +697,7 @@
459
697
  "isVirtual": true,
460
698
  "isOverride": false,
461
699
  "isSealed": false,
700
+ "visibility": "Public",
462
701
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerAggregateFunctionExpression",
463
702
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
464
703
  "isExtensionMethod": false
@@ -478,6 +717,27 @@
478
717
  "isVirtual": true,
479
718
  "isOverride": true,
480
719
  "isSealed": false,
720
+ "visibility": "Public",
721
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerAggregateFunctionExpression",
722
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
723
+ "isExtensionMethod": false
724
+ },
725
+ {
726
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerAggregateFunctionExpression::Print(Microsoft.EntityFrameworkCore.Query.ExpressionPrinter):System.Void",
727
+ "clrName": "Print",
728
+ "metadataToken": 100664840,
729
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.ExpressionPrinter):System.Void",
730
+ "normalizedSignature": "Print|(Microsoft.EntityFrameworkCore.Query.ExpressionPrinter):System.Void|static=false",
731
+ "emitScope": "ClassSurface",
732
+ "provenance": "Original",
733
+ "arity": 0,
734
+ "parameterCount": 1,
735
+ "isStatic": false,
736
+ "isAbstract": false,
737
+ "isVirtual": true,
738
+ "isOverride": true,
739
+ "isSealed": false,
740
+ "visibility": "Protected",
481
741
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerAggregateFunctionExpression",
482
742
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
483
743
  "isExtensionMethod": false
@@ -497,6 +757,7 @@
497
757
  "isVirtual": true,
498
758
  "isOverride": true,
499
759
  "isSealed": false,
760
+ "visibility": "Public",
500
761
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerAggregateFunctionExpression",
501
762
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
502
763
  "isExtensionMethod": false
@@ -516,6 +777,7 @@
516
777
  "isVirtual": true,
517
778
  "isOverride": true,
518
779
  "isSealed": false,
780
+ "visibility": "Public",
519
781
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerAggregateFunctionExpression",
520
782
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
521
783
  "isExtensionMethod": false
@@ -537,6 +799,7 @@
537
799
  "isAbstract": false,
538
800
  "isVirtual": true,
539
801
  "isOverride": false,
802
+ "visibility": "Public",
540
803
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerAggregateFunctionExpression",
541
804
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
542
805
  },
@@ -555,6 +818,7 @@
555
818
  "isAbstract": false,
556
819
  "isVirtual": true,
557
820
  "isOverride": false,
821
+ "visibility": "Public",
558
822
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerAggregateFunctionExpression",
559
823
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
560
824
  },
@@ -573,6 +837,7 @@
573
837
  "isAbstract": false,
574
838
  "isVirtual": true,
575
839
  "isOverride": false,
840
+ "visibility": "Public",
576
841
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerAggregateFunctionExpression",
577
842
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
578
843
  },
@@ -591,6 +856,7 @@
591
856
  "isAbstract": false,
592
857
  "isVirtual": true,
593
858
  "isOverride": false,
859
+ "visibility": "Public",
594
860
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerAggregateFunctionExpression",
595
861
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
596
862
  },
@@ -609,6 +875,7 @@
609
875
  "isAbstract": false,
610
876
  "isVirtual": true,
611
877
  "isOverride": false,
878
+ "visibility": "Public",
612
879
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerAggregateFunctionExpression",
613
880
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
614
881
  }
@@ -623,6 +890,7 @@
623
890
  "normalizedSignature": "constructor|(System.String,System.Collections.Generic.IReadOnlyList_1[[Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,Microsoft.EntityFrameworkCore.Relational,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]],System.Collections.Generic.IReadOnlyList_1[[Microsoft.EntityFrameworkCore.Query.SqlExpressions.OrderingExpression,Microsoft.EntityFrameworkCore.Relational,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]],System.Boolean,System.Collections.Generic.IEnumerable_1[[System.Boolean,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e]],System.Type,Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping):void|static=false",
624
891
  "isStatic": false,
625
892
  "parameterCount": 7,
893
+ "visibility": "Public",
626
894
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerAggregateFunctionExpression",
627
895
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
628
896
  }
@@ -639,6 +907,16 @@
639
907
  "isSealed": false,
640
908
  "isStatic": false,
641
909
  "arity": 0,
910
+ "baseType": {
911
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.RelationalAggregateMethodCallTranslatorProvider",
912
+ "clrName": "Microsoft.EntityFrameworkCore.Query.RelationalAggregateMethodCallTranslatorProvider"
913
+ },
914
+ "interfaces": [
915
+ {
916
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.IAggregateMethodCallTranslatorProvider",
917
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IAggregateMethodCallTranslatorProvider"
918
+ }
919
+ ],
642
920
  "methods": [],
643
921
  "properties": [],
644
922
  "fields": [],
@@ -651,6 +929,7 @@
651
929
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.RelationalAggregateMethodCallTranslatorProviderDependencies):void|static=false",
652
930
  "isStatic": false,
653
931
  "parameterCount": 1,
932
+ "visibility": "Public",
654
933
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerAggregateMethodCallTranslatorProvider",
655
934
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
656
935
  }
@@ -667,7 +946,32 @@
667
946
  "isSealed": false,
668
947
  "isStatic": false,
669
948
  "arity": 0,
670
- "methods": [],
949
+ "baseType": {
950
+ "stableId": "System.Linq.Expressions:System.Linq.Expressions.ExpressionVisitor",
951
+ "clrName": "System.Linq.Expressions.ExpressionVisitor"
952
+ },
953
+ "methods": [
954
+ {
955
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerAggregateOverSubqueryPostprocessor::VisitExtension(System.Linq.Expressions.Expression):System.Linq.Expressions.Expression",
956
+ "clrName": "VisitExtension",
957
+ "metadataToken": 100664846,
958
+ "canonicalSignature": "(System.Linq.Expressions.Expression):System.Linq.Expressions.Expression",
959
+ "normalizedSignature": "VisitExtension|(System.Linq.Expressions.Expression):System.Linq.Expressions.Expression|static=false",
960
+ "emitScope": "ClassSurface",
961
+ "provenance": "Original",
962
+ "arity": 0,
963
+ "parameterCount": 1,
964
+ "isStatic": false,
965
+ "isAbstract": false,
966
+ "isVirtual": true,
967
+ "isOverride": true,
968
+ "isSealed": false,
969
+ "visibility": "Protected",
970
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerAggregateOverSubqueryPostprocessor",
971
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
972
+ "isExtensionMethod": false
973
+ }
974
+ ],
671
975
  "properties": [],
672
976
  "fields": [],
673
977
  "events": [],
@@ -679,6 +983,7 @@
679
983
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.SqlAliasManager):void|static=false",
680
984
  "isStatic": false,
681
985
  "parameterCount": 1,
986
+ "visibility": "Public",
682
987
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerAggregateOverSubqueryPostprocessor",
683
988
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
684
989
  }
@@ -695,6 +1000,16 @@
695
1000
  "isSealed": false,
696
1001
  "isStatic": false,
697
1002
  "arity": 0,
1003
+ "baseType": {
1004
+ "stableId": "System.Private.CoreLib:System.Object",
1005
+ "clrName": "System.Object"
1006
+ },
1007
+ "interfaces": [
1008
+ {
1009
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.IMethodCallTranslator",
1010
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IMethodCallTranslator"
1011
+ }
1012
+ ],
698
1013
  "methods": [
699
1014
  {
700
1015
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerByteArrayMethodTranslator::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",
@@ -711,6 +1026,7 @@
711
1026
  "isVirtual": true,
712
1027
  "isOverride": false,
713
1028
  "isSealed": false,
1029
+ "visibility": "Public",
714
1030
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerByteArrayMethodTranslator",
715
1031
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
716
1032
  "isExtensionMethod": false
@@ -727,6 +1043,7 @@
727
1043
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.ISqlExpressionFactory):void|static=false",
728
1044
  "isStatic": false,
729
1045
  "parameterCount": 1,
1046
+ "visibility": "Public",
730
1047
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerByteArrayMethodTranslator",
731
1048
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
732
1049
  }
@@ -743,6 +1060,16 @@
743
1060
  "isSealed": false,
744
1061
  "isStatic": false,
745
1062
  "arity": 0,
1063
+ "baseType": {
1064
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.RelationalCompiledQueryCacheKeyGenerator",
1065
+ "clrName": "Microsoft.EntityFrameworkCore.Query.RelationalCompiledQueryCacheKeyGenerator"
1066
+ },
1067
+ "interfaces": [
1068
+ {
1069
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Query.ICompiledQueryCacheKeyGenerator",
1070
+ "clrName": "Microsoft.EntityFrameworkCore.Query.ICompiledQueryCacheKeyGenerator"
1071
+ }
1072
+ ],
746
1073
  "methods": [
747
1074
  {
748
1075
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerCompiledQueryCacheKeyGenerator::GenerateCacheKey(System.Linq.Expressions.Expression,System.Boolean):System.Object",
@@ -759,6 +1086,7 @@
759
1086
  "isVirtual": true,
760
1087
  "isOverride": true,
761
1088
  "isSealed": false,
1089
+ "visibility": "Public",
762
1090
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerCompiledQueryCacheKeyGenerator",
763
1091
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
764
1092
  "isExtensionMethod": false
@@ -775,6 +1103,7 @@
775
1103
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.CompiledQueryCacheKeyGeneratorDependencies,Microsoft.EntityFrameworkCore.Query.RelationalCompiledQueryCacheKeyGeneratorDependencies,Microsoft.EntityFrameworkCore.SqlServer.Storage.Internal.ISqlServerConnection):void|static=false",
776
1104
  "isStatic": false,
777
1105
  "parameterCount": 3,
1106
+ "visibility": "Public",
778
1107
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerCompiledQueryCacheKeyGenerator",
779
1108
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
780
1109
  }
@@ -791,6 +1120,16 @@
791
1120
  "isSealed": false,
792
1121
  "isStatic": false,
793
1122
  "arity": 0,
1123
+ "baseType": {
1124
+ "stableId": "System.Private.CoreLib:System.Object",
1125
+ "clrName": "System.Object"
1126
+ },
1127
+ "interfaces": [
1128
+ {
1129
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.IMethodCallTranslator",
1130
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IMethodCallTranslator"
1131
+ }
1132
+ ],
794
1133
  "methods": [
795
1134
  {
796
1135
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerConvertTranslator::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",
@@ -807,6 +1146,7 @@
807
1146
  "isVirtual": true,
808
1147
  "isOverride": false,
809
1148
  "isSealed": false,
1149
+ "visibility": "Public",
810
1150
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerConvertTranslator",
811
1151
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
812
1152
  "isExtensionMethod": false
@@ -823,6 +1163,7 @@
823
1163
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.ISqlExpressionFactory):void|static=false",
824
1164
  "isStatic": false,
825
1165
  "parameterCount": 1,
1166
+ "visibility": "Public",
826
1167
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerConvertTranslator",
827
1168
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
828
1169
  }
@@ -839,6 +1180,16 @@
839
1180
  "isSealed": false,
840
1181
  "isStatic": false,
841
1182
  "arity": 0,
1183
+ "baseType": {
1184
+ "stableId": "System.Private.CoreLib:System.Object",
1185
+ "clrName": "System.Object"
1186
+ },
1187
+ "interfaces": [
1188
+ {
1189
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.IMethodCallTranslator",
1190
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IMethodCallTranslator"
1191
+ }
1192
+ ],
842
1193
  "methods": [
843
1194
  {
844
1195
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerDataLengthFunctionTranslator::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",
@@ -855,6 +1206,7 @@
855
1206
  "isVirtual": true,
856
1207
  "isOverride": false,
857
1208
  "isSealed": false,
1209
+ "visibility": "Public",
858
1210
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerDataLengthFunctionTranslator",
859
1211
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
860
1212
  "isExtensionMethod": false
@@ -871,6 +1223,7 @@
871
1223
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.ISqlExpressionFactory):void|static=false",
872
1224
  "isStatic": false,
873
1225
  "parameterCount": 1,
1226
+ "visibility": "Public",
874
1227
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerDataLengthFunctionTranslator",
875
1228
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
876
1229
  }
@@ -887,6 +1240,16 @@
887
1240
  "isSealed": false,
888
1241
  "isStatic": false,
889
1242
  "arity": 0,
1243
+ "baseType": {
1244
+ "stableId": "System.Private.CoreLib:System.Object",
1245
+ "clrName": "System.Object"
1246
+ },
1247
+ "interfaces": [
1248
+ {
1249
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.IMethodCallTranslator",
1250
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IMethodCallTranslator"
1251
+ }
1252
+ ],
890
1253
  "methods": [
891
1254
  {
892
1255
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerDateDiffFunctionsTranslator::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",
@@ -903,6 +1266,7 @@
903
1266
  "isVirtual": true,
904
1267
  "isOverride": false,
905
1268
  "isSealed": false,
1269
+ "visibility": "Public",
906
1270
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerDateDiffFunctionsTranslator",
907
1271
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
908
1272
  "isExtensionMethod": false
@@ -919,6 +1283,7 @@
919
1283
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.ISqlExpressionFactory):void|static=false",
920
1284
  "isStatic": false,
921
1285
  "parameterCount": 1,
1286
+ "visibility": "Public",
922
1287
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerDateDiffFunctionsTranslator",
923
1288
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
924
1289
  }
@@ -935,6 +1300,16 @@
935
1300
  "isSealed": false,
936
1301
  "isStatic": false,
937
1302
  "arity": 0,
1303
+ "baseType": {
1304
+ "stableId": "System.Private.CoreLib:System.Object",
1305
+ "clrName": "System.Object"
1306
+ },
1307
+ "interfaces": [
1308
+ {
1309
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.IMemberTranslator",
1310
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IMemberTranslator"
1311
+ }
1312
+ ],
938
1313
  "methods": [
939
1314
  {
940
1315
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerDateOnlyMemberTranslator::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",
@@ -951,6 +1326,7 @@
951
1326
  "isVirtual": true,
952
1327
  "isOverride": false,
953
1328
  "isSealed": false,
1329
+ "visibility": "Public",
954
1330
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerDateOnlyMemberTranslator",
955
1331
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
956
1332
  "isExtensionMethod": false
@@ -967,6 +1343,7 @@
967
1343
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.ISqlExpressionFactory):void|static=false",
968
1344
  "isStatic": false,
969
1345
  "parameterCount": 1,
1346
+ "visibility": "Public",
970
1347
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerDateOnlyMemberTranslator",
971
1348
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
972
1349
  }
@@ -983,6 +1360,16 @@
983
1360
  "isSealed": false,
984
1361
  "isStatic": false,
985
1362
  "arity": 0,
1363
+ "baseType": {
1364
+ "stableId": "System.Private.CoreLib:System.Object",
1365
+ "clrName": "System.Object"
1366
+ },
1367
+ "interfaces": [
1368
+ {
1369
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.IMethodCallTranslator",
1370
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IMethodCallTranslator"
1371
+ }
1372
+ ],
986
1373
  "methods": [
987
1374
  {
988
1375
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerDateOnlyMethodTranslator::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",
@@ -999,6 +1386,7 @@
999
1386
  "isVirtual": true,
1000
1387
  "isOverride": false,
1001
1388
  "isSealed": false,
1389
+ "visibility": "Public",
1002
1390
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerDateOnlyMethodTranslator",
1003
1391
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
1004
1392
  "isExtensionMethod": false
@@ -1015,6 +1403,7 @@
1015
1403
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.ISqlExpressionFactory):void|static=false",
1016
1404
  "isStatic": false,
1017
1405
  "parameterCount": 1,
1406
+ "visibility": "Public",
1018
1407
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerDateOnlyMethodTranslator",
1019
1408
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
1020
1409
  }
@@ -1031,6 +1420,16 @@
1031
1420
  "isSealed": false,
1032
1421
  "isStatic": false,
1033
1422
  "arity": 0,
1423
+ "baseType": {
1424
+ "stableId": "System.Private.CoreLib:System.Object",
1425
+ "clrName": "System.Object"
1426
+ },
1427
+ "interfaces": [
1428
+ {
1429
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.IMemberTranslator",
1430
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IMemberTranslator"
1431
+ }
1432
+ ],
1034
1433
  "methods": [
1035
1434
  {
1036
1435
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerDateTimeMemberTranslator::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",
@@ -1047,6 +1446,7 @@
1047
1446
  "isVirtual": true,
1048
1447
  "isOverride": false,
1049
1448
  "isSealed": false,
1449
+ "visibility": "Public",
1050
1450
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerDateTimeMemberTranslator",
1051
1451
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
1052
1452
  "isExtensionMethod": false
@@ -1063,6 +1463,7 @@
1063
1463
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.ISqlExpressionFactory,Microsoft.EntityFrameworkCore.Storage.IRelationalTypeMappingSource):void|static=false",
1064
1464
  "isStatic": false,
1065
1465
  "parameterCount": 2,
1466
+ "visibility": "Public",
1066
1467
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerDateTimeMemberTranslator",
1067
1468
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
1068
1469
  }
@@ -1079,6 +1480,16 @@
1079
1480
  "isSealed": false,
1080
1481
  "isStatic": false,
1081
1482
  "arity": 0,
1483
+ "baseType": {
1484
+ "stableId": "System.Private.CoreLib:System.Object",
1485
+ "clrName": "System.Object"
1486
+ },
1487
+ "interfaces": [
1488
+ {
1489
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.IMethodCallTranslator",
1490
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IMethodCallTranslator"
1491
+ }
1492
+ ],
1082
1493
  "methods": [
1083
1494
  {
1084
1495
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerDateTimeMethodTranslator::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",
@@ -1095,6 +1506,7 @@
1095
1506
  "isVirtual": true,
1096
1507
  "isOverride": false,
1097
1508
  "isSealed": false,
1509
+ "visibility": "Public",
1098
1510
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerDateTimeMethodTranslator",
1099
1511
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
1100
1512
  "isExtensionMethod": false
@@ -1111,6 +1523,7 @@
1111
1523
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.ISqlExpressionFactory,Microsoft.EntityFrameworkCore.Storage.IRelationalTypeMappingSource):void|static=false",
1112
1524
  "isStatic": false,
1113
1525
  "parameterCount": 2,
1526
+ "visibility": "Public",
1114
1527
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerDateTimeMethodTranslator",
1115
1528
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
1116
1529
  }
@@ -1127,6 +1540,16 @@
1127
1540
  "isSealed": false,
1128
1541
  "isStatic": false,
1129
1542
  "arity": 0,
1543
+ "baseType": {
1544
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.RelationalEvaluatableExpressionFilter",
1545
+ "clrName": "Microsoft.EntityFrameworkCore.Query.RelationalEvaluatableExpressionFilter"
1546
+ },
1547
+ "interfaces": [
1548
+ {
1549
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Query.IEvaluatableExpressionFilter",
1550
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IEvaluatableExpressionFilter"
1551
+ }
1552
+ ],
1130
1553
  "methods": [
1131
1554
  {
1132
1555
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerEvaluatableExpressionFilter::IsEvaluatableExpression(System.Linq.Expressions.Expression,Microsoft.EntityFrameworkCore.Metadata.IModel):System.Boolean",
@@ -1143,6 +1566,7 @@
1143
1566
  "isVirtual": true,
1144
1567
  "isOverride": true,
1145
1568
  "isSealed": false,
1569
+ "visibility": "Public",
1146
1570
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerEvaluatableExpressionFilter",
1147
1571
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
1148
1572
  "isExtensionMethod": false
@@ -1159,6 +1583,7 @@
1159
1583
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.EvaluatableExpressionFilterDependencies,Microsoft.EntityFrameworkCore.Query.RelationalEvaluatableExpressionFilterDependencies):void|static=false",
1160
1584
  "isStatic": false,
1161
1585
  "parameterCount": 2,
1586
+ "visibility": "Public",
1162
1587
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerEvaluatableExpressionFilter",
1163
1588
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
1164
1589
  }
@@ -1175,6 +1600,16 @@
1175
1600
  "isSealed": false,
1176
1601
  "isStatic": false,
1177
1602
  "arity": 0,
1603
+ "baseType": {
1604
+ "stableId": "System.Private.CoreLib:System.Object",
1605
+ "clrName": "System.Object"
1606
+ },
1607
+ "interfaces": [
1608
+ {
1609
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.IMethodCallTranslator",
1610
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IMethodCallTranslator"
1611
+ }
1612
+ ],
1178
1613
  "methods": [
1179
1614
  {
1180
1615
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerFromPartsFunctionTranslator::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",
@@ -1191,6 +1626,7 @@
1191
1626
  "isVirtual": true,
1192
1627
  "isOverride": false,
1193
1628
  "isSealed": false,
1629
+ "visibility": "Public",
1194
1630
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerFromPartsFunctionTranslator",
1195
1631
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
1196
1632
  "isExtensionMethod": false
@@ -1207,6 +1643,7 @@
1207
1643
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.ISqlExpressionFactory,Microsoft.EntityFrameworkCore.Storage.IRelationalTypeMappingSource):void|static=false",
1208
1644
  "isStatic": false,
1209
1645
  "parameterCount": 2,
1646
+ "visibility": "Public",
1210
1647
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerFromPartsFunctionTranslator",
1211
1648
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
1212
1649
  }
@@ -1223,6 +1660,16 @@
1223
1660
  "isSealed": false,
1224
1661
  "isStatic": false,
1225
1662
  "arity": 0,
1663
+ "baseType": {
1664
+ "stableId": "System.Private.CoreLib:System.Object",
1665
+ "clrName": "System.Object"
1666
+ },
1667
+ "interfaces": [
1668
+ {
1669
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.IMethodCallTranslator",
1670
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IMethodCallTranslator"
1671
+ }
1672
+ ],
1226
1673
  "methods": [
1227
1674
  {
1228
1675
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerFullTextSearchFunctionsTranslator::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",
@@ -1239,6 +1686,7 @@
1239
1686
  "isVirtual": true,
1240
1687
  "isOverride": false,
1241
1688
  "isSealed": false,
1689
+ "visibility": "Public",
1242
1690
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerFullTextSearchFunctionsTranslator",
1243
1691
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
1244
1692
  "isExtensionMethod": false
@@ -1255,6 +1703,7 @@
1255
1703
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.ISqlExpressionFactory):void|static=false",
1256
1704
  "isStatic": false,
1257
1705
  "parameterCount": 1,
1706
+ "visibility": "Public",
1258
1707
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerFullTextSearchFunctionsTranslator",
1259
1708
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
1260
1709
  }
@@ -1271,6 +1720,16 @@
1271
1720
  "isSealed": false,
1272
1721
  "isStatic": false,
1273
1722
  "arity": 0,
1723
+ "baseType": {
1724
+ "stableId": "System.Private.CoreLib:System.Object",
1725
+ "clrName": "System.Object"
1726
+ },
1727
+ "interfaces": [
1728
+ {
1729
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.IMethodCallTranslator",
1730
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IMethodCallTranslator"
1731
+ }
1732
+ ],
1274
1733
  "methods": [
1275
1734
  {
1276
1735
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerIsDateFunctionTranslator::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",
@@ -1287,6 +1746,7 @@
1287
1746
  "isVirtual": true,
1288
1747
  "isOverride": false,
1289
1748
  "isSealed": false,
1749
+ "visibility": "Public",
1290
1750
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerIsDateFunctionTranslator",
1291
1751
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
1292
1752
  "isExtensionMethod": false
@@ -1303,6 +1763,7 @@
1303
1763
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.ISqlExpressionFactory):void|static=false",
1304
1764
  "isStatic": false,
1305
1765
  "parameterCount": 1,
1766
+ "visibility": "Public",
1306
1767
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerIsDateFunctionTranslator",
1307
1768
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
1308
1769
  }
@@ -1319,6 +1780,16 @@
1319
1780
  "isSealed": false,
1320
1781
  "isStatic": false,
1321
1782
  "arity": 0,
1783
+ "baseType": {
1784
+ "stableId": "System.Private.CoreLib:System.Object",
1785
+ "clrName": "System.Object"
1786
+ },
1787
+ "interfaces": [
1788
+ {
1789
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.IMethodCallTranslator",
1790
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IMethodCallTranslator"
1791
+ }
1792
+ ],
1322
1793
  "methods": [
1323
1794
  {
1324
1795
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerIsNumericFunctionTranslator::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",
@@ -1335,6 +1806,7 @@
1335
1806
  "isVirtual": true,
1336
1807
  "isOverride": false,
1337
1808
  "isSealed": false,
1809
+ "visibility": "Public",
1338
1810
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerIsNumericFunctionTranslator",
1339
1811
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
1340
1812
  "isExtensionMethod": false
@@ -1351,6 +1823,7 @@
1351
1823
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.ISqlExpressionFactory):void|static=false",
1352
1824
  "isStatic": false,
1353
1825
  "parameterCount": 1,
1826
+ "visibility": "Public",
1354
1827
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerIsNumericFunctionTranslator",
1355
1828
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
1356
1829
  }
@@ -1367,6 +1840,10 @@
1367
1840
  "isSealed": true,
1368
1841
  "isStatic": false,
1369
1842
  "arity": 0,
1843
+ "baseType": {
1844
+ "stableId": "System.Linq.Expressions:System.Linq.Expressions.ExpressionVisitor",
1845
+ "clrName": "System.Linq.Expressions.ExpressionVisitor"
1846
+ },
1370
1847
  "methods": [
1371
1848
  {
1372
1849
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerJsonPostprocessor::Process(System.Linq.Expressions.Expression):System.Linq.Expressions.Expression",
@@ -1383,6 +1860,7 @@
1383
1860
  "isVirtual": false,
1384
1861
  "isOverride": false,
1385
1862
  "isSealed": false,
1863
+ "visibility": "Public",
1386
1864
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerJsonPostprocessor",
1387
1865
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
1388
1866
  "isExtensionMethod": false
@@ -1402,6 +1880,7 @@
1402
1880
  "isVirtual": true,
1403
1881
  "isOverride": true,
1404
1882
  "isSealed": false,
1883
+ "visibility": "Public",
1405
1884
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerJsonPostprocessor",
1406
1885
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
1407
1886
  "isExtensionMethod": false
@@ -1418,6 +1897,7 @@
1418
1897
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Storage.IRelationalTypeMappingSource,Microsoft.EntityFrameworkCore.Query.ISqlExpressionFactory,Microsoft.EntityFrameworkCore.Query.SqlAliasManager):void|static=false",
1419
1898
  "isStatic": false,
1420
1899
  "parameterCount": 3,
1900
+ "visibility": "Public",
1421
1901
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerJsonPostprocessor",
1422
1902
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
1423
1903
  }
@@ -1434,6 +1914,16 @@
1434
1914
  "isSealed": false,
1435
1915
  "isStatic": false,
1436
1916
  "arity": 0,
1917
+ "baseType": {
1918
+ "stableId": "System.Private.CoreLib:System.Object",
1919
+ "clrName": "System.Object"
1920
+ },
1921
+ "interfaces": [
1922
+ {
1923
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.IAggregateMethodCallTranslator",
1924
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IAggregateMethodCallTranslator"
1925
+ }
1926
+ ],
1437
1927
  "methods": [
1438
1928
  {
1439
1929
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerLongCountMethodTranslator::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",
@@ -1450,6 +1940,7 @@
1450
1940
  "isVirtual": true,
1451
1941
  "isOverride": false,
1452
1942
  "isSealed": false,
1943
+ "visibility": "Public",
1453
1944
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerLongCountMethodTranslator",
1454
1945
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
1455
1946
  "isExtensionMethod": false
@@ -1466,6 +1957,7 @@
1466
1957
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.ISqlExpressionFactory):void|static=false",
1467
1958
  "isStatic": false,
1468
1959
  "parameterCount": 1,
1960
+ "visibility": "Public",
1469
1961
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerLongCountMethodTranslator",
1470
1962
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
1471
1963
  }
@@ -1482,6 +1974,16 @@
1482
1974
  "isSealed": false,
1483
1975
  "isStatic": false,
1484
1976
  "arity": 0,
1977
+ "baseType": {
1978
+ "stableId": "System.Private.CoreLib:System.Object",
1979
+ "clrName": "System.Object"
1980
+ },
1981
+ "interfaces": [
1982
+ {
1983
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.IMethodCallTranslator",
1984
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IMethodCallTranslator"
1985
+ }
1986
+ ],
1485
1987
  "methods": [
1486
1988
  {
1487
1989
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerMathTranslator::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",
@@ -1498,6 +2000,7 @@
1498
2000
  "isVirtual": true,
1499
2001
  "isOverride": false,
1500
2002
  "isSealed": false,
2003
+ "visibility": "Public",
1501
2004
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerMathTranslator",
1502
2005
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
1503
2006
  "isExtensionMethod": false
@@ -1514,6 +2017,7 @@
1514
2017
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.ISqlExpressionFactory):void|static=false",
1515
2018
  "isStatic": false,
1516
2019
  "parameterCount": 1,
2020
+ "visibility": "Public",
1517
2021
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerMathTranslator",
1518
2022
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
1519
2023
  }
@@ -1530,6 +2034,16 @@
1530
2034
  "isSealed": false,
1531
2035
  "isStatic": false,
1532
2036
  "arity": 0,
2037
+ "baseType": {
2038
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.RelationalMemberTranslatorProvider",
2039
+ "clrName": "Microsoft.EntityFrameworkCore.Query.RelationalMemberTranslatorProvider"
2040
+ },
2041
+ "interfaces": [
2042
+ {
2043
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.IMemberTranslatorProvider",
2044
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IMemberTranslatorProvider"
2045
+ }
2046
+ ],
1533
2047
  "methods": [],
1534
2048
  "properties": [],
1535
2049
  "fields": [],
@@ -1542,6 +2056,7 @@
1542
2056
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.RelationalMemberTranslatorProviderDependencies,Microsoft.EntityFrameworkCore.Storage.IRelationalTypeMappingSource):void|static=false",
1543
2057
  "isStatic": false,
1544
2058
  "parameterCount": 2,
2059
+ "visibility": "Public",
1545
2060
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerMemberTranslatorProvider",
1546
2061
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
1547
2062
  }
@@ -1558,6 +2073,16 @@
1558
2073
  "isSealed": false,
1559
2074
  "isStatic": false,
1560
2075
  "arity": 0,
2076
+ "baseType": {
2077
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.RelationalMethodCallTranslatorProvider",
2078
+ "clrName": "Microsoft.EntityFrameworkCore.Query.RelationalMethodCallTranslatorProvider"
2079
+ },
2080
+ "interfaces": [
2081
+ {
2082
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.IMethodCallTranslatorProvider",
2083
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IMethodCallTranslatorProvider"
2084
+ }
2085
+ ],
1561
2086
  "methods": [],
1562
2087
  "properties": [],
1563
2088
  "fields": [],
@@ -1570,6 +2095,7 @@
1570
2095
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.RelationalMethodCallTranslatorProviderDependencies,Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.ISqlServerSingletonOptions):void|static=false",
1571
2096
  "isStatic": false,
1572
2097
  "parameterCount": 2,
2098
+ "visibility": "Public",
1573
2099
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerMethodCallTranslatorProvider",
1574
2100
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
1575
2101
  }
@@ -1586,6 +2112,16 @@
1586
2112
  "isSealed": false,
1587
2113
  "isStatic": false,
1588
2114
  "arity": 0,
2115
+ "baseType": {
2116
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Query.NavigationExpansionExtensibilityHelper",
2117
+ "clrName": "Microsoft.EntityFrameworkCore.Query.NavigationExpansionExtensibilityHelper"
2118
+ },
2119
+ "interfaces": [
2120
+ {
2121
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Query.INavigationExpansionExtensibilityHelper",
2122
+ "clrName": "Microsoft.EntityFrameworkCore.Query.INavigationExpansionExtensibilityHelper"
2123
+ }
2124
+ ],
1589
2125
  "methods": [
1590
2126
  {
1591
2127
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerNavigationExpansionExtensibilityHelper::CreateQueryRoot(Microsoft.EntityFrameworkCore.Metadata.IEntityType,Microsoft.EntityFrameworkCore.Query.EntityQueryRootExpression):Microsoft.EntityFrameworkCore.Query.EntityQueryRootExpression",
@@ -1602,6 +2138,7 @@
1602
2138
  "isVirtual": true,
1603
2139
  "isOverride": true,
1604
2140
  "isSealed": false,
2141
+ "visibility": "Public",
1605
2142
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerNavigationExpansionExtensibilityHelper",
1606
2143
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
1607
2144
  "isExtensionMethod": false
@@ -1621,6 +2158,7 @@
1621
2158
  "isVirtual": true,
1622
2159
  "isOverride": true,
1623
2160
  "isSealed": false,
2161
+ "visibility": "Public",
1624
2162
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerNavigationExpansionExtensibilityHelper",
1625
2163
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
1626
2164
  "isExtensionMethod": false
@@ -1640,6 +2178,7 @@
1640
2178
  "isVirtual": true,
1641
2179
  "isOverride": true,
1642
2180
  "isSealed": false,
2181
+ "visibility": "Public",
1643
2182
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerNavigationExpansionExtensibilityHelper",
1644
2183
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
1645
2184
  "isExtensionMethod": false
@@ -1656,6 +2195,7 @@
1656
2195
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.NavigationExpansionExtensibilityHelperDependencies):void|static=false",
1657
2196
  "isStatic": false,
1658
2197
  "parameterCount": 1,
2198
+ "visibility": "Public",
1659
2199
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerNavigationExpansionExtensibilityHelper",
1660
2200
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
1661
2201
  }
@@ -1672,6 +2212,16 @@
1672
2212
  "isSealed": false,
1673
2213
  "isStatic": false,
1674
2214
  "arity": 0,
2215
+ "baseType": {
2216
+ "stableId": "System.Private.CoreLib:System.Object",
2217
+ "clrName": "System.Object"
2218
+ },
2219
+ "interfaces": [
2220
+ {
2221
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.IMethodCallTranslator",
2222
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IMethodCallTranslator"
2223
+ }
2224
+ ],
1675
2225
  "methods": [
1676
2226
  {
1677
2227
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerNewGuidTranslator::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",
@@ -1688,6 +2238,7 @@
1688
2238
  "isVirtual": true,
1689
2239
  "isOverride": false,
1690
2240
  "isSealed": false,
2241
+ "visibility": "Public",
1691
2242
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerNewGuidTranslator",
1692
2243
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
1693
2244
  "isExtensionMethod": false
@@ -1704,6 +2255,7 @@
1704
2255
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.ISqlExpressionFactory):void|static=false",
1705
2256
  "isStatic": false,
1706
2257
  "parameterCount": 1,
2258
+ "visibility": "Public",
1707
2259
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerNewGuidTranslator",
1708
2260
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
1709
2261
  }
@@ -1720,6 +2272,16 @@
1720
2272
  "isSealed": false,
1721
2273
  "isStatic": false,
1722
2274
  "arity": 0,
2275
+ "baseType": {
2276
+ "stableId": "System.Private.CoreLib:System.Object",
2277
+ "clrName": "System.Object"
2278
+ },
2279
+ "interfaces": [
2280
+ {
2281
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.IMethodCallTranslator",
2282
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IMethodCallTranslator"
2283
+ }
2284
+ ],
1723
2285
  "methods": [
1724
2286
  {
1725
2287
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerObjectToStringTranslator::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",
@@ -1736,6 +2298,7 @@
1736
2298
  "isVirtual": true,
1737
2299
  "isOverride": false,
1738
2300
  "isSealed": false,
2301
+ "visibility": "Public",
1739
2302
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerObjectToStringTranslator",
1740
2303
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
1741
2304
  "isExtensionMethod": false
@@ -1752,6 +2315,7 @@
1752
2315
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.ISqlExpressionFactory,Microsoft.EntityFrameworkCore.Storage.IRelationalTypeMappingSource):void|static=false",
1753
2316
  "isStatic": false,
1754
2317
  "parameterCount": 2,
2318
+ "visibility": "Public",
1755
2319
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerObjectToStringTranslator",
1756
2320
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
1757
2321
  }
@@ -1768,7 +2332,45 @@
1768
2332
  "isSealed": false,
1769
2333
  "isStatic": false,
1770
2334
  "arity": 0,
2335
+ "baseType": {
2336
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableValuedFunctionExpression",
2337
+ "clrName": "Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableValuedFunctionExpression"
2338
+ },
2339
+ "interfaces": [
2340
+ {
2341
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.IRelationalQuotableExpression",
2342
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IRelationalQuotableExpression"
2343
+ },
2344
+ {
2345
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Query.IPrintableExpression",
2346
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IPrintableExpression"
2347
+ },
2348
+ {
2349
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.SqlExpressions.ITableBasedExpression",
2350
+ "clrName": "Microsoft.EntityFrameworkCore.Query.SqlExpressions.ITableBasedExpression"
2351
+ }
2352
+ ],
1771
2353
  "methods": [
2354
+ {
2355
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerOpenJsonExpression::VisitChildren(System.Linq.Expressions.ExpressionVisitor):System.Linq.Expressions.Expression",
2356
+ "clrName": "VisitChildren",
2357
+ "metadataToken": 100664769,
2358
+ "canonicalSignature": "(System.Linq.Expressions.ExpressionVisitor):System.Linq.Expressions.Expression",
2359
+ "normalizedSignature": "VisitChildren|(System.Linq.Expressions.ExpressionVisitor):System.Linq.Expressions.Expression|static=false",
2360
+ "emitScope": "ClassSurface",
2361
+ "provenance": "Original",
2362
+ "arity": 0,
2363
+ "parameterCount": 1,
2364
+ "isStatic": false,
2365
+ "isAbstract": false,
2366
+ "isVirtual": true,
2367
+ "isOverride": true,
2368
+ "isSealed": false,
2369
+ "visibility": "Protected",
2370
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerOpenJsonExpression",
2371
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
2372
+ "isExtensionMethod": false
2373
+ },
1772
2374
  {
1773
2375
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerOpenJsonExpression::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]],System.Collections.Generic.IReadOnlyList_1[[Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerOpenJsonExpression\u002BColumnInfo,Microsoft.EntityFrameworkCore.SqlServer,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerOpenJsonExpression",
1774
2376
  "clrName": "Update",
@@ -1784,6 +2386,7 @@
1784
2386
  "isVirtual": true,
1785
2387
  "isOverride": false,
1786
2388
  "isSealed": false,
2389
+ "visibility": "Public",
1787
2390
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerOpenJsonExpression",
1788
2391
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
1789
2392
  "isExtensionMethod": false
@@ -1803,6 +2406,7 @@
1803
2406
  "isVirtual": true,
1804
2407
  "isOverride": false,
1805
2408
  "isSealed": false,
2409
+ "visibility": "Public",
1806
2410
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerOpenJsonExpression",
1807
2411
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
1808
2412
  "isExtensionMethod": false
@@ -1822,6 +2426,7 @@
1822
2426
  "isVirtual": true,
1823
2427
  "isOverride": true,
1824
2428
  "isSealed": false,
2429
+ "visibility": "Public",
1825
2430
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerOpenJsonExpression",
1826
2431
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
1827
2432
  "isExtensionMethod": false
@@ -1841,6 +2446,7 @@
1841
2446
  "isVirtual": true,
1842
2447
  "isOverride": false,
1843
2448
  "isSealed": false,
2449
+ "visibility": "Public",
1844
2450
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerOpenJsonExpression",
1845
2451
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
1846
2452
  "isExtensionMethod": false
@@ -1860,6 +2466,27 @@
1860
2466
  "isVirtual": true,
1861
2467
  "isOverride": true,
1862
2468
  "isSealed": false,
2469
+ "visibility": "Public",
2470
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerOpenJsonExpression",
2471
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
2472
+ "isExtensionMethod": false
2473
+ },
2474
+ {
2475
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerOpenJsonExpression::Print(Microsoft.EntityFrameworkCore.Query.ExpressionPrinter):System.Void",
2476
+ "clrName": "Print",
2477
+ "metadataToken": 100664775,
2478
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.ExpressionPrinter):System.Void",
2479
+ "normalizedSignature": "Print|(Microsoft.EntityFrameworkCore.Query.ExpressionPrinter):System.Void|static=false",
2480
+ "emitScope": "ClassSurface",
2481
+ "provenance": "Original",
2482
+ "arity": 0,
2483
+ "parameterCount": 1,
2484
+ "isStatic": false,
2485
+ "isAbstract": false,
2486
+ "isVirtual": true,
2487
+ "isOverride": true,
2488
+ "isSealed": false,
2489
+ "visibility": "Protected",
1863
2490
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerOpenJsonExpression",
1864
2491
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
1865
2492
  "isExtensionMethod": false
@@ -1879,6 +2506,7 @@
1879
2506
  "isVirtual": true,
1880
2507
  "isOverride": true,
1881
2508
  "isSealed": false,
2509
+ "visibility": "Public",
1882
2510
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerOpenJsonExpression",
1883
2511
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
1884
2512
  "isExtensionMethod": false
@@ -1898,6 +2526,7 @@
1898
2526
  "isVirtual": true,
1899
2527
  "isOverride": true,
1900
2528
  "isSealed": false,
2529
+ "visibility": "Public",
1901
2530
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerOpenJsonExpression",
1902
2531
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
1903
2532
  "isExtensionMethod": false
@@ -1919,6 +2548,7 @@
1919
2548
  "isAbstract": false,
1920
2549
  "isVirtual": true,
1921
2550
  "isOverride": false,
2551
+ "visibility": "Public",
1922
2552
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerOpenJsonExpression",
1923
2553
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
1924
2554
  },
@@ -1937,6 +2567,7 @@
1937
2567
  "isAbstract": false,
1938
2568
  "isVirtual": true,
1939
2569
  "isOverride": false,
2570
+ "visibility": "Public",
1940
2571
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerOpenJsonExpression",
1941
2572
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
1942
2573
  },
@@ -1955,6 +2586,7 @@
1955
2586
  "isAbstract": false,
1956
2587
  "isVirtual": true,
1957
2588
  "isOverride": false,
2589
+ "visibility": "Public",
1958
2590
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerOpenJsonExpression",
1959
2591
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
1960
2592
  }
@@ -1969,6 +2601,7 @@
1969
2601
  "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]],System.Collections.Generic.IReadOnlyList_1[[Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerOpenJsonExpression\u002BColumnInfo,Microsoft.EntityFrameworkCore.SqlServer,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):void|static=false",
1970
2602
  "isStatic": false,
1971
2603
  "parameterCount": 4,
2604
+ "visibility": "Public",
1972
2605
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerOpenJsonExpression",
1973
2606
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
1974
2607
  }
@@ -1985,6 +2618,10 @@
1985
2618
  "isSealed": false,
1986
2619
  "isStatic": false,
1987
2620
  "arity": 0,
2621
+ "baseType": {
2622
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.RelationalParameterBasedSqlProcessor",
2623
+ "clrName": "Microsoft.EntityFrameworkCore.Query.RelationalParameterBasedSqlProcessor"
2624
+ },
1988
2625
  "methods": [
1989
2626
  {
1990
2627
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerParameterBasedSqlProcessor::Process(System.Linq.Expressions.Expression,Microsoft.EntityFrameworkCore.Query.ParametersCacheDecorator):System.Linq.Expressions.Expression",
@@ -2001,6 +2638,27 @@
2001
2638
  "isVirtual": true,
2002
2639
  "isOverride": true,
2003
2640
  "isSealed": false,
2641
+ "visibility": "Public",
2642
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerParameterBasedSqlProcessor",
2643
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
2644
+ "isExtensionMethod": false
2645
+ },
2646
+ {
2647
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerParameterBasedSqlProcessor::ProcessSqlNullability(System.Linq.Expressions.Expression,Microsoft.EntityFrameworkCore.Query.ParametersCacheDecorator):System.Linq.Expressions.Expression",
2648
+ "clrName": "ProcessSqlNullability",
2649
+ "metadataToken": 100664865,
2650
+ "canonicalSignature": "(System.Linq.Expressions.Expression,Microsoft.EntityFrameworkCore.Query.ParametersCacheDecorator):System.Linq.Expressions.Expression",
2651
+ "normalizedSignature": "ProcessSqlNullability|(System.Linq.Expressions.Expression,Microsoft.EntityFrameworkCore.Query.ParametersCacheDecorator):System.Linq.Expressions.Expression|static=false",
2652
+ "emitScope": "ClassSurface",
2653
+ "provenance": "Original",
2654
+ "arity": 0,
2655
+ "parameterCount": 2,
2656
+ "isStatic": false,
2657
+ "isAbstract": false,
2658
+ "isVirtual": true,
2659
+ "isOverride": true,
2660
+ "isSealed": false,
2661
+ "visibility": "Protected",
2004
2662
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerParameterBasedSqlProcessor",
2005
2663
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
2006
2664
  "isExtensionMethod": false
@@ -2017,6 +2675,7 @@
2017
2675
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.RelationalParameterBasedSqlProcessorDependencies,Microsoft.EntityFrameworkCore.Query.RelationalParameterBasedSqlProcessorParameters,Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.ISqlServerSingletonOptions):void|static=false",
2018
2676
  "isStatic": false,
2019
2677
  "parameterCount": 3,
2678
+ "visibility": "Public",
2020
2679
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerParameterBasedSqlProcessor",
2021
2680
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
2022
2681
  }
@@ -2033,6 +2692,16 @@
2033
2692
  "isSealed": false,
2034
2693
  "isStatic": false,
2035
2694
  "arity": 0,
2695
+ "baseType": {
2696
+ "stableId": "System.Private.CoreLib:System.Object",
2697
+ "clrName": "System.Object"
2698
+ },
2699
+ "interfaces": [
2700
+ {
2701
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.IRelationalParameterBasedSqlProcessorFactory",
2702
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IRelationalParameterBasedSqlProcessorFactory"
2703
+ }
2704
+ ],
2036
2705
  "methods": [
2037
2706
  {
2038
2707
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerParameterBasedSqlProcessorFactory::Create(Microsoft.EntityFrameworkCore.Query.RelationalParameterBasedSqlProcessorParameters):Microsoft.EntityFrameworkCore.Query.RelationalParameterBasedSqlProcessor",
@@ -2049,22 +2718,44 @@
2049
2718
  "isVirtual": true,
2050
2719
  "isOverride": false,
2051
2720
  "isSealed": false,
2721
+ "visibility": "Public",
2052
2722
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerParameterBasedSqlProcessorFactory",
2053
2723
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
2054
2724
  "isExtensionMethod": false
2055
2725
  }
2056
2726
  ],
2057
- "properties": [],
2058
- "fields": [],
2059
- "events": [],
2060
- "constructors": [
2727
+ "properties": [
2061
2728
  {
2062
- "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerParameterBasedSqlProcessorFactory::.ctor(Microsoft.EntityFrameworkCore.Query.RelationalParameterBasedSqlProcessorDependencies,Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.ISqlServerSingletonOptions):void",
2063
- "metadataToken": 100664866,
2729
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerParameterBasedSqlProcessorFactory::Dependencies:Microsoft.EntityFrameworkCore.Query.RelationalParameterBasedSqlProcessorDependencies",
2730
+ "clrName": "Dependencies",
2731
+ "metadataToken": 385876155,
2732
+ "canonicalSignature": ":Microsoft.EntityFrameworkCore.Query.RelationalParameterBasedSqlProcessorDependencies",
2733
+ "normalizedSignature": "Dependencies|:Microsoft.EntityFrameworkCore.Query.RelationalParameterBasedSqlProcessorDependencies|static=false|accessor=get",
2734
+ "emitScope": "ClassSurface",
2735
+ "provenance": "Original",
2736
+ "isIndexer": false,
2737
+ "hasGetter": true,
2738
+ "hasSetter": false,
2739
+ "isStatic": false,
2740
+ "isAbstract": false,
2741
+ "isVirtual": true,
2742
+ "isOverride": false,
2743
+ "visibility": "Protected",
2744
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerParameterBasedSqlProcessorFactory",
2745
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
2746
+ }
2747
+ ],
2748
+ "fields": [],
2749
+ "events": [],
2750
+ "constructors": [
2751
+ {
2752
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerParameterBasedSqlProcessorFactory::.ctor(Microsoft.EntityFrameworkCore.Query.RelationalParameterBasedSqlProcessorDependencies,Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.ISqlServerSingletonOptions):void",
2753
+ "metadataToken": 100664866,
2064
2754
  "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.RelationalParameterBasedSqlProcessorDependencies,Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.ISqlServerSingletonOptions):void",
2065
2755
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.RelationalParameterBasedSqlProcessorDependencies,Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.ISqlServerSingletonOptions):void|static=false",
2066
2756
  "isStatic": false,
2067
2757
  "parameterCount": 2,
2758
+ "visibility": "Public",
2068
2759
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerParameterBasedSqlProcessorFactory",
2069
2760
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
2070
2761
  }
@@ -2081,7 +2772,260 @@
2081
2772
  "isSealed": false,
2082
2773
  "isStatic": false,
2083
2774
  "arity": 0,
2084
- "methods": [],
2775
+ "baseType": {
2776
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.RelationalQueryableMethodTranslatingExpressionVisitor",
2777
+ "clrName": "Microsoft.EntityFrameworkCore.Query.RelationalQueryableMethodTranslatingExpressionVisitor"
2778
+ },
2779
+ "methods": [
2780
+ {
2781
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQueryableMethodTranslatingExpressionVisitor::CreateSubqueryVisitor():Microsoft.EntityFrameworkCore.Query.QueryableMethodTranslatingExpressionVisitor",
2782
+ "clrName": "CreateSubqueryVisitor",
2783
+ "metadataToken": 100664871,
2784
+ "canonicalSignature": "():Microsoft.EntityFrameworkCore.Query.QueryableMethodTranslatingExpressionVisitor",
2785
+ "normalizedSignature": "CreateSubqueryVisitor|():Microsoft.EntityFrameworkCore.Query.QueryableMethodTranslatingExpressionVisitor|static=false",
2786
+ "emitScope": "ClassSurface",
2787
+ "provenance": "Original",
2788
+ "arity": 0,
2789
+ "parameterCount": 0,
2790
+ "isStatic": false,
2791
+ "isAbstract": false,
2792
+ "isVirtual": true,
2793
+ "isOverride": true,
2794
+ "isSealed": false,
2795
+ "visibility": "Protected",
2796
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQueryableMethodTranslatingExpressionVisitor",
2797
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
2798
+ "isExtensionMethod": false
2799
+ },
2800
+ {
2801
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQueryableMethodTranslatingExpressionVisitor::VisitExtension(System.Linq.Expressions.Expression):System.Linq.Expressions.Expression",
2802
+ "clrName": "VisitExtension",
2803
+ "metadataToken": 100664872,
2804
+ "canonicalSignature": "(System.Linq.Expressions.Expression):System.Linq.Expressions.Expression",
2805
+ "normalizedSignature": "VisitExtension|(System.Linq.Expressions.Expression):System.Linq.Expressions.Expression|static=false",
2806
+ "emitScope": "ClassSurface",
2807
+ "provenance": "Original",
2808
+ "arity": 0,
2809
+ "parameterCount": 1,
2810
+ "isStatic": false,
2811
+ "isAbstract": false,
2812
+ "isVirtual": true,
2813
+ "isOverride": true,
2814
+ "isSealed": false,
2815
+ "visibility": "Protected",
2816
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQueryableMethodTranslatingExpressionVisitor",
2817
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
2818
+ "isExtensionMethod": false
2819
+ },
2820
+ {
2821
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQueryableMethodTranslatingExpressionVisitor::TranslatePrimitiveCollection(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,Microsoft.EntityFrameworkCore.Metadata.IProperty,System.String):Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression",
2822
+ "clrName": "TranslatePrimitiveCollection",
2823
+ "metadataToken": 100664873,
2824
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,Microsoft.EntityFrameworkCore.Metadata.IProperty,System.String):Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression",
2825
+ "normalizedSignature": "TranslatePrimitiveCollection|(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,Microsoft.EntityFrameworkCore.Metadata.IProperty,System.String):Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression|static=false",
2826
+ "emitScope": "ClassSurface",
2827
+ "provenance": "Original",
2828
+ "arity": 0,
2829
+ "parameterCount": 3,
2830
+ "isStatic": false,
2831
+ "isAbstract": false,
2832
+ "isVirtual": true,
2833
+ "isOverride": true,
2834
+ "isSealed": false,
2835
+ "visibility": "Protected",
2836
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQueryableMethodTranslatingExpressionVisitor",
2837
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
2838
+ "isExtensionMethod": false
2839
+ },
2840
+ {
2841
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQueryableMethodTranslatingExpressionVisitor::TransformJsonQueryToTable(Microsoft.EntityFrameworkCore.Query.JsonQueryExpression):Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression",
2842
+ "clrName": "TransformJsonQueryToTable",
2843
+ "metadataToken": 100664874,
2844
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.JsonQueryExpression):Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression",
2845
+ "normalizedSignature": "TransformJsonQueryToTable|(Microsoft.EntityFrameworkCore.Query.JsonQueryExpression):Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression|static=false",
2846
+ "emitScope": "ClassSurface",
2847
+ "provenance": "Original",
2848
+ "arity": 0,
2849
+ "parameterCount": 1,
2850
+ "isStatic": false,
2851
+ "isAbstract": false,
2852
+ "isVirtual": true,
2853
+ "isOverride": true,
2854
+ "isSealed": false,
2855
+ "visibility": "Protected",
2856
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQueryableMethodTranslatingExpressionVisitor",
2857
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
2858
+ "isExtensionMethod": false
2859
+ },
2860
+ {
2861
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQueryableMethodTranslatingExpressionVisitor::TranslateElementAtOrDefault(Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression,System.Linq.Expressions.Expression,System.Boolean):Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression",
2862
+ "clrName": "TranslateElementAtOrDefault",
2863
+ "metadataToken": 100664875,
2864
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression,System.Linq.Expressions.Expression,System.Boolean):Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression",
2865
+ "normalizedSignature": "TranslateElementAtOrDefault|(Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression,System.Linq.Expressions.Expression,System.Boolean):Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression|static=false",
2866
+ "emitScope": "ClassSurface",
2867
+ "provenance": "Original",
2868
+ "arity": 0,
2869
+ "parameterCount": 3,
2870
+ "isStatic": false,
2871
+ "isAbstract": false,
2872
+ "isVirtual": true,
2873
+ "isOverride": true,
2874
+ "isSealed": false,
2875
+ "visibility": "Protected",
2876
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQueryableMethodTranslatingExpressionVisitor",
2877
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
2878
+ "isExtensionMethod": false
2879
+ },
2880
+ {
2881
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQueryableMethodTranslatingExpressionVisitor::IsNaturallyOrdered(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression):System.Boolean",
2882
+ "clrName": "IsNaturallyOrdered",
2883
+ "metadataToken": 100664876,
2884
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression):System.Boolean",
2885
+ "normalizedSignature": "IsNaturallyOrdered|(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression):System.Boolean|static=false",
2886
+ "emitScope": "ClassSurface",
2887
+ "provenance": "Original",
2888
+ "arity": 0,
2889
+ "parameterCount": 1,
2890
+ "isStatic": false,
2891
+ "isAbstract": false,
2892
+ "isVirtual": true,
2893
+ "isOverride": true,
2894
+ "isSealed": false,
2895
+ "visibility": "Protected",
2896
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQueryableMethodTranslatingExpressionVisitor",
2897
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
2898
+ "isExtensionMethod": false
2899
+ },
2900
+ {
2901
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQueryableMethodTranslatingExpressionVisitor::IsValidSelectExpressionForExecuteDelete(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression):System.Boolean",
2902
+ "clrName": "IsValidSelectExpressionForExecuteDelete",
2903
+ "metadataToken": 100664877,
2904
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression):System.Boolean",
2905
+ "normalizedSignature": "IsValidSelectExpressionForExecuteDelete|(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression):System.Boolean|static=false",
2906
+ "emitScope": "ClassSurface",
2907
+ "provenance": "Original",
2908
+ "arity": 0,
2909
+ "parameterCount": 1,
2910
+ "isStatic": false,
2911
+ "isAbstract": false,
2912
+ "isVirtual": true,
2913
+ "isOverride": true,
2914
+ "isSealed": false,
2915
+ "visibility": "Protected",
2916
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQueryableMethodTranslatingExpressionVisitor",
2917
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
2918
+ "isExtensionMethod": false
2919
+ },
2920
+ {
2921
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQueryableMethodTranslatingExpressionVisitor::IsValidSelectExpressionForExecuteUpdate(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression,Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase,Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpression\u0026):System.Boolean",
2922
+ "clrName": "IsValidSelectExpressionForExecuteUpdate",
2923
+ "metadataToken": 100664878,
2924
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression,Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase,Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpression\u0026):System.Boolean",
2925
+ "normalizedSignature": "IsValidSelectExpressionForExecuteUpdate|(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression,Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase,Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpression\u0026):System.Boolean|static=false",
2926
+ "emitScope": "ClassSurface",
2927
+ "provenance": "Original",
2928
+ "arity": 0,
2929
+ "parameterCount": 3,
2930
+ "isStatic": false,
2931
+ "isAbstract": false,
2932
+ "isVirtual": true,
2933
+ "isOverride": true,
2934
+ "isSealed": false,
2935
+ "visibility": "Protected",
2936
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQueryableMethodTranslatingExpressionVisitor",
2937
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
2938
+ "isExtensionMethod": false,
2939
+ "parameterModifiers": [
2940
+ {
2941
+ "index": 2,
2942
+ "modifier": "out"
2943
+ }
2944
+ ]
2945
+ },
2946
+ {
2947
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQueryableMethodTranslatingExpressionVisitor::TryTranslateSetters(Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression,System.Collections.Generic.IReadOnlyList_1[[Microsoft.EntityFrameworkCore.Query.QueryableMethodTranslatingExpressionVisitor\u002BExecuteUpdateSetter,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]],System.Collections.Generic.IReadOnlyList_1[[Microsoft.EntityFrameworkCore.Query.SqlExpressions.ColumnValueSetter,Microsoft.EntityFrameworkCore.Relational,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]\u0026,Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase\u0026):System.Boolean",
2948
+ "clrName": "TryTranslateSetters",
2949
+ "metadataToken": 100664879,
2950
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression,System.Collections.Generic.IReadOnlyList_1[[Microsoft.EntityFrameworkCore.Query.QueryableMethodTranslatingExpressionVisitor\u002BExecuteUpdateSetter,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]],System.Collections.Generic.IReadOnlyList_1[[Microsoft.EntityFrameworkCore.Query.SqlExpressions.ColumnValueSetter,Microsoft.EntityFrameworkCore.Relational,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]\u0026,Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase\u0026):System.Boolean",
2951
+ "normalizedSignature": "TryTranslateSetters|(Microsoft.EntityFrameworkCore.Query.ShapedQueryExpression,System.Collections.Generic.IReadOnlyList_1[[Microsoft.EntityFrameworkCore.Query.QueryableMethodTranslatingExpressionVisitor\u002BExecuteUpdateSetter,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]],System.Collections.Generic.IReadOnlyList_1[[Microsoft.EntityFrameworkCore.Query.SqlExpressions.ColumnValueSetter,Microsoft.EntityFrameworkCore.Relational,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]\u0026,Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase\u0026):System.Boolean|static=false",
2952
+ "emitScope": "ClassSurface",
2953
+ "provenance": "Original",
2954
+ "arity": 0,
2955
+ "parameterCount": 4,
2956
+ "isStatic": false,
2957
+ "isAbstract": false,
2958
+ "isVirtual": true,
2959
+ "isOverride": true,
2960
+ "isSealed": false,
2961
+ "visibility": "Protected",
2962
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQueryableMethodTranslatingExpressionVisitor",
2963
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
2964
+ "isExtensionMethod": false,
2965
+ "parameterModifiers": [
2966
+ {
2967
+ "index": 2,
2968
+ "modifier": "out"
2969
+ },
2970
+ {
2971
+ "index": 3,
2972
+ "modifier": "out"
2973
+ }
2974
+ ]
2975
+ },
2976
+ {
2977
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQueryableMethodTranslatingExpressionVisitor::TrySerializeScalarToJson(Microsoft.EntityFrameworkCore.Query.SqlExpressions.JsonScalarExpression,Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression\u0026):System.Boolean",
2978
+ "clrName": "TrySerializeScalarToJson",
2979
+ "metadataToken": 100664880,
2980
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.SqlExpressions.JsonScalarExpression,Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression\u0026):System.Boolean",
2981
+ "normalizedSignature": "TrySerializeScalarToJson|(Microsoft.EntityFrameworkCore.Query.SqlExpressions.JsonScalarExpression,Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression\u0026):System.Boolean|static=false",
2982
+ "emitScope": "ClassSurface",
2983
+ "provenance": "Original",
2984
+ "arity": 0,
2985
+ "parameterCount": 3,
2986
+ "isStatic": false,
2987
+ "isAbstract": false,
2988
+ "isVirtual": true,
2989
+ "isOverride": true,
2990
+ "isSealed": false,
2991
+ "visibility": "Protected",
2992
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQueryableMethodTranslatingExpressionVisitor",
2993
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
2994
+ "isExtensionMethod": false,
2995
+ "parameterModifiers": [
2996
+ {
2997
+ "index": 2,
2998
+ "modifier": "out"
2999
+ }
3000
+ ]
3001
+ },
3002
+ {
3003
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQueryableMethodTranslatingExpressionVisitor::GenerateJsonPartialUpdateSetter(System.Linq.Expressions.Expression,Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression\u0026):Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression",
3004
+ "clrName": "GenerateJsonPartialUpdateSetter",
3005
+ "metadataToken": 100664881,
3006
+ "canonicalSignature": "(System.Linq.Expressions.Expression,Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression\u0026):Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression",
3007
+ "normalizedSignature": "GenerateJsonPartialUpdateSetter|(System.Linq.Expressions.Expression,Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression\u0026):Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression|static=false",
3008
+ "emitScope": "ClassSurface",
3009
+ "provenance": "Original",
3010
+ "arity": 0,
3011
+ "parameterCount": 3,
3012
+ "isStatic": false,
3013
+ "isAbstract": false,
3014
+ "isVirtual": true,
3015
+ "isOverride": true,
3016
+ "isSealed": false,
3017
+ "visibility": "Protected",
3018
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQueryableMethodTranslatingExpressionVisitor",
3019
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
3020
+ "isExtensionMethod": false,
3021
+ "parameterModifiers": [
3022
+ {
3023
+ "index": 2,
3024
+ "modifier": "ref"
3025
+ }
3026
+ ]
3027
+ }
3028
+ ],
2085
3029
  "properties": [],
2086
3030
  "fields": [],
2087
3031
  "events": [],
@@ -2093,6 +3037,18 @@
2093
3037
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.QueryableMethodTranslatingExpressionVisitorDependencies,Microsoft.EntityFrameworkCore.Query.RelationalQueryableMethodTranslatingExpressionVisitorDependencies,Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQueryCompilationContext,Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.ISqlServerSingletonOptions):void|static=false",
2094
3038
  "isStatic": false,
2095
3039
  "parameterCount": 4,
3040
+ "visibility": "Public",
3041
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQueryableMethodTranslatingExpressionVisitor",
3042
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
3043
+ },
3044
+ {
3045
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQueryableMethodTranslatingExpressionVisitor::.ctor(Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQueryableMethodTranslatingExpressionVisitor):void",
3046
+ "metadataToken": 100664870,
3047
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQueryableMethodTranslatingExpressionVisitor):void",
3048
+ "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQueryableMethodTranslatingExpressionVisitor):void|static=false",
3049
+ "isStatic": false,
3050
+ "parameterCount": 1,
3051
+ "visibility": "Protected",
2096
3052
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQueryableMethodTranslatingExpressionVisitor",
2097
3053
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
2098
3054
  }
@@ -2109,6 +3065,16 @@
2109
3065
  "isSealed": false,
2110
3066
  "isStatic": false,
2111
3067
  "arity": 0,
3068
+ "baseType": {
3069
+ "stableId": "System.Private.CoreLib:System.Object",
3070
+ "clrName": "System.Object"
3071
+ },
3072
+ "interfaces": [
3073
+ {
3074
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Query.IQueryableMethodTranslatingExpressionVisitorFactory",
3075
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IQueryableMethodTranslatingExpressionVisitorFactory"
3076
+ }
3077
+ ],
2112
3078
  "methods": [
2113
3079
  {
2114
3080
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQueryableMethodTranslatingExpressionVisitorFactory::Create(Microsoft.EntityFrameworkCore.Query.QueryCompilationContext):Microsoft.EntityFrameworkCore.Query.QueryableMethodTranslatingExpressionVisitor",
@@ -2125,12 +3091,52 @@
2125
3091
  "isVirtual": true,
2126
3092
  "isOverride": false,
2127
3093
  "isSealed": false,
3094
+ "visibility": "Public",
2128
3095
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQueryableMethodTranslatingExpressionVisitorFactory",
2129
3096
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
2130
3097
  "isExtensionMethod": false
2131
3098
  }
2132
3099
  ],
2133
- "properties": [],
3100
+ "properties": [
3101
+ {
3102
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQueryableMethodTranslatingExpressionVisitorFactory::Dependencies:Microsoft.EntityFrameworkCore.Query.QueryableMethodTranslatingExpressionVisitorDependencies",
3103
+ "clrName": "Dependencies",
3104
+ "metadataToken": 385876156,
3105
+ "canonicalSignature": ":Microsoft.EntityFrameworkCore.Query.QueryableMethodTranslatingExpressionVisitorDependencies",
3106
+ "normalizedSignature": "Dependencies|:Microsoft.EntityFrameworkCore.Query.QueryableMethodTranslatingExpressionVisitorDependencies|static=false|accessor=get",
3107
+ "emitScope": "ClassSurface",
3108
+ "provenance": "Original",
3109
+ "isIndexer": false,
3110
+ "hasGetter": true,
3111
+ "hasSetter": false,
3112
+ "isStatic": false,
3113
+ "isAbstract": false,
3114
+ "isVirtual": true,
3115
+ "isOverride": false,
3116
+ "visibility": "Protected",
3117
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQueryableMethodTranslatingExpressionVisitorFactory",
3118
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
3119
+ },
3120
+ {
3121
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQueryableMethodTranslatingExpressionVisitorFactory::RelationalDependencies:Microsoft.EntityFrameworkCore.Query.RelationalQueryableMethodTranslatingExpressionVisitorDependencies",
3122
+ "clrName": "RelationalDependencies",
3123
+ "metadataToken": 385876157,
3124
+ "canonicalSignature": ":Microsoft.EntityFrameworkCore.Query.RelationalQueryableMethodTranslatingExpressionVisitorDependencies",
3125
+ "normalizedSignature": "RelationalDependencies|:Microsoft.EntityFrameworkCore.Query.RelationalQueryableMethodTranslatingExpressionVisitorDependencies|static=false|accessor=get",
3126
+ "emitScope": "ClassSurface",
3127
+ "provenance": "Original",
3128
+ "isIndexer": false,
3129
+ "hasGetter": true,
3130
+ "hasSetter": false,
3131
+ "isStatic": false,
3132
+ "isAbstract": false,
3133
+ "isVirtual": true,
3134
+ "isOverride": false,
3135
+ "visibility": "Protected",
3136
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQueryableMethodTranslatingExpressionVisitorFactory",
3137
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
3138
+ }
3139
+ ],
2134
3140
  "fields": [],
2135
3141
  "events": [],
2136
3142
  "constructors": [
@@ -2141,6 +3147,7 @@
2141
3147
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.QueryableMethodTranslatingExpressionVisitorDependencies,Microsoft.EntityFrameworkCore.Query.RelationalQueryableMethodTranslatingExpressionVisitorDependencies,Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.ISqlServerSingletonOptions):void|static=false",
2142
3148
  "isStatic": false,
2143
3149
  "parameterCount": 3,
3150
+ "visibility": "Public",
2144
3151
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQueryableMethodTranslatingExpressionVisitorFactory",
2145
3152
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
2146
3153
  }
@@ -2157,6 +3164,10 @@
2157
3164
  "isSealed": false,
2158
3165
  "isStatic": false,
2159
3166
  "arity": 0,
3167
+ "baseType": {
3168
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.RelationalQueryCompilationContext",
3169
+ "clrName": "Microsoft.EntityFrameworkCore.Query.RelationalQueryCompilationContext"
3170
+ },
2160
3171
  "methods": [],
2161
3172
  "properties": [
2162
3173
  {
@@ -2174,6 +3185,7 @@
2174
3185
  "isAbstract": false,
2175
3186
  "isVirtual": true,
2176
3187
  "isOverride": true,
3188
+ "visibility": "Public",
2177
3189
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQueryCompilationContext",
2178
3190
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
2179
3191
  },
@@ -2192,6 +3204,7 @@
2192
3204
  "isAbstract": false,
2193
3205
  "isVirtual": true,
2194
3206
  "isOverride": true,
3207
+ "visibility": "Public",
2195
3208
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQueryCompilationContext",
2196
3209
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
2197
3210
  }
@@ -2206,6 +3219,7 @@
2206
3219
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.QueryCompilationContextDependencies,Microsoft.EntityFrameworkCore.Query.RelationalQueryCompilationContextDependencies,System.Boolean,System.Boolean):void|static=false",
2207
3220
  "isStatic": false,
2208
3221
  "parameterCount": 4,
3222
+ "visibility": "Public",
2209
3223
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQueryCompilationContext",
2210
3224
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
2211
3225
  },
@@ -2216,6 +3230,7 @@
2216
3230
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.QueryCompilationContextDependencies,Microsoft.EntityFrameworkCore.Query.RelationalQueryCompilationContextDependencies,System.Boolean,System.Boolean,System.Boolean):void|static=false",
2217
3231
  "isStatic": false,
2218
3232
  "parameterCount": 5,
3233
+ "visibility": "Public",
2219
3234
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQueryCompilationContext",
2220
3235
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
2221
3236
  }
@@ -2232,6 +3247,16 @@
2232
3247
  "isSealed": false,
2233
3248
  "isStatic": false,
2234
3249
  "arity": 0,
3250
+ "baseType": {
3251
+ "stableId": "System.Private.CoreLib:System.Object",
3252
+ "clrName": "System.Object"
3253
+ },
3254
+ "interfaces": [
3255
+ {
3256
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Query.IQueryCompilationContextFactory",
3257
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IQueryCompilationContextFactory"
3258
+ }
3259
+ ],
2235
3260
  "methods": [
2236
3261
  {
2237
3262
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQueryCompilationContextFactory::Create(System.Boolean):Microsoft.EntityFrameworkCore.Query.QueryCompilationContext",
@@ -2248,6 +3273,7 @@
2248
3273
  "isVirtual": true,
2249
3274
  "isOverride": false,
2250
3275
  "isSealed": false,
3276
+ "visibility": "Public",
2251
3277
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQueryCompilationContextFactory",
2252
3278
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
2253
3279
  "isExtensionMethod": false
@@ -2267,24 +3293,65 @@
2267
3293
  "isVirtual": true,
2268
3294
  "isOverride": false,
2269
3295
  "isSealed": false,
3296
+ "visibility": "Public",
2270
3297
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQueryCompilationContextFactory",
2271
3298
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
2272
3299
  "isExtensionMethod": false
2273
3300
  }
2274
3301
  ],
2275
- "properties": [],
2276
- "fields": [],
2277
- "events": [],
2278
- "constructors": [
3302
+ "properties": [
2279
3303
  {
2280
- "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQueryCompilationContextFactory::.ctor(Microsoft.EntityFrameworkCore.Query.QueryCompilationContextDependencies,Microsoft.EntityFrameworkCore.Query.RelationalQueryCompilationContextDependencies,Microsoft.EntityFrameworkCore.SqlServer.Storage.Internal.ISqlServerConnection):void",
2281
- "metadataToken": 100664893,
2282
- "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.QueryCompilationContextDependencies,Microsoft.EntityFrameworkCore.Query.RelationalQueryCompilationContextDependencies,Microsoft.EntityFrameworkCore.SqlServer.Storage.Internal.ISqlServerConnection):void",
2283
- "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.QueryCompilationContextDependencies,Microsoft.EntityFrameworkCore.Query.RelationalQueryCompilationContextDependencies,Microsoft.EntityFrameworkCore.SqlServer.Storage.Internal.ISqlServerConnection):void|static=false",
2284
- "isStatic": false,
2285
- "parameterCount": 3,
2286
- "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQueryCompilationContextFactory",
2287
- "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
3304
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQueryCompilationContextFactory::Dependencies:Microsoft.EntityFrameworkCore.Query.QueryCompilationContextDependencies",
3305
+ "clrName": "Dependencies",
3306
+ "metadataToken": 385876160,
3307
+ "canonicalSignature": ":Microsoft.EntityFrameworkCore.Query.QueryCompilationContextDependencies",
3308
+ "normalizedSignature": "Dependencies|:Microsoft.EntityFrameworkCore.Query.QueryCompilationContextDependencies|static=false|accessor=get",
3309
+ "emitScope": "ClassSurface",
3310
+ "provenance": "Original",
3311
+ "isIndexer": false,
3312
+ "hasGetter": true,
3313
+ "hasSetter": false,
3314
+ "isStatic": false,
3315
+ "isAbstract": false,
3316
+ "isVirtual": true,
3317
+ "isOverride": false,
3318
+ "visibility": "Protected",
3319
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQueryCompilationContextFactory",
3320
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
3321
+ },
3322
+ {
3323
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQueryCompilationContextFactory::RelationalDependencies:Microsoft.EntityFrameworkCore.Query.RelationalQueryCompilationContextDependencies",
3324
+ "clrName": "RelationalDependencies",
3325
+ "metadataToken": 385876161,
3326
+ "canonicalSignature": ":Microsoft.EntityFrameworkCore.Query.RelationalQueryCompilationContextDependencies",
3327
+ "normalizedSignature": "RelationalDependencies|:Microsoft.EntityFrameworkCore.Query.RelationalQueryCompilationContextDependencies|static=false|accessor=get",
3328
+ "emitScope": "ClassSurface",
3329
+ "provenance": "Original",
3330
+ "isIndexer": false,
3331
+ "hasGetter": true,
3332
+ "hasSetter": false,
3333
+ "isStatic": false,
3334
+ "isAbstract": false,
3335
+ "isVirtual": true,
3336
+ "isOverride": false,
3337
+ "visibility": "Protected",
3338
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQueryCompilationContextFactory",
3339
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
3340
+ }
3341
+ ],
3342
+ "fields": [],
3343
+ "events": [],
3344
+ "constructors": [
3345
+ {
3346
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQueryCompilationContextFactory::.ctor(Microsoft.EntityFrameworkCore.Query.QueryCompilationContextDependencies,Microsoft.EntityFrameworkCore.Query.RelationalQueryCompilationContextDependencies,Microsoft.EntityFrameworkCore.SqlServer.Storage.Internal.ISqlServerConnection):void",
3347
+ "metadataToken": 100664893,
3348
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.QueryCompilationContextDependencies,Microsoft.EntityFrameworkCore.Query.RelationalQueryCompilationContextDependencies,Microsoft.EntityFrameworkCore.SqlServer.Storage.Internal.ISqlServerConnection):void",
3349
+ "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.QueryCompilationContextDependencies,Microsoft.EntityFrameworkCore.Query.RelationalQueryCompilationContextDependencies,Microsoft.EntityFrameworkCore.SqlServer.Storage.Internal.ISqlServerConnection):void|static=false",
3350
+ "isStatic": false,
3351
+ "parameterCount": 3,
3352
+ "visibility": "Public",
3353
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQueryCompilationContextFactory",
3354
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
2288
3355
  }
2289
3356
  ]
2290
3357
  },
@@ -2299,7 +3366,402 @@
2299
3366
  "isSealed": false,
2300
3367
  "isStatic": false,
2301
3368
  "arity": 0,
2302
- "methods": [],
3369
+ "baseType": {
3370
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.QuerySqlGenerator",
3371
+ "clrName": "Microsoft.EntityFrameworkCore.Query.QuerySqlGenerator"
3372
+ },
3373
+ "methods": [
3374
+ {
3375
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQuerySqlGenerator::TryGenerateWithoutWrappingSelect(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression):System.Boolean",
3376
+ "clrName": "TryGenerateWithoutWrappingSelect",
3377
+ "metadataToken": 100664899,
3378
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression):System.Boolean",
3379
+ "normalizedSignature": "TryGenerateWithoutWrappingSelect|(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression):System.Boolean|static=false",
3380
+ "emitScope": "ClassSurface",
3381
+ "provenance": "Original",
3382
+ "arity": 0,
3383
+ "parameterCount": 1,
3384
+ "isStatic": false,
3385
+ "isAbstract": false,
3386
+ "isVirtual": true,
3387
+ "isOverride": true,
3388
+ "isSealed": false,
3389
+ "visibility": "Protected",
3390
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQuerySqlGenerator",
3391
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
3392
+ "isExtensionMethod": false
3393
+ },
3394
+ {
3395
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQuerySqlGenerator::VisitDelete(Microsoft.EntityFrameworkCore.Query.SqlExpressions.DeleteExpression):System.Linq.Expressions.Expression",
3396
+ "clrName": "VisitDelete",
3397
+ "metadataToken": 100664900,
3398
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.SqlExpressions.DeleteExpression):System.Linq.Expressions.Expression",
3399
+ "normalizedSignature": "VisitDelete|(Microsoft.EntityFrameworkCore.Query.SqlExpressions.DeleteExpression):System.Linq.Expressions.Expression|static=false",
3400
+ "emitScope": "ClassSurface",
3401
+ "provenance": "Original",
3402
+ "arity": 0,
3403
+ "parameterCount": 1,
3404
+ "isStatic": false,
3405
+ "isAbstract": false,
3406
+ "isVirtual": true,
3407
+ "isOverride": true,
3408
+ "isSealed": false,
3409
+ "visibility": "Protected",
3410
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQuerySqlGenerator",
3411
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
3412
+ "isExtensionMethod": false
3413
+ },
3414
+ {
3415
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQuerySqlGenerator::VisitSelect(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression):System.Linq.Expressions.Expression",
3416
+ "clrName": "VisitSelect",
3417
+ "metadataToken": 100664901,
3418
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression):System.Linq.Expressions.Expression",
3419
+ "normalizedSignature": "VisitSelect|(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression):System.Linq.Expressions.Expression|static=false",
3420
+ "emitScope": "ClassSurface",
3421
+ "provenance": "Original",
3422
+ "arity": 0,
3423
+ "parameterCount": 1,
3424
+ "isStatic": false,
3425
+ "isAbstract": false,
3426
+ "isVirtual": true,
3427
+ "isOverride": true,
3428
+ "isSealed": false,
3429
+ "visibility": "Protected",
3430
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQuerySqlGenerator",
3431
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
3432
+ "isExtensionMethod": false
3433
+ },
3434
+ {
3435
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQuerySqlGenerator::VisitUpdate(Microsoft.EntityFrameworkCore.Query.SqlExpressions.UpdateExpression):System.Linq.Expressions.Expression",
3436
+ "clrName": "VisitUpdate",
3437
+ "metadataToken": 100664902,
3438
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.SqlExpressions.UpdateExpression):System.Linq.Expressions.Expression",
3439
+ "normalizedSignature": "VisitUpdate|(Microsoft.EntityFrameworkCore.Query.SqlExpressions.UpdateExpression):System.Linq.Expressions.Expression|static=false",
3440
+ "emitScope": "ClassSurface",
3441
+ "provenance": "Original",
3442
+ "arity": 0,
3443
+ "parameterCount": 1,
3444
+ "isStatic": false,
3445
+ "isAbstract": false,
3446
+ "isVirtual": true,
3447
+ "isOverride": true,
3448
+ "isSealed": false,
3449
+ "visibility": "Protected",
3450
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQuerySqlGenerator",
3451
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
3452
+ "isExtensionMethod": false
3453
+ },
3454
+ {
3455
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQuerySqlGenerator::VisitValues(Microsoft.EntityFrameworkCore.Query.SqlExpressions.ValuesExpression):System.Linq.Expressions.Expression",
3456
+ "clrName": "VisitValues",
3457
+ "metadataToken": 100664903,
3458
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.SqlExpressions.ValuesExpression):System.Linq.Expressions.Expression",
3459
+ "normalizedSignature": "VisitValues|(Microsoft.EntityFrameworkCore.Query.SqlExpressions.ValuesExpression):System.Linq.Expressions.Expression|static=false",
3460
+ "emitScope": "ClassSurface",
3461
+ "provenance": "Original",
3462
+ "arity": 0,
3463
+ "parameterCount": 1,
3464
+ "isStatic": false,
3465
+ "isAbstract": false,
3466
+ "isVirtual": true,
3467
+ "isOverride": true,
3468
+ "isSealed": false,
3469
+ "visibility": "Protected",
3470
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQuerySqlGenerator",
3471
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
3472
+ "isExtensionMethod": false
3473
+ },
3474
+ {
3475
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQuerySqlGenerator::VisitSqlConstant(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlConstantExpression):System.Linq.Expressions.Expression",
3476
+ "clrName": "VisitSqlConstant",
3477
+ "metadataToken": 100664904,
3478
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlConstantExpression):System.Linq.Expressions.Expression",
3479
+ "normalizedSignature": "VisitSqlConstant|(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlConstantExpression):System.Linq.Expressions.Expression|static=false",
3480
+ "emitScope": "ClassSurface",
3481
+ "provenance": "Original",
3482
+ "arity": 0,
3483
+ "parameterCount": 1,
3484
+ "isStatic": false,
3485
+ "isAbstract": false,
3486
+ "isVirtual": true,
3487
+ "isOverride": true,
3488
+ "isSealed": false,
3489
+ "visibility": "Protected",
3490
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQuerySqlGenerator",
3491
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
3492
+ "isExtensionMethod": false
3493
+ },
3494
+ {
3495
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQuerySqlGenerator::VisitSqlFunction(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlFunctionExpression):System.Linq.Expressions.Expression",
3496
+ "clrName": "VisitSqlFunction",
3497
+ "metadataToken": 100664905,
3498
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlFunctionExpression):System.Linq.Expressions.Expression",
3499
+ "normalizedSignature": "VisitSqlFunction|(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlFunctionExpression):System.Linq.Expressions.Expression|static=false",
3500
+ "emitScope": "ClassSurface",
3501
+ "provenance": "Original",
3502
+ "arity": 0,
3503
+ "parameterCount": 1,
3504
+ "isStatic": false,
3505
+ "isAbstract": false,
3506
+ "isVirtual": true,
3507
+ "isOverride": true,
3508
+ "isSealed": false,
3509
+ "visibility": "Protected",
3510
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQuerySqlGenerator",
3511
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
3512
+ "isExtensionMethod": false
3513
+ },
3514
+ {
3515
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQuerySqlGenerator::GenerateValues(Microsoft.EntityFrameworkCore.Query.SqlExpressions.ValuesExpression):System.Void",
3516
+ "clrName": "GenerateValues",
3517
+ "metadataToken": 100664906,
3518
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.SqlExpressions.ValuesExpression):System.Void",
3519
+ "normalizedSignature": "GenerateValues|(Microsoft.EntityFrameworkCore.Query.SqlExpressions.ValuesExpression):System.Void|static=false",
3520
+ "emitScope": "ClassSurface",
3521
+ "provenance": "Original",
3522
+ "arity": 0,
3523
+ "parameterCount": 1,
3524
+ "isStatic": false,
3525
+ "isAbstract": false,
3526
+ "isVirtual": true,
3527
+ "isOverride": true,
3528
+ "isSealed": false,
3529
+ "visibility": "Protected",
3530
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQuerySqlGenerator",
3531
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
3532
+ "isExtensionMethod": false
3533
+ },
3534
+ {
3535
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQuerySqlGenerator::GenerateTop(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression):System.Void",
3536
+ "clrName": "GenerateTop",
3537
+ "metadataToken": 100664907,
3538
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression):System.Void",
3539
+ "normalizedSignature": "GenerateTop|(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression):System.Void|static=false",
3540
+ "emitScope": "ClassSurface",
3541
+ "provenance": "Original",
3542
+ "arity": 0,
3543
+ "parameterCount": 1,
3544
+ "isStatic": false,
3545
+ "isAbstract": false,
3546
+ "isVirtual": true,
3547
+ "isOverride": true,
3548
+ "isSealed": false,
3549
+ "visibility": "Protected",
3550
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQuerySqlGenerator",
3551
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
3552
+ "isExtensionMethod": false
3553
+ },
3554
+ {
3555
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQuerySqlGenerator::GenerateProjection(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression):System.Void",
3556
+ "clrName": "GenerateProjection",
3557
+ "metadataToken": 100664908,
3558
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression):System.Void",
3559
+ "normalizedSignature": "GenerateProjection|(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression):System.Void|static=false",
3560
+ "emitScope": "ClassSurface",
3561
+ "provenance": "Original",
3562
+ "arity": 0,
3563
+ "parameterCount": 1,
3564
+ "isStatic": false,
3565
+ "isAbstract": false,
3566
+ "isVirtual": true,
3567
+ "isOverride": true,
3568
+ "isSealed": false,
3569
+ "visibility": "Protected",
3570
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQuerySqlGenerator",
3571
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
3572
+ "isExtensionMethod": false
3573
+ },
3574
+ {
3575
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQuerySqlGenerator::GenerateFrom(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression):System.Void",
3576
+ "clrName": "GenerateFrom",
3577
+ "metadataToken": 100664909,
3578
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression):System.Void",
3579
+ "normalizedSignature": "GenerateFrom|(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression):System.Void|static=false",
3580
+ "emitScope": "ClassSurface",
3581
+ "provenance": "Original",
3582
+ "arity": 0,
3583
+ "parameterCount": 1,
3584
+ "isStatic": false,
3585
+ "isAbstract": false,
3586
+ "isVirtual": true,
3587
+ "isOverride": true,
3588
+ "isSealed": false,
3589
+ "visibility": "Protected",
3590
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQuerySqlGenerator",
3591
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
3592
+ "isExtensionMethod": false
3593
+ },
3594
+ {
3595
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQuerySqlGenerator::GenerateOrderings(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression):System.Void",
3596
+ "clrName": "GenerateOrderings",
3597
+ "metadataToken": 100664910,
3598
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression):System.Void",
3599
+ "normalizedSignature": "GenerateOrderings|(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression):System.Void|static=false",
3600
+ "emitScope": "ClassSurface",
3601
+ "provenance": "Original",
3602
+ "arity": 0,
3603
+ "parameterCount": 1,
3604
+ "isStatic": false,
3605
+ "isAbstract": false,
3606
+ "isVirtual": true,
3607
+ "isOverride": true,
3608
+ "isSealed": false,
3609
+ "visibility": "Protected",
3610
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQuerySqlGenerator",
3611
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
3612
+ "isExtensionMethod": false
3613
+ },
3614
+ {
3615
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQuerySqlGenerator::GenerateLimitOffset(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression):System.Void",
3616
+ "clrName": "GenerateLimitOffset",
3617
+ "metadataToken": 100664911,
3618
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression):System.Void",
3619
+ "normalizedSignature": "GenerateLimitOffset|(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression):System.Void|static=false",
3620
+ "emitScope": "ClassSurface",
3621
+ "provenance": "Original",
3622
+ "arity": 0,
3623
+ "parameterCount": 1,
3624
+ "isStatic": false,
3625
+ "isAbstract": false,
3626
+ "isVirtual": true,
3627
+ "isOverride": true,
3628
+ "isSealed": false,
3629
+ "visibility": "Protected",
3630
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQuerySqlGenerator",
3631
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
3632
+ "isExtensionMethod": false
3633
+ },
3634
+ {
3635
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQuerySqlGenerator::VisitSqlServerAggregateFunction(Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerAggregateFunctionExpression):System.Linq.Expressions.Expression",
3636
+ "clrName": "VisitSqlServerAggregateFunction",
3637
+ "metadataToken": 100664912,
3638
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerAggregateFunctionExpression):System.Linq.Expressions.Expression",
3639
+ "normalizedSignature": "VisitSqlServerAggregateFunction|(Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerAggregateFunctionExpression):System.Linq.Expressions.Expression|static=false",
3640
+ "emitScope": "ClassSurface",
3641
+ "provenance": "Original",
3642
+ "arity": 0,
3643
+ "parameterCount": 1,
3644
+ "isStatic": false,
3645
+ "isAbstract": false,
3646
+ "isVirtual": true,
3647
+ "isOverride": false,
3648
+ "isSealed": false,
3649
+ "visibility": "Protected",
3650
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQuerySqlGenerator",
3651
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
3652
+ "isExtensionMethod": false
3653
+ },
3654
+ {
3655
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQuerySqlGenerator::VisitExtension(System.Linq.Expressions.Expression):System.Linq.Expressions.Expression",
3656
+ "clrName": "VisitExtension",
3657
+ "metadataToken": 100664913,
3658
+ "canonicalSignature": "(System.Linq.Expressions.Expression):System.Linq.Expressions.Expression",
3659
+ "normalizedSignature": "VisitExtension|(System.Linq.Expressions.Expression):System.Linq.Expressions.Expression|static=false",
3660
+ "emitScope": "ClassSurface",
3661
+ "provenance": "Original",
3662
+ "arity": 0,
3663
+ "parameterCount": 1,
3664
+ "isStatic": false,
3665
+ "isAbstract": false,
3666
+ "isVirtual": true,
3667
+ "isOverride": true,
3668
+ "isSealed": false,
3669
+ "visibility": "Protected",
3670
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQuerySqlGenerator",
3671
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
3672
+ "isExtensionMethod": false
3673
+ },
3674
+ {
3675
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQuerySqlGenerator::VisitJsonScalar(Microsoft.EntityFrameworkCore.Query.SqlExpressions.JsonScalarExpression):System.Linq.Expressions.Expression",
3676
+ "clrName": "VisitJsonScalar",
3677
+ "metadataToken": 100664914,
3678
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.SqlExpressions.JsonScalarExpression):System.Linq.Expressions.Expression",
3679
+ "normalizedSignature": "VisitJsonScalar|(Microsoft.EntityFrameworkCore.Query.SqlExpressions.JsonScalarExpression):System.Linq.Expressions.Expression|static=false",
3680
+ "emitScope": "ClassSurface",
3681
+ "provenance": "Original",
3682
+ "arity": 0,
3683
+ "parameterCount": 1,
3684
+ "isStatic": false,
3685
+ "isAbstract": false,
3686
+ "isVirtual": true,
3687
+ "isOverride": true,
3688
+ "isSealed": false,
3689
+ "visibility": "Protected",
3690
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQuerySqlGenerator",
3691
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
3692
+ "isExtensionMethod": false
3693
+ },
3694
+ {
3695
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQuerySqlGenerator::VisitOpenJsonExpression(Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerOpenJsonExpression):System.Linq.Expressions.Expression",
3696
+ "clrName": "VisitOpenJsonExpression",
3697
+ "metadataToken": 100664916,
3698
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerOpenJsonExpression):System.Linq.Expressions.Expression",
3699
+ "normalizedSignature": "VisitOpenJsonExpression|(Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerOpenJsonExpression):System.Linq.Expressions.Expression|static=false",
3700
+ "emitScope": "ClassSurface",
3701
+ "provenance": "Original",
3702
+ "arity": 0,
3703
+ "parameterCount": 1,
3704
+ "isStatic": false,
3705
+ "isAbstract": false,
3706
+ "isVirtual": true,
3707
+ "isOverride": false,
3708
+ "isSealed": false,
3709
+ "visibility": "Protected",
3710
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQuerySqlGenerator",
3711
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
3712
+ "isExtensionMethod": false
3713
+ },
3714
+ {
3715
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQuerySqlGenerator::CheckComposableSqlTrimmed(System.ReadOnlySpan_1[[System.Char,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e]]):System.Void",
3716
+ "clrName": "CheckComposableSqlTrimmed",
3717
+ "metadataToken": 100664917,
3718
+ "canonicalSignature": "(System.ReadOnlySpan_1[[System.Char,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e]]):System.Void",
3719
+ "normalizedSignature": "CheckComposableSqlTrimmed|(System.ReadOnlySpan_1[[System.Char,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e]]):System.Void|static=false",
3720
+ "emitScope": "ClassSurface",
3721
+ "provenance": "Original",
3722
+ "arity": 0,
3723
+ "parameterCount": 1,
3724
+ "isStatic": false,
3725
+ "isAbstract": false,
3726
+ "isVirtual": true,
3727
+ "isOverride": true,
3728
+ "isSealed": false,
3729
+ "visibility": "Protected",
3730
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQuerySqlGenerator",
3731
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
3732
+ "isExtensionMethod": false
3733
+ },
3734
+ {
3735
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQuerySqlGenerator::TryGetOperatorInfo(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,System.Int32\u0026,System.Boolean\u0026):System.Boolean",
3736
+ "clrName": "TryGetOperatorInfo",
3737
+ "metadataToken": 100664918,
3738
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,System.Int32\u0026,System.Boolean\u0026):System.Boolean",
3739
+ "normalizedSignature": "TryGetOperatorInfo|(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,System.Int32\u0026,System.Boolean\u0026):System.Boolean|static=false",
3740
+ "emitScope": "ClassSurface",
3741
+ "provenance": "Original",
3742
+ "arity": 0,
3743
+ "parameterCount": 3,
3744
+ "isStatic": false,
3745
+ "isAbstract": false,
3746
+ "isVirtual": true,
3747
+ "isOverride": true,
3748
+ "isSealed": false,
3749
+ "visibility": "Protected",
3750
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQuerySqlGenerator",
3751
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
3752
+ "isExtensionMethod": false,
3753
+ "parameterModifiers": [
3754
+ {
3755
+ "index": 1,
3756
+ "modifier": "out"
3757
+ },
3758
+ {
3759
+ "index": 2,
3760
+ "modifier": "out"
3761
+ }
3762
+ ]
3763
+ }
3764
+ ],
2303
3765
  "properties": [],
2304
3766
  "fields": [],
2305
3767
  "events": [],
@@ -2311,6 +3773,7 @@
2311
3773
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.QuerySqlGeneratorDependencies,Microsoft.EntityFrameworkCore.Storage.IRelationalTypeMappingSource,Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.ISqlServerSingletonOptions):void|static=false",
2312
3774
  "isStatic": false,
2313
3775
  "parameterCount": 3,
3776
+ "visibility": "Public",
2314
3777
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQuerySqlGenerator",
2315
3778
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
2316
3779
  }
@@ -2327,6 +3790,16 @@
2327
3790
  "isSealed": false,
2328
3791
  "isStatic": false,
2329
3792
  "arity": 0,
3793
+ "baseType": {
3794
+ "stableId": "System.Private.CoreLib:System.Object",
3795
+ "clrName": "System.Object"
3796
+ },
3797
+ "interfaces": [
3798
+ {
3799
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.IQuerySqlGeneratorFactory",
3800
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IQuerySqlGeneratorFactory"
3801
+ }
3802
+ ],
2330
3803
  "methods": [
2331
3804
  {
2332
3805
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQuerySqlGeneratorFactory::Create():Microsoft.EntityFrameworkCore.Query.QuerySqlGenerator",
@@ -2343,12 +3816,33 @@
2343
3816
  "isVirtual": true,
2344
3817
  "isOverride": false,
2345
3818
  "isSealed": false,
3819
+ "visibility": "Public",
2346
3820
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQuerySqlGeneratorFactory",
2347
3821
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
2348
3822
  "isExtensionMethod": false
2349
3823
  }
2350
3824
  ],
2351
- "properties": [],
3825
+ "properties": [
3826
+ {
3827
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQuerySqlGeneratorFactory::Dependencies:Microsoft.EntityFrameworkCore.Query.QuerySqlGeneratorDependencies",
3828
+ "clrName": "Dependencies",
3829
+ "metadataToken": 385876162,
3830
+ "canonicalSignature": ":Microsoft.EntityFrameworkCore.Query.QuerySqlGeneratorDependencies",
3831
+ "normalizedSignature": "Dependencies|:Microsoft.EntityFrameworkCore.Query.QuerySqlGeneratorDependencies|static=false|accessor=get",
3832
+ "emitScope": "ClassSurface",
3833
+ "provenance": "Original",
3834
+ "isIndexer": false,
3835
+ "hasGetter": true,
3836
+ "hasSetter": false,
3837
+ "isStatic": false,
3838
+ "isAbstract": false,
3839
+ "isVirtual": true,
3840
+ "isOverride": false,
3841
+ "visibility": "Protected",
3842
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQuerySqlGeneratorFactory",
3843
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
3844
+ }
3845
+ ],
2352
3846
  "fields": [],
2353
3847
  "events": [],
2354
3848
  "constructors": [
@@ -2359,6 +3853,7 @@
2359
3853
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.QuerySqlGeneratorDependencies,Microsoft.EntityFrameworkCore.Storage.IRelationalTypeMappingSource,Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.ISqlServerSingletonOptions):void|static=false",
2360
3854
  "isStatic": false,
2361
3855
  "parameterCount": 3,
3856
+ "visibility": "Public",
2362
3857
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQuerySqlGeneratorFactory",
2363
3858
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
2364
3859
  }
@@ -2375,6 +3870,16 @@
2375
3870
  "isSealed": false,
2376
3871
  "isStatic": false,
2377
3872
  "arity": 0,
3873
+ "baseType": {
3874
+ "stableId": "System.Private.CoreLib:System.Object",
3875
+ "clrName": "System.Object"
3876
+ },
3877
+ "interfaces": [
3878
+ {
3879
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.IRelationalQueryStringFactory",
3880
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IRelationalQueryStringFactory"
3881
+ }
3882
+ ],
2378
3883
  "methods": [
2379
3884
  {
2380
3885
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQueryStringFactory::Create(System.Data.Common.DbCommand):System.String",
@@ -2391,6 +3896,7 @@
2391
3896
  "isVirtual": true,
2392
3897
  "isOverride": false,
2393
3898
  "isSealed": false,
3899
+ "visibility": "Public",
2394
3900
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQueryStringFactory",
2395
3901
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
2396
3902
  "isExtensionMethod": false
@@ -2407,6 +3913,7 @@
2407
3913
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Storage.IRelationalTypeMappingSource):void|static=false",
2408
3914
  "isStatic": false,
2409
3915
  "parameterCount": 1,
3916
+ "visibility": "Public",
2410
3917
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQueryStringFactory",
2411
3918
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
2412
3919
  }
@@ -2423,6 +3930,10 @@
2423
3930
  "isSealed": false,
2424
3931
  "isStatic": false,
2425
3932
  "arity": 0,
3933
+ "baseType": {
3934
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.RelationalQueryTranslationPostprocessor",
3935
+ "clrName": "Microsoft.EntityFrameworkCore.Query.RelationalQueryTranslationPostprocessor"
3936
+ },
2426
3937
  "methods": [
2427
3938
  {
2428
3939
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQueryTranslationPostprocessor::Process(System.Linq.Expressions.Expression):System.Linq.Expressions.Expression",
@@ -2439,6 +3950,47 @@
2439
3950
  "isVirtual": true,
2440
3951
  "isOverride": true,
2441
3952
  "isSealed": false,
3953
+ "visibility": "Public",
3954
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQueryTranslationPostprocessor",
3955
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
3956
+ "isExtensionMethod": false
3957
+ },
3958
+ {
3959
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQueryTranslationPostprocessor::ProcessTypeMappings(System.Linq.Expressions.Expression):System.Linq.Expressions.Expression",
3960
+ "clrName": "ProcessTypeMappings",
3961
+ "metadataToken": 100664939,
3962
+ "canonicalSignature": "(System.Linq.Expressions.Expression):System.Linq.Expressions.Expression",
3963
+ "normalizedSignature": "ProcessTypeMappings|(System.Linq.Expressions.Expression):System.Linq.Expressions.Expression|static=false",
3964
+ "emitScope": "ClassSurface",
3965
+ "provenance": "Original",
3966
+ "arity": 0,
3967
+ "parameterCount": 1,
3968
+ "isStatic": false,
3969
+ "isAbstract": false,
3970
+ "isVirtual": true,
3971
+ "isOverride": true,
3972
+ "isSealed": false,
3973
+ "visibility": "Protected",
3974
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQueryTranslationPostprocessor",
3975
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
3976
+ "isExtensionMethod": false
3977
+ },
3978
+ {
3979
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQueryTranslationPostprocessor::Prune(System.Linq.Expressions.Expression):System.Linq.Expressions.Expression",
3980
+ "clrName": "Prune",
3981
+ "metadataToken": 100664940,
3982
+ "canonicalSignature": "(System.Linq.Expressions.Expression):System.Linq.Expressions.Expression",
3983
+ "normalizedSignature": "Prune|(System.Linq.Expressions.Expression):System.Linq.Expressions.Expression|static=false",
3984
+ "emitScope": "ClassSurface",
3985
+ "provenance": "Original",
3986
+ "arity": 0,
3987
+ "parameterCount": 1,
3988
+ "isStatic": false,
3989
+ "isAbstract": false,
3990
+ "isVirtual": true,
3991
+ "isOverride": true,
3992
+ "isSealed": false,
3993
+ "visibility": "Protected",
2442
3994
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQueryTranslationPostprocessor",
2443
3995
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
2444
3996
  "isExtensionMethod": false
@@ -2455,6 +4007,7 @@
2455
4007
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.QueryTranslationPostprocessorDependencies,Microsoft.EntityFrameworkCore.Query.RelationalQueryTranslationPostprocessorDependencies,Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQueryCompilationContext):void|static=false",
2456
4008
  "isStatic": false,
2457
4009
  "parameterCount": 3,
4010
+ "visibility": "Public",
2458
4011
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQueryTranslationPostprocessor",
2459
4012
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
2460
4013
  }
@@ -2471,6 +4024,16 @@
2471
4024
  "isSealed": false,
2472
4025
  "isStatic": false,
2473
4026
  "arity": 0,
4027
+ "baseType": {
4028
+ "stableId": "System.Private.CoreLib:System.Object",
4029
+ "clrName": "System.Object"
4030
+ },
4031
+ "interfaces": [
4032
+ {
4033
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Query.IQueryTranslationPostprocessorFactory",
4034
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IQueryTranslationPostprocessorFactory"
4035
+ }
4036
+ ],
2474
4037
  "methods": [
2475
4038
  {
2476
4039
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQueryTranslationPostprocessorFactory::Create(Microsoft.EntityFrameworkCore.Query.QueryCompilationContext):Microsoft.EntityFrameworkCore.Query.QueryTranslationPostprocessor",
@@ -2487,12 +4050,52 @@
2487
4050
  "isVirtual": true,
2488
4051
  "isOverride": false,
2489
4052
  "isSealed": false,
4053
+ "visibility": "Public",
2490
4054
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQueryTranslationPostprocessorFactory",
2491
4055
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
2492
4056
  "isExtensionMethod": false
2493
4057
  }
2494
4058
  ],
2495
- "properties": [],
4059
+ "properties": [
4060
+ {
4061
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQueryTranslationPostprocessorFactory::Dependencies:Microsoft.EntityFrameworkCore.Query.QueryTranslationPostprocessorDependencies",
4062
+ "clrName": "Dependencies",
4063
+ "metadataToken": 385876163,
4064
+ "canonicalSignature": ":Microsoft.EntityFrameworkCore.Query.QueryTranslationPostprocessorDependencies",
4065
+ "normalizedSignature": "Dependencies|:Microsoft.EntityFrameworkCore.Query.QueryTranslationPostprocessorDependencies|static=false|accessor=get",
4066
+ "emitScope": "ClassSurface",
4067
+ "provenance": "Original",
4068
+ "isIndexer": false,
4069
+ "hasGetter": true,
4070
+ "hasSetter": false,
4071
+ "isStatic": false,
4072
+ "isAbstract": false,
4073
+ "isVirtual": true,
4074
+ "isOverride": false,
4075
+ "visibility": "Protected",
4076
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQueryTranslationPostprocessorFactory",
4077
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
4078
+ },
4079
+ {
4080
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQueryTranslationPostprocessorFactory::RelationalDependencies:Microsoft.EntityFrameworkCore.Query.RelationalQueryTranslationPostprocessorDependencies",
4081
+ "clrName": "RelationalDependencies",
4082
+ "metadataToken": 385876164,
4083
+ "canonicalSignature": ":Microsoft.EntityFrameworkCore.Query.RelationalQueryTranslationPostprocessorDependencies",
4084
+ "normalizedSignature": "RelationalDependencies|:Microsoft.EntityFrameworkCore.Query.RelationalQueryTranslationPostprocessorDependencies|static=false|accessor=get",
4085
+ "emitScope": "ClassSurface",
4086
+ "provenance": "Original",
4087
+ "isIndexer": false,
4088
+ "hasGetter": true,
4089
+ "hasSetter": false,
4090
+ "isStatic": false,
4091
+ "isAbstract": false,
4092
+ "isVirtual": true,
4093
+ "isOverride": false,
4094
+ "visibility": "Protected",
4095
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQueryTranslationPostprocessorFactory",
4096
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
4097
+ }
4098
+ ],
2496
4099
  "fields": [],
2497
4100
  "events": [],
2498
4101
  "constructors": [
@@ -2503,6 +4106,7 @@
2503
4106
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.QueryTranslationPostprocessorDependencies,Microsoft.EntityFrameworkCore.Query.RelationalQueryTranslationPostprocessorDependencies):void|static=false",
2504
4107
  "isStatic": false,
2505
4108
  "parameterCount": 2,
4109
+ "visibility": "Public",
2506
4110
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQueryTranslationPostprocessorFactory",
2507
4111
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
2508
4112
  }
@@ -2519,6 +4123,16 @@
2519
4123
  "isSealed": false,
2520
4124
  "isStatic": false,
2521
4125
  "arity": 0,
4126
+ "baseType": {
4127
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.SqlExpressionFactory",
4128
+ "clrName": "Microsoft.EntityFrameworkCore.Query.SqlExpressionFactory"
4129
+ },
4130
+ "interfaces": [
4131
+ {
4132
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.ISqlExpressionFactory",
4133
+ "clrName": "Microsoft.EntityFrameworkCore.Query.ISqlExpressionFactory"
4134
+ }
4135
+ ],
2522
4136
  "methods": [
2523
4137
  {
2524
4138
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerSqlExpressionFactory::ApplyTypeMapping(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping):Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression",
@@ -2535,6 +4149,7 @@
2535
4149
  "isVirtual": true,
2536
4150
  "isOverride": true,
2537
4151
  "isSealed": false,
4152
+ "visibility": "Public",
2538
4153
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerSqlExpressionFactory",
2539
4154
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
2540
4155
  "isExtensionMethod": false
@@ -2551,6 +4166,7 @@
2551
4166
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.SqlExpressionFactoryDependencies):void|static=false",
2552
4167
  "isStatic": false,
2553
4168
  "parameterCount": 1,
4169
+ "visibility": "Public",
2554
4170
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerSqlExpressionFactory",
2555
4171
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
2556
4172
  }
@@ -2567,6 +4183,10 @@
2567
4183
  "isSealed": false,
2568
4184
  "isStatic": false,
2569
4185
  "arity": 0,
4186
+ "baseType": {
4187
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.SqlNullabilityProcessor",
4188
+ "clrName": "Microsoft.EntityFrameworkCore.Query.SqlNullabilityProcessor"
4189
+ },
2570
4190
  "methods": [
2571
4191
  {
2572
4192
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerSqlNullabilityProcessor::Process(System.Linq.Expressions.Expression,Microsoft.EntityFrameworkCore.Query.ParametersCacheDecorator):System.Linq.Expressions.Expression",
@@ -2583,12 +4203,197 @@
2583
4203
  "isVirtual": true,
2584
4204
  "isOverride": true,
2585
4205
  "isSealed": false,
4206
+ "visibility": "Public",
4207
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerSqlNullabilityProcessor",
4208
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
4209
+ "isExtensionMethod": false
4210
+ },
4211
+ {
4212
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerSqlNullabilityProcessor::VisitCustomSqlExpression(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,System.Boolean,System.Boolean\u0026):Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression",
4213
+ "clrName": "VisitCustomSqlExpression",
4214
+ "metadataToken": 100664950,
4215
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,System.Boolean,System.Boolean\u0026):Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression",
4216
+ "normalizedSignature": "VisitCustomSqlExpression|(Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,System.Boolean,System.Boolean\u0026):Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression|static=false",
4217
+ "emitScope": "ClassSurface",
4218
+ "provenance": "Original",
4219
+ "arity": 0,
4220
+ "parameterCount": 3,
4221
+ "isStatic": false,
4222
+ "isAbstract": false,
4223
+ "isVirtual": true,
4224
+ "isOverride": true,
4225
+ "isSealed": false,
4226
+ "visibility": "Protected",
4227
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerSqlNullabilityProcessor",
4228
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
4229
+ "isExtensionMethod": false,
4230
+ "parameterModifiers": [
4231
+ {
4232
+ "index": 2,
4233
+ "modifier": "out"
4234
+ }
4235
+ ]
4236
+ },
4237
+ {
4238
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerSqlNullabilityProcessor::VisitSqlServerAggregateFunction(Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerAggregateFunctionExpression,System.Boolean,System.Boolean\u0026):Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression",
4239
+ "clrName": "VisitSqlServerAggregateFunction",
4240
+ "metadataToken": 100664951,
4241
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerAggregateFunctionExpression,System.Boolean,System.Boolean\u0026):Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression",
4242
+ "normalizedSignature": "VisitSqlServerAggregateFunction|(Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerAggregateFunctionExpression,System.Boolean,System.Boolean\u0026):Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression|static=false",
4243
+ "emitScope": "ClassSurface",
4244
+ "provenance": "Original",
4245
+ "arity": 0,
4246
+ "parameterCount": 3,
4247
+ "isStatic": false,
4248
+ "isAbstract": false,
4249
+ "isVirtual": true,
4250
+ "isOverride": false,
4251
+ "isSealed": false,
4252
+ "visibility": "Protected",
4253
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerSqlNullabilityProcessor",
4254
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
4255
+ "isExtensionMethod": false,
4256
+ "parameterModifiers": [
4257
+ {
4258
+ "index": 2,
4259
+ "modifier": "out"
4260
+ }
4261
+ ]
4262
+ },
4263
+ {
4264
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerSqlNullabilityProcessor::IsCollectionTable(Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase,System.Linq.Expressions.Expression\u0026):System.Boolean",
4265
+ "clrName": "IsCollectionTable",
4266
+ "metadataToken": 100664953,
4267
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase,System.Linq.Expressions.Expression\u0026):System.Boolean",
4268
+ "normalizedSignature": "IsCollectionTable|(Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase,System.Linq.Expressions.Expression\u0026):System.Boolean|static=false",
4269
+ "emitScope": "ClassSurface",
4270
+ "provenance": "Original",
4271
+ "arity": 0,
4272
+ "parameterCount": 2,
4273
+ "isStatic": false,
4274
+ "isAbstract": false,
4275
+ "isVirtual": true,
4276
+ "isOverride": true,
4277
+ "isSealed": false,
4278
+ "visibility": "Protected",
4279
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerSqlNullabilityProcessor",
4280
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
4281
+ "isExtensionMethod": false,
4282
+ "parameterModifiers": [
4283
+ {
4284
+ "index": 1,
4285
+ "modifier": "out"
4286
+ }
4287
+ ]
4288
+ },
4289
+ {
4290
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerSqlNullabilityProcessor::UpdateParameterCollection(Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase,Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlParameterExpression):Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase",
4291
+ "clrName": "UpdateParameterCollection",
4292
+ "metadataToken": 100664954,
4293
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase,Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlParameterExpression):Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase",
4294
+ "normalizedSignature": "UpdateParameterCollection|(Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase,Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlParameterExpression):Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpressionBase|static=false",
4295
+ "emitScope": "ClassSurface",
4296
+ "provenance": "Original",
4297
+ "arity": 0,
4298
+ "parameterCount": 2,
4299
+ "isStatic": false,
4300
+ "isAbstract": false,
4301
+ "isVirtual": true,
4302
+ "isOverride": true,
4303
+ "isSealed": false,
4304
+ "visibility": "Protected",
4305
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerSqlNullabilityProcessor",
4306
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
4307
+ "isExtensionMethod": false
4308
+ },
4309
+ {
4310
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerSqlNullabilityProcessor::VisitExtension(System.Linq.Expressions.Expression):System.Linq.Expressions.Expression",
4311
+ "clrName": "VisitExtension",
4312
+ "metadataToken": 100664955,
4313
+ "canonicalSignature": "(System.Linq.Expressions.Expression):System.Linq.Expressions.Expression",
4314
+ "normalizedSignature": "VisitExtension|(System.Linq.Expressions.Expression):System.Linq.Expressions.Expression|static=false",
4315
+ "emitScope": "ClassSurface",
4316
+ "provenance": "Original",
4317
+ "arity": 0,
4318
+ "parameterCount": 1,
4319
+ "isStatic": false,
4320
+ "isAbstract": false,
4321
+ "isVirtual": true,
4322
+ "isOverride": true,
4323
+ "isSealed": false,
4324
+ "visibility": "Protected",
4325
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerSqlNullabilityProcessor",
4326
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
4327
+ "isExtensionMethod": false
4328
+ },
4329
+ {
4330
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerSqlNullabilityProcessor::VisitIn(Microsoft.EntityFrameworkCore.Query.SqlExpressions.InExpression,System.Boolean,System.Boolean\u0026):Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression",
4331
+ "clrName": "VisitIn",
4332
+ "metadataToken": 100664956,
4333
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.SqlExpressions.InExpression,System.Boolean,System.Boolean\u0026):Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression",
4334
+ "normalizedSignature": "VisitIn|(Microsoft.EntityFrameworkCore.Query.SqlExpressions.InExpression,System.Boolean,System.Boolean\u0026):Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression|static=false",
4335
+ "emitScope": "ClassSurface",
4336
+ "provenance": "Original",
4337
+ "arity": 0,
4338
+ "parameterCount": 3,
4339
+ "isStatic": false,
4340
+ "isAbstract": false,
4341
+ "isVirtual": true,
4342
+ "isOverride": true,
4343
+ "isSealed": false,
4344
+ "visibility": "Protected",
4345
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerSqlNullabilityProcessor",
4346
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
4347
+ "isExtensionMethod": false,
4348
+ "parameterModifiers": [
4349
+ {
4350
+ "index": 2,
4351
+ "modifier": "out"
4352
+ }
4353
+ ]
4354
+ },
4355
+ {
4356
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerSqlNullabilityProcessor::CalculateParameterBucketSize(System.Int32,Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping):System.Int32",
4357
+ "clrName": "CalculateParameterBucketSize",
4358
+ "metadataToken": 100664957,
4359
+ "canonicalSignature": "(System.Int32,Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping):System.Int32",
4360
+ "normalizedSignature": "CalculateParameterBucketSize|(System.Int32,Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping):System.Int32|static=false",
4361
+ "emitScope": "ClassSurface",
4362
+ "provenance": "Original",
4363
+ "arity": 0,
4364
+ "parameterCount": 2,
4365
+ "isStatic": false,
4366
+ "isAbstract": false,
4367
+ "isVirtual": true,
4368
+ "isOverride": true,
4369
+ "isSealed": false,
4370
+ "visibility": "Protected",
2586
4371
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerSqlNullabilityProcessor",
2587
4372
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
2588
4373
  "isExtensionMethod": false
2589
4374
  }
2590
4375
  ],
2591
- "properties": [],
4376
+ "properties": [
4377
+ {
4378
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerSqlNullabilityProcessor::PreferExistsToInWithCoalesce:System.Boolean",
4379
+ "clrName": "PreferExistsToInWithCoalesce",
4380
+ "metadataToken": 385876165,
4381
+ "canonicalSignature": ":System.Boolean",
4382
+ "normalizedSignature": "PreferExistsToInWithCoalesce|:System.Boolean|static=false|accessor=get",
4383
+ "emitScope": "ClassSurface",
4384
+ "provenance": "Original",
4385
+ "isIndexer": false,
4386
+ "hasGetter": true,
4387
+ "hasSetter": false,
4388
+ "isStatic": false,
4389
+ "isAbstract": false,
4390
+ "isVirtual": true,
4391
+ "isOverride": true,
4392
+ "visibility": "Protected",
4393
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerSqlNullabilityProcessor",
4394
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
4395
+ }
4396
+ ],
2592
4397
  "fields": [
2593
4398
  {
2594
4399
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerSqlNullabilityProcessor::OpenJsonParameterTableNameSystem.String",
@@ -2598,6 +4403,7 @@
2598
4403
  "isStatic": true,
2599
4404
  "isReadOnly": false,
2600
4405
  "isLiteral": true,
4406
+ "visibility": "Public",
2601
4407
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerSqlNullabilityProcessor",
2602
4408
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
2603
4409
  }
@@ -2611,6 +4417,7 @@
2611
4417
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.RelationalParameterBasedSqlProcessorDependencies,Microsoft.EntityFrameworkCore.Query.RelationalParameterBasedSqlProcessorParameters,Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.ISqlServerSingletonOptions):void|static=false",
2612
4418
  "isStatic": false,
2613
4419
  "parameterCount": 3,
4420
+ "visibility": "Public",
2614
4421
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerSqlNullabilityProcessor",
2615
4422
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
2616
4423
  }
@@ -2627,7 +4434,71 @@
2627
4434
  "isSealed": false,
2628
4435
  "isStatic": false,
2629
4436
  "arity": 0,
4437
+ "baseType": {
4438
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.RelationalSqlTranslatingExpressionVisitor",
4439
+ "clrName": "Microsoft.EntityFrameworkCore.Query.RelationalSqlTranslatingExpressionVisitor"
4440
+ },
2630
4441
  "methods": [
4442
+ {
4443
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerSqlTranslatingExpressionVisitor::VisitBinary(System.Linq.Expressions.BinaryExpression):System.Linq.Expressions.Expression",
4444
+ "clrName": "VisitBinary",
4445
+ "metadataToken": 100664961,
4446
+ "canonicalSignature": "(System.Linq.Expressions.BinaryExpression):System.Linq.Expressions.Expression",
4447
+ "normalizedSignature": "VisitBinary|(System.Linq.Expressions.BinaryExpression):System.Linq.Expressions.Expression|static=false",
4448
+ "emitScope": "ClassSurface",
4449
+ "provenance": "Original",
4450
+ "arity": 0,
4451
+ "parameterCount": 1,
4452
+ "isStatic": false,
4453
+ "isAbstract": false,
4454
+ "isVirtual": true,
4455
+ "isOverride": true,
4456
+ "isSealed": false,
4457
+ "visibility": "Protected",
4458
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerSqlTranslatingExpressionVisitor",
4459
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
4460
+ "isExtensionMethod": false
4461
+ },
4462
+ {
4463
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerSqlTranslatingExpressionVisitor::VisitUnary(System.Linq.Expressions.UnaryExpression):System.Linq.Expressions.Expression",
4464
+ "clrName": "VisitUnary",
4465
+ "metadataToken": 100664962,
4466
+ "canonicalSignature": "(System.Linq.Expressions.UnaryExpression):System.Linq.Expressions.Expression",
4467
+ "normalizedSignature": "VisitUnary|(System.Linq.Expressions.UnaryExpression):System.Linq.Expressions.Expression|static=false",
4468
+ "emitScope": "ClassSurface",
4469
+ "provenance": "Original",
4470
+ "arity": 0,
4471
+ "parameterCount": 1,
4472
+ "isStatic": false,
4473
+ "isAbstract": false,
4474
+ "isVirtual": true,
4475
+ "isOverride": true,
4476
+ "isSealed": false,
4477
+ "visibility": "Protected",
4478
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerSqlTranslatingExpressionVisitor",
4479
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
4480
+ "isExtensionMethod": false
4481
+ },
4482
+ {
4483
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerSqlTranslatingExpressionVisitor::VisitMethodCall(System.Linq.Expressions.MethodCallExpression):System.Linq.Expressions.Expression",
4484
+ "clrName": "VisitMethodCall",
4485
+ "metadataToken": 100664963,
4486
+ "canonicalSignature": "(System.Linq.Expressions.MethodCallExpression):System.Linq.Expressions.Expression",
4487
+ "normalizedSignature": "VisitMethodCall|(System.Linq.Expressions.MethodCallExpression):System.Linq.Expressions.Expression|static=false",
4488
+ "emitScope": "ClassSurface",
4489
+ "provenance": "Original",
4490
+ "arity": 0,
4491
+ "parameterCount": 1,
4492
+ "isStatic": false,
4493
+ "isAbstract": false,
4494
+ "isVirtual": true,
4495
+ "isOverride": true,
4496
+ "isSealed": false,
4497
+ "visibility": "Protected",
4498
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerSqlTranslatingExpressionVisitor",
4499
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
4500
+ "isExtensionMethod": false
4501
+ },
2631
4502
  {
2632
4503
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerSqlTranslatingExpressionVisitor::ConstructLikePatternParameter(Microsoft.EntityFrameworkCore.Query.QueryContext,System.String,Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerSqlTranslatingExpressionVisitor\u002BStartsEndsWithContains):System.String",
2633
4504
  "clrName": "ConstructLikePatternParameter",
@@ -2643,6 +4514,7 @@
2643
4514
  "isVirtual": false,
2644
4515
  "isOverride": false,
2645
4516
  "isSealed": false,
4517
+ "visibility": "Public",
2646
4518
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerSqlTranslatingExpressionVisitor",
2647
4519
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
2648
4520
  "isExtensionMethod": false
@@ -2662,6 +4534,7 @@
2662
4534
  "isVirtual": true,
2663
4535
  "isOverride": true,
2664
4536
  "isSealed": false,
4537
+ "visibility": "Public",
2665
4538
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerSqlTranslatingExpressionVisitor",
2666
4539
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
2667
4540
  "isExtensionMethod": false
@@ -2681,6 +4554,7 @@
2681
4554
  "isVirtual": true,
2682
4555
  "isOverride": true,
2683
4556
  "isSealed": false,
4557
+ "visibility": "Public",
2684
4558
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerSqlTranslatingExpressionVisitor",
2685
4559
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
2686
4560
  "isExtensionMethod": false
@@ -2697,6 +4571,7 @@
2697
4571
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.RelationalSqlTranslatingExpressionVisitorDependencies,Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerQueryCompilationContext,Microsoft.EntityFrameworkCore.Query.QueryableMethodTranslatingExpressionVisitor,Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.ISqlServerSingletonOptions):void|static=false",
2698
4572
  "isStatic": false,
2699
4573
  "parameterCount": 4,
4574
+ "visibility": "Public",
2700
4575
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerSqlTranslatingExpressionVisitor",
2701
4576
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
2702
4577
  }
@@ -2713,6 +4588,16 @@
2713
4588
  "isSealed": false,
2714
4589
  "isStatic": false,
2715
4590
  "arity": 0,
4591
+ "baseType": {
4592
+ "stableId": "System.Private.CoreLib:System.Object",
4593
+ "clrName": "System.Object"
4594
+ },
4595
+ "interfaces": [
4596
+ {
4597
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.IRelationalSqlTranslatingExpressionVisitorFactory",
4598
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IRelationalSqlTranslatingExpressionVisitorFactory"
4599
+ }
4600
+ ],
2716
4601
  "methods": [
2717
4602
  {
2718
4603
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerSqlTranslatingExpressionVisitorFactory::Create(Microsoft.EntityFrameworkCore.Query.QueryCompilationContext,Microsoft.EntityFrameworkCore.Query.QueryableMethodTranslatingExpressionVisitor):Microsoft.EntityFrameworkCore.Query.RelationalSqlTranslatingExpressionVisitor",
@@ -2729,12 +4614,33 @@
2729
4614
  "isVirtual": true,
2730
4615
  "isOverride": false,
2731
4616
  "isSealed": false,
4617
+ "visibility": "Public",
2732
4618
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerSqlTranslatingExpressionVisitorFactory",
2733
4619
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
2734
4620
  "isExtensionMethod": false
2735
4621
  }
2736
4622
  ],
2737
- "properties": [],
4623
+ "properties": [
4624
+ {
4625
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerSqlTranslatingExpressionVisitorFactory::Dependencies:Microsoft.EntityFrameworkCore.Query.RelationalSqlTranslatingExpressionVisitorDependencies",
4626
+ "clrName": "Dependencies",
4627
+ "metadataToken": 385876166,
4628
+ "canonicalSignature": ":Microsoft.EntityFrameworkCore.Query.RelationalSqlTranslatingExpressionVisitorDependencies",
4629
+ "normalizedSignature": "Dependencies|:Microsoft.EntityFrameworkCore.Query.RelationalSqlTranslatingExpressionVisitorDependencies|static=false|accessor=get",
4630
+ "emitScope": "ClassSurface",
4631
+ "provenance": "Original",
4632
+ "isIndexer": false,
4633
+ "hasGetter": true,
4634
+ "hasSetter": false,
4635
+ "isStatic": false,
4636
+ "isAbstract": false,
4637
+ "isVirtual": true,
4638
+ "isOverride": false,
4639
+ "visibility": "Protected",
4640
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerSqlTranslatingExpressionVisitorFactory",
4641
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
4642
+ }
4643
+ ],
2738
4644
  "fields": [],
2739
4645
  "events": [],
2740
4646
  "constructors": [
@@ -2745,6 +4651,7 @@
2745
4651
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.RelationalSqlTranslatingExpressionVisitorDependencies,Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.ISqlServerSingletonOptions):void|static=false",
2746
4652
  "isStatic": false,
2747
4653
  "parameterCount": 2,
4654
+ "visibility": "Public",
2748
4655
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerSqlTranslatingExpressionVisitorFactory",
2749
4656
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
2750
4657
  }
@@ -2761,7 +4668,32 @@
2761
4668
  "isSealed": false,
2762
4669
  "isStatic": false,
2763
4670
  "arity": 0,
2764
- "methods": [],
4671
+ "baseType": {
4672
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.SqlTreePruner",
4673
+ "clrName": "Microsoft.EntityFrameworkCore.Query.SqlTreePruner"
4674
+ },
4675
+ "methods": [
4676
+ {
4677
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerSqlTreePruner::VisitExtension(System.Linq.Expressions.Expression):System.Linq.Expressions.Expression",
4678
+ "clrName": "VisitExtension",
4679
+ "metadataToken": 100664979,
4680
+ "canonicalSignature": "(System.Linq.Expressions.Expression):System.Linq.Expressions.Expression",
4681
+ "normalizedSignature": "VisitExtension|(System.Linq.Expressions.Expression):System.Linq.Expressions.Expression|static=false",
4682
+ "emitScope": "ClassSurface",
4683
+ "provenance": "Original",
4684
+ "arity": 0,
4685
+ "parameterCount": 1,
4686
+ "isStatic": false,
4687
+ "isAbstract": false,
4688
+ "isVirtual": true,
4689
+ "isOverride": true,
4690
+ "isSealed": false,
4691
+ "visibility": "Protected",
4692
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerSqlTreePruner",
4693
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
4694
+ "isExtensionMethod": false
4695
+ }
4696
+ ],
2765
4697
  "properties": [],
2766
4698
  "fields": [],
2767
4699
  "events": [],
@@ -2773,6 +4705,7 @@
2773
4705
  "normalizedSignature": "constructor|():void|static=false",
2774
4706
  "isStatic": false,
2775
4707
  "parameterCount": 0,
4708
+ "visibility": "Public",
2776
4709
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerSqlTreePruner",
2777
4710
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
2778
4711
  }
@@ -2789,6 +4722,16 @@
2789
4722
  "isSealed": false,
2790
4723
  "isStatic": false,
2791
4724
  "arity": 0,
4725
+ "baseType": {
4726
+ "stableId": "System.Private.CoreLib:System.Object",
4727
+ "clrName": "System.Object"
4728
+ },
4729
+ "interfaces": [
4730
+ {
4731
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.IAggregateMethodCallTranslator",
4732
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IAggregateMethodCallTranslator"
4733
+ }
4734
+ ],
2792
4735
  "methods": [
2793
4736
  {
2794
4737
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerStatisticsAggregateMethodTranslator::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",
@@ -2805,6 +4748,7 @@
2805
4748
  "isVirtual": true,
2806
4749
  "isOverride": false,
2807
4750
  "isSealed": false,
4751
+ "visibility": "Public",
2808
4752
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerStatisticsAggregateMethodTranslator",
2809
4753
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
2810
4754
  "isExtensionMethod": false
@@ -2821,6 +4765,7 @@
2821
4765
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.ISqlExpressionFactory,Microsoft.EntityFrameworkCore.Storage.IRelationalTypeMappingSource):void|static=false",
2822
4766
  "isStatic": false,
2823
4767
  "parameterCount": 2,
4768
+ "visibility": "Public",
2824
4769
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerStatisticsAggregateMethodTranslator",
2825
4770
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
2826
4771
  }
@@ -2837,6 +4782,16 @@
2837
4782
  "isSealed": false,
2838
4783
  "isStatic": false,
2839
4784
  "arity": 0,
4785
+ "baseType": {
4786
+ "stableId": "System.Private.CoreLib:System.Object",
4787
+ "clrName": "System.Object"
4788
+ },
4789
+ "interfaces": [
4790
+ {
4791
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.IAggregateMethodCallTranslator",
4792
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IAggregateMethodCallTranslator"
4793
+ }
4794
+ ],
2840
4795
  "methods": [
2841
4796
  {
2842
4797
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerStringAggregateMethodTranslator::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",
@@ -2853,6 +4808,7 @@
2853
4808
  "isVirtual": true,
2854
4809
  "isOverride": false,
2855
4810
  "isSealed": false,
4811
+ "visibility": "Public",
2856
4812
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerStringAggregateMethodTranslator",
2857
4813
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
2858
4814
  "isExtensionMethod": false
@@ -2869,6 +4825,7 @@
2869
4825
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.ISqlExpressionFactory,Microsoft.EntityFrameworkCore.Storage.IRelationalTypeMappingSource):void|static=false",
2870
4826
  "isStatic": false,
2871
4827
  "parameterCount": 2,
4828
+ "visibility": "Public",
2872
4829
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerStringAggregateMethodTranslator",
2873
4830
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
2874
4831
  }
@@ -2885,6 +4842,16 @@
2885
4842
  "isSealed": false,
2886
4843
  "isStatic": false,
2887
4844
  "arity": 0,
4845
+ "baseType": {
4846
+ "stableId": "System.Private.CoreLib:System.Object",
4847
+ "clrName": "System.Object"
4848
+ },
4849
+ "interfaces": [
4850
+ {
4851
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.IMemberTranslator",
4852
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IMemberTranslator"
4853
+ }
4854
+ ],
2888
4855
  "methods": [
2889
4856
  {
2890
4857
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerStringMemberTranslator::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",
@@ -2901,6 +4868,7 @@
2901
4868
  "isVirtual": true,
2902
4869
  "isOverride": false,
2903
4870
  "isSealed": false,
4871
+ "visibility": "Public",
2904
4872
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerStringMemberTranslator",
2905
4873
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
2906
4874
  "isExtensionMethod": false
@@ -2917,6 +4885,7 @@
2917
4885
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.ISqlExpressionFactory):void|static=false",
2918
4886
  "isStatic": false,
2919
4887
  "parameterCount": 1,
4888
+ "visibility": "Public",
2920
4889
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerStringMemberTranslator",
2921
4890
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
2922
4891
  }
@@ -2933,6 +4902,16 @@
2933
4902
  "isSealed": false,
2934
4903
  "isStatic": false,
2935
4904
  "arity": 0,
4905
+ "baseType": {
4906
+ "stableId": "System.Private.CoreLib:System.Object",
4907
+ "clrName": "System.Object"
4908
+ },
4909
+ "interfaces": [
4910
+ {
4911
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.IMethodCallTranslator",
4912
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IMethodCallTranslator"
4913
+ }
4914
+ ],
2936
4915
  "methods": [
2937
4916
  {
2938
4917
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerStringMethodTranslator::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",
@@ -2949,6 +4928,7 @@
2949
4928
  "isVirtual": true,
2950
4929
  "isOverride": false,
2951
4930
  "isSealed": false,
4931
+ "visibility": "Public",
2952
4932
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerStringMethodTranslator",
2953
4933
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
2954
4934
  "isExtensionMethod": false
@@ -2965,6 +4945,7 @@
2965
4945
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.ISqlExpressionFactory,Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.ISqlServerSingletonOptions):void|static=false",
2966
4946
  "isStatic": false,
2967
4947
  "parameterCount": 2,
4948
+ "visibility": "Public",
2968
4949
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerStringMethodTranslator",
2969
4950
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
2970
4951
  }
@@ -2981,6 +4962,16 @@
2981
4962
  "isSealed": false,
2982
4963
  "isStatic": false,
2983
4964
  "arity": 0,
4965
+ "baseType": {
4966
+ "stableId": "System.Private.CoreLib:System.Object",
4967
+ "clrName": "System.Object"
4968
+ },
4969
+ "interfaces": [
4970
+ {
4971
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.IMemberTranslator",
4972
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IMemberTranslator"
4973
+ }
4974
+ ],
2984
4975
  "methods": [
2985
4976
  {
2986
4977
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerTimeOnlyMemberTranslator::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",
@@ -2997,6 +4988,7 @@
2997
4988
  "isVirtual": true,
2998
4989
  "isOverride": false,
2999
4990
  "isSealed": false,
4991
+ "visibility": "Public",
3000
4992
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerTimeOnlyMemberTranslator",
3001
4993
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
3002
4994
  "isExtensionMethod": false
@@ -3013,6 +5005,7 @@
3013
5005
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.ISqlExpressionFactory):void|static=false",
3014
5006
  "isStatic": false,
3015
5007
  "parameterCount": 1,
5008
+ "visibility": "Public",
3016
5009
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerTimeOnlyMemberTranslator",
3017
5010
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
3018
5011
  }
@@ -3029,6 +5022,16 @@
3029
5022
  "isSealed": false,
3030
5023
  "isStatic": false,
3031
5024
  "arity": 0,
5025
+ "baseType": {
5026
+ "stableId": "System.Private.CoreLib:System.Object",
5027
+ "clrName": "System.Object"
5028
+ },
5029
+ "interfaces": [
5030
+ {
5031
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.IMethodCallTranslator",
5032
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IMethodCallTranslator"
5033
+ }
5034
+ ],
3032
5035
  "methods": [
3033
5036
  {
3034
5037
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerTimeOnlyMethodTranslator::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",
@@ -3045,6 +5048,7 @@
3045
5048
  "isVirtual": true,
3046
5049
  "isOverride": false,
3047
5050
  "isSealed": false,
5051
+ "visibility": "Public",
3048
5052
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerTimeOnlyMethodTranslator",
3049
5053
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
3050
5054
  "isExtensionMethod": false
@@ -3061,6 +5065,7 @@
3061
5065
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.ISqlExpressionFactory):void|static=false",
3062
5066
  "isStatic": false,
3063
5067
  "parameterCount": 1,
5068
+ "visibility": "Public",
3064
5069
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerTimeOnlyMethodTranslator",
3065
5070
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
3066
5071
  }
@@ -3077,6 +5082,16 @@
3077
5082
  "isSealed": false,
3078
5083
  "isStatic": false,
3079
5084
  "arity": 0,
5085
+ "baseType": {
5086
+ "stableId": "System.Private.CoreLib:System.Object",
5087
+ "clrName": "System.Object"
5088
+ },
5089
+ "interfaces": [
5090
+ {
5091
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.IMemberTranslator",
5092
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IMemberTranslator"
5093
+ }
5094
+ ],
3080
5095
  "methods": [
3081
5096
  {
3082
5097
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerTimeSpanMemberTranslator::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",
@@ -3093,6 +5108,7 @@
3093
5108
  "isVirtual": true,
3094
5109
  "isOverride": false,
3095
5110
  "isSealed": false,
5111
+ "visibility": "Public",
3096
5112
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerTimeSpanMemberTranslator",
3097
5113
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
3098
5114
  "isExtensionMethod": false
@@ -3109,6 +5125,7 @@
3109
5125
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.ISqlExpressionFactory):void|static=false",
3110
5126
  "isStatic": false,
3111
5127
  "parameterCount": 1,
5128
+ "visibility": "Public",
3112
5129
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerTimeSpanMemberTranslator",
3113
5130
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
3114
5131
  }
@@ -3125,7 +5142,52 @@
3125
5142
  "isSealed": false,
3126
5143
  "isStatic": false,
3127
5144
  "arity": 0,
3128
- "methods": [],
5145
+ "baseType": {
5146
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.RelationalTypeMappingPostprocessor",
5147
+ "clrName": "Microsoft.EntityFrameworkCore.Query.RelationalTypeMappingPostprocessor"
5148
+ },
5149
+ "methods": [
5150
+ {
5151
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerTypeMappingPostprocessor::VisitExtension(System.Linq.Expressions.Expression):System.Linq.Expressions.Expression",
5152
+ "clrName": "VisitExtension",
5153
+ "metadataToken": 100664982,
5154
+ "canonicalSignature": "(System.Linq.Expressions.Expression):System.Linq.Expressions.Expression",
5155
+ "normalizedSignature": "VisitExtension|(System.Linq.Expressions.Expression):System.Linq.Expressions.Expression|static=false",
5156
+ "emitScope": "ClassSurface",
5157
+ "provenance": "Original",
5158
+ "arity": 0,
5159
+ "parameterCount": 1,
5160
+ "isStatic": false,
5161
+ "isAbstract": false,
5162
+ "isVirtual": true,
5163
+ "isOverride": true,
5164
+ "isSealed": false,
5165
+ "visibility": "Protected",
5166
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerTypeMappingPostprocessor",
5167
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
5168
+ "isExtensionMethod": false
5169
+ },
5170
+ {
5171
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerTypeMappingPostprocessor::ApplyTypeMappingsOnOpenJsonExpression(Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerOpenJsonExpression,System.Collections.Generic.IReadOnlyList_1[[Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping,Microsoft.EntityFrameworkCore.Relational,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerOpenJsonExpression",
5172
+ "clrName": "ApplyTypeMappingsOnOpenJsonExpression",
5173
+ "metadataToken": 100664983,
5174
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerOpenJsonExpression,System.Collections.Generic.IReadOnlyList_1[[Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping,Microsoft.EntityFrameworkCore.Relational,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerOpenJsonExpression",
5175
+ "normalizedSignature": "ApplyTypeMappingsOnOpenJsonExpression|(Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerOpenJsonExpression,System.Collections.Generic.IReadOnlyList_1[[Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping,Microsoft.EntityFrameworkCore.Relational,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerOpenJsonExpression|static=false",
5176
+ "emitScope": "ClassSurface",
5177
+ "provenance": "Original",
5178
+ "arity": 0,
5179
+ "parameterCount": 2,
5180
+ "isStatic": false,
5181
+ "isAbstract": false,
5182
+ "isVirtual": true,
5183
+ "isOverride": false,
5184
+ "isSealed": false,
5185
+ "visibility": "Protected",
5186
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerTypeMappingPostprocessor",
5187
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
5188
+ "isExtensionMethod": false
5189
+ }
5190
+ ],
3129
5191
  "properties": [],
3130
5192
  "fields": [],
3131
5193
  "events": [],
@@ -3137,6 +5199,7 @@
3137
5199
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.QueryTranslationPostprocessorDependencies,Microsoft.EntityFrameworkCore.Query.RelationalQueryTranslationPostprocessorDependencies,Microsoft.EntityFrameworkCore.Query.RelationalQueryCompilationContext):void|static=false",
3138
5200
  "isStatic": false,
3139
5201
  "parameterCount": 3,
5202
+ "visibility": "Public",
3140
5203
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerTypeMappingPostprocessor",
3141
5204
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
3142
5205
  }
@@ -3153,6 +5216,20 @@
3153
5216
  "isSealed": false,
3154
5217
  "isStatic": false,
3155
5218
  "arity": 0,
5219
+ "baseType": {
5220
+ "stableId": "System.Private.CoreLib:System.Object",
5221
+ "clrName": "System.Object"
5222
+ },
5223
+ "interfaces": [
5224
+ {
5225
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.IMethodCallTranslator",
5226
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IMethodCallTranslator"
5227
+ },
5228
+ {
5229
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Query.IMemberTranslator",
5230
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IMemberTranslator"
5231
+ }
5232
+ ],
3156
5233
  "methods": [
3157
5234
  {
3158
5235
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerVectorTranslator::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",
@@ -3169,6 +5246,7 @@
3169
5246
  "isVirtual": true,
3170
5247
  "isOverride": false,
3171
5248
  "isSealed": true,
5249
+ "visibility": "Public",
3172
5250
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerVectorTranslator",
3173
5251
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
3174
5252
  "isExtensionMethod": false
@@ -3188,6 +5266,7 @@
3188
5266
  "isVirtual": true,
3189
5267
  "isOverride": false,
3190
5268
  "isSealed": true,
5269
+ "visibility": "Public",
3191
5270
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerVectorTranslator",
3192
5271
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
3193
5272
  "isExtensionMethod": false
@@ -3204,6 +5283,7 @@
3204
5283
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.ISqlExpressionFactory,Microsoft.EntityFrameworkCore.Storage.IRelationalTypeMappingSource):void|static=false",
3205
5284
  "isStatic": false,
3206
5285
  "parameterCount": 2,
5286
+ "visibility": "Public",
3207
5287
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerVectorTranslator",
3208
5288
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
3209
5289
  }
@@ -3220,6 +5300,10 @@
3220
5300
  "isSealed": false,
3221
5301
  "isStatic": false,
3222
5302
  "arity": 0,
5303
+ "baseType": {
5304
+ "stableId": "System.Linq.Expressions:System.Linq.Expressions.ExpressionVisitor",
5305
+ "clrName": "System.Linq.Expressions.ExpressionVisitor"
5306
+ },
3223
5307
  "methods": [
3224
5308
  {
3225
5309
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerZeroLimitConverter::Process(System.Linq.Expressions.Expression,Microsoft.EntityFrameworkCore.Query.ParametersCacheDecorator):System.Linq.Expressions.Expression",
@@ -3236,6 +5320,27 @@
3236
5320
  "isVirtual": true,
3237
5321
  "isOverride": false,
3238
5322
  "isSealed": false,
5323
+ "visibility": "Public",
5324
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerZeroLimitConverter",
5325
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
5326
+ "isExtensionMethod": false
5327
+ },
5328
+ {
5329
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerZeroLimitConverter::VisitExtension(System.Linq.Expressions.Expression):System.Linq.Expressions.Expression",
5330
+ "clrName": "VisitExtension",
5331
+ "metadataToken": 100664986,
5332
+ "canonicalSignature": "(System.Linq.Expressions.Expression):System.Linq.Expressions.Expression",
5333
+ "normalizedSignature": "VisitExtension|(System.Linq.Expressions.Expression):System.Linq.Expressions.Expression|static=false",
5334
+ "emitScope": "ClassSurface",
5335
+ "provenance": "Original",
5336
+ "arity": 0,
5337
+ "parameterCount": 1,
5338
+ "isStatic": false,
5339
+ "isAbstract": false,
5340
+ "isVirtual": true,
5341
+ "isOverride": true,
5342
+ "isSealed": false,
5343
+ "visibility": "Protected",
3239
5344
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerZeroLimitConverter",
3240
5345
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
3241
5346
  "isExtensionMethod": false
@@ -3252,6 +5357,7 @@
3252
5357
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.ISqlExpressionFactory):void|static=false",
3253
5358
  "isStatic": false,
3254
5359
  "parameterCount": 1,
5360
+ "visibility": "Public",
3255
5361
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerZeroLimitConverter",
3256
5362
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
3257
5363
  }
@@ -3268,6 +5374,16 @@
3268
5374
  "isSealed": false,
3269
5375
  "isStatic": false,
3270
5376
  "arity": 0,
5377
+ "baseType": {
5378
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalQueryRootExpression",
5379
+ "clrName": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalQueryRootExpression"
5380
+ },
5381
+ "interfaces": [
5382
+ {
5383
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Query.IPrintableExpression",
5384
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IPrintableExpression"
5385
+ }
5386
+ ],
3271
5387
  "methods": [
3272
5388
  {
3273
5389
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalAllQueryRootExpression::DetachQueryProvider():System.Linq.Expressions.Expression",
@@ -3284,6 +5400,7 @@
3284
5400
  "isVirtual": true,
3285
5401
  "isOverride": true,
3286
5402
  "isSealed": false,
5403
+ "visibility": "Public",
3287
5404
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalAllQueryRootExpression",
3288
5405
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
3289
5406
  "isExtensionMethod": false
@@ -3303,6 +5420,27 @@
3303
5420
  "isVirtual": true,
3304
5421
  "isOverride": true,
3305
5422
  "isSealed": false,
5423
+ "visibility": "Public",
5424
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalAllQueryRootExpression",
5425
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
5426
+ "isExtensionMethod": false
5427
+ },
5428
+ {
5429
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalAllQueryRootExpression::Print(Microsoft.EntityFrameworkCore.Query.ExpressionPrinter):System.Void",
5430
+ "clrName": "Print",
5431
+ "metadataToken": 100664783,
5432
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.ExpressionPrinter):System.Void",
5433
+ "normalizedSignature": "Print|(Microsoft.EntityFrameworkCore.Query.ExpressionPrinter):System.Void|static=false",
5434
+ "emitScope": "ClassSurface",
5435
+ "provenance": "Original",
5436
+ "arity": 0,
5437
+ "parameterCount": 1,
5438
+ "isStatic": false,
5439
+ "isAbstract": false,
5440
+ "isVirtual": true,
5441
+ "isOverride": true,
5442
+ "isSealed": false,
5443
+ "visibility": "Protected",
3306
5444
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalAllQueryRootExpression",
3307
5445
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
3308
5446
  "isExtensionMethod": false
@@ -3322,6 +5460,7 @@
3322
5460
  "isVirtual": true,
3323
5461
  "isOverride": true,
3324
5462
  "isSealed": false,
5463
+ "visibility": "Public",
3325
5464
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalAllQueryRootExpression",
3326
5465
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
3327
5466
  "isExtensionMethod": false
@@ -3341,6 +5480,7 @@
3341
5480
  "isVirtual": true,
3342
5481
  "isOverride": true,
3343
5482
  "isSealed": false,
5483
+ "visibility": "Public",
3344
5484
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalAllQueryRootExpression",
3345
5485
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
3346
5486
  "isExtensionMethod": false
@@ -3357,6 +5497,7 @@
3357
5497
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Metadata.IEntityType):void|static=false",
3358
5498
  "isStatic": false,
3359
5499
  "parameterCount": 1,
5500
+ "visibility": "Public",
3360
5501
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalAllQueryRootExpression",
3361
5502
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
3362
5503
  },
@@ -3367,6 +5508,7 @@
3367
5508
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.IAsyncQueryProvider,Microsoft.EntityFrameworkCore.Metadata.IEntityType):void|static=false",
3368
5509
  "isStatic": false,
3369
5510
  "parameterCount": 2,
5511
+ "visibility": "Public",
3370
5512
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalAllQueryRootExpression",
3371
5513
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
3372
5514
  }
@@ -3383,6 +5525,16 @@
3383
5525
  "isSealed": false,
3384
5526
  "isStatic": false,
3385
5527
  "arity": 0,
5528
+ "baseType": {
5529
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalQueryRootExpression",
5530
+ "clrName": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalQueryRootExpression"
5531
+ },
5532
+ "interfaces": [
5533
+ {
5534
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Query.IPrintableExpression",
5535
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IPrintableExpression"
5536
+ }
5537
+ ],
3386
5538
  "methods": [
3387
5539
  {
3388
5540
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalAsOfQueryRootExpression::DetachQueryProvider():System.Linq.Expressions.Expression",
@@ -3399,6 +5551,7 @@
3399
5551
  "isVirtual": true,
3400
5552
  "isOverride": true,
3401
5553
  "isSealed": false,
5554
+ "visibility": "Public",
3402
5555
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalAsOfQueryRootExpression",
3403
5556
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
3404
5557
  "isExtensionMethod": false
@@ -3418,6 +5571,27 @@
3418
5571
  "isVirtual": true,
3419
5572
  "isOverride": true,
3420
5573
  "isSealed": false,
5574
+ "visibility": "Public",
5575
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalAsOfQueryRootExpression",
5576
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
5577
+ "isExtensionMethod": false
5578
+ },
5579
+ {
5580
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalAsOfQueryRootExpression::Print(Microsoft.EntityFrameworkCore.Query.ExpressionPrinter):System.Void",
5581
+ "clrName": "Print",
5582
+ "metadataToken": 100664792,
5583
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.ExpressionPrinter):System.Void",
5584
+ "normalizedSignature": "Print|(Microsoft.EntityFrameworkCore.Query.ExpressionPrinter):System.Void|static=false",
5585
+ "emitScope": "ClassSurface",
5586
+ "provenance": "Original",
5587
+ "arity": 0,
5588
+ "parameterCount": 1,
5589
+ "isStatic": false,
5590
+ "isAbstract": false,
5591
+ "isVirtual": true,
5592
+ "isOverride": true,
5593
+ "isSealed": false,
5594
+ "visibility": "Protected",
3421
5595
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalAsOfQueryRootExpression",
3422
5596
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
3423
5597
  "isExtensionMethod": false
@@ -3437,6 +5611,7 @@
3437
5611
  "isVirtual": true,
3438
5612
  "isOverride": true,
3439
5613
  "isSealed": false,
5614
+ "visibility": "Public",
3440
5615
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalAsOfQueryRootExpression",
3441
5616
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
3442
5617
  "isExtensionMethod": false
@@ -3456,6 +5631,7 @@
3456
5631
  "isVirtual": true,
3457
5632
  "isOverride": true,
3458
5633
  "isSealed": false,
5634
+ "visibility": "Public",
3459
5635
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalAsOfQueryRootExpression",
3460
5636
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
3461
5637
  "isExtensionMethod": false
@@ -3477,6 +5653,7 @@
3477
5653
  "isAbstract": false,
3478
5654
  "isVirtual": true,
3479
5655
  "isOverride": false,
5656
+ "visibility": "Public",
3480
5657
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalAsOfQueryRootExpression",
3481
5658
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
3482
5659
  }
@@ -3491,6 +5668,7 @@
3491
5668
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Metadata.IEntityType,System.DateTime):void|static=false",
3492
5669
  "isStatic": false,
3493
5670
  "parameterCount": 2,
5671
+ "visibility": "Public",
3494
5672
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalAsOfQueryRootExpression",
3495
5673
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
3496
5674
  },
@@ -3501,6 +5679,7 @@
3501
5679
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.IAsyncQueryProvider,Microsoft.EntityFrameworkCore.Metadata.IEntityType,System.DateTime):void|static=false",
3502
5680
  "isStatic": false,
3503
5681
  "parameterCount": 3,
5682
+ "visibility": "Public",
3504
5683
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalAsOfQueryRootExpression",
3505
5684
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
3506
5685
  }
@@ -3517,6 +5696,16 @@
3517
5696
  "isSealed": false,
3518
5697
  "isStatic": false,
3519
5698
  "arity": 0,
5699
+ "baseType": {
5700
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalRangeQueryRootExpression",
5701
+ "clrName": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalRangeQueryRootExpression"
5702
+ },
5703
+ "interfaces": [
5704
+ {
5705
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Query.IPrintableExpression",
5706
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IPrintableExpression"
5707
+ }
5708
+ ],
3520
5709
  "methods": [
3521
5710
  {
3522
5711
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalBetweenQueryRootExpression::DetachQueryProvider():System.Linq.Expressions.Expression",
@@ -3533,6 +5722,7 @@
3533
5722
  "isVirtual": true,
3534
5723
  "isOverride": true,
3535
5724
  "isSealed": false,
5725
+ "visibility": "Public",
3536
5726
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalBetweenQueryRootExpression",
3537
5727
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
3538
5728
  "isExtensionMethod": false
@@ -3552,6 +5742,27 @@
3552
5742
  "isVirtual": true,
3553
5743
  "isOverride": true,
3554
5744
  "isSealed": false,
5745
+ "visibility": "Public",
5746
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalBetweenQueryRootExpression",
5747
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
5748
+ "isExtensionMethod": false
5749
+ },
5750
+ {
5751
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalBetweenQueryRootExpression::Print(Microsoft.EntityFrameworkCore.Query.ExpressionPrinter):System.Void",
5752
+ "clrName": "Print",
5753
+ "metadataToken": 100664800,
5754
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.ExpressionPrinter):System.Void",
5755
+ "normalizedSignature": "Print|(Microsoft.EntityFrameworkCore.Query.ExpressionPrinter):System.Void|static=false",
5756
+ "emitScope": "ClassSurface",
5757
+ "provenance": "Original",
5758
+ "arity": 0,
5759
+ "parameterCount": 1,
5760
+ "isStatic": false,
5761
+ "isAbstract": false,
5762
+ "isVirtual": true,
5763
+ "isOverride": true,
5764
+ "isSealed": false,
5765
+ "visibility": "Protected",
3555
5766
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalBetweenQueryRootExpression",
3556
5767
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
3557
5768
  "isExtensionMethod": false
@@ -3571,6 +5782,7 @@
3571
5782
  "isVirtual": true,
3572
5783
  "isOverride": true,
3573
5784
  "isSealed": false,
5785
+ "visibility": "Public",
3574
5786
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalBetweenQueryRootExpression",
3575
5787
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
3576
5788
  "isExtensionMethod": false
@@ -3590,6 +5802,7 @@
3590
5802
  "isVirtual": true,
3591
5803
  "isOverride": true,
3592
5804
  "isSealed": false,
5805
+ "visibility": "Public",
3593
5806
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalBetweenQueryRootExpression",
3594
5807
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
3595
5808
  "isExtensionMethod": false
@@ -3606,6 +5819,7 @@
3606
5819
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Metadata.IEntityType,System.DateTime,System.DateTime):void|static=false",
3607
5820
  "isStatic": false,
3608
5821
  "parameterCount": 3,
5822
+ "visibility": "Public",
3609
5823
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalBetweenQueryRootExpression",
3610
5824
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
3611
5825
  },
@@ -3616,6 +5830,7 @@
3616
5830
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.IAsyncQueryProvider,Microsoft.EntityFrameworkCore.Metadata.IEntityType,System.DateTime,System.DateTime):void|static=false",
3617
5831
  "isStatic": false,
3618
5832
  "parameterCount": 4,
5833
+ "visibility": "Public",
3619
5834
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalBetweenQueryRootExpression",
3620
5835
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
3621
5836
  }
@@ -3632,6 +5847,16 @@
3632
5847
  "isSealed": false,
3633
5848
  "isStatic": false,
3634
5849
  "arity": 0,
5850
+ "baseType": {
5851
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalRangeQueryRootExpression",
5852
+ "clrName": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalRangeQueryRootExpression"
5853
+ },
5854
+ "interfaces": [
5855
+ {
5856
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Query.IPrintableExpression",
5857
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IPrintableExpression"
5858
+ }
5859
+ ],
3635
5860
  "methods": [
3636
5861
  {
3637
5862
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalContainedInQueryRootExpression::DetachQueryProvider():System.Linq.Expressions.Expression",
@@ -3648,6 +5873,7 @@
3648
5873
  "isVirtual": true,
3649
5874
  "isOverride": true,
3650
5875
  "isSealed": false,
5876
+ "visibility": "Public",
3651
5877
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalContainedInQueryRootExpression",
3652
5878
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
3653
5879
  "isExtensionMethod": false
@@ -3667,6 +5893,27 @@
3667
5893
  "isVirtual": true,
3668
5894
  "isOverride": true,
3669
5895
  "isSealed": false,
5896
+ "visibility": "Public",
5897
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalContainedInQueryRootExpression",
5898
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
5899
+ "isExtensionMethod": false
5900
+ },
5901
+ {
5902
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalContainedInQueryRootExpression::Print(Microsoft.EntityFrameworkCore.Query.ExpressionPrinter):System.Void",
5903
+ "clrName": "Print",
5904
+ "metadataToken": 100664808,
5905
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.ExpressionPrinter):System.Void",
5906
+ "normalizedSignature": "Print|(Microsoft.EntityFrameworkCore.Query.ExpressionPrinter):System.Void|static=false",
5907
+ "emitScope": "ClassSurface",
5908
+ "provenance": "Original",
5909
+ "arity": 0,
5910
+ "parameterCount": 1,
5911
+ "isStatic": false,
5912
+ "isAbstract": false,
5913
+ "isVirtual": true,
5914
+ "isOverride": true,
5915
+ "isSealed": false,
5916
+ "visibility": "Protected",
3670
5917
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalContainedInQueryRootExpression",
3671
5918
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
3672
5919
  "isExtensionMethod": false
@@ -3686,6 +5933,7 @@
3686
5933
  "isVirtual": true,
3687
5934
  "isOverride": true,
3688
5935
  "isSealed": false,
5936
+ "visibility": "Public",
3689
5937
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalContainedInQueryRootExpression",
3690
5938
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
3691
5939
  "isExtensionMethod": false
@@ -3705,6 +5953,7 @@
3705
5953
  "isVirtual": true,
3706
5954
  "isOverride": true,
3707
5955
  "isSealed": false,
5956
+ "visibility": "Public",
3708
5957
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalContainedInQueryRootExpression",
3709
5958
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
3710
5959
  "isExtensionMethod": false
@@ -3721,6 +5970,7 @@
3721
5970
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Metadata.IEntityType,System.DateTime,System.DateTime):void|static=false",
3722
5971
  "isStatic": false,
3723
5972
  "parameterCount": 3,
5973
+ "visibility": "Public",
3724
5974
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalContainedInQueryRootExpression",
3725
5975
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
3726
5976
  },
@@ -3731,6 +5981,7 @@
3731
5981
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.IAsyncQueryProvider,Microsoft.EntityFrameworkCore.Metadata.IEntityType,System.DateTime,System.DateTime):void|static=false",
3732
5982
  "isStatic": false,
3733
5983
  "parameterCount": 4,
5984
+ "visibility": "Public",
3734
5985
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalContainedInQueryRootExpression",
3735
5986
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
3736
5987
  }
@@ -3747,6 +5998,16 @@
3747
5998
  "isSealed": false,
3748
5999
  "isStatic": false,
3749
6000
  "arity": 0,
6001
+ "baseType": {
6002
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalRangeQueryRootExpression",
6003
+ "clrName": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalRangeQueryRootExpression"
6004
+ },
6005
+ "interfaces": [
6006
+ {
6007
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Query.IPrintableExpression",
6008
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IPrintableExpression"
6009
+ }
6010
+ ],
3750
6011
  "methods": [
3751
6012
  {
3752
6013
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalFromToQueryRootExpression::DetachQueryProvider():System.Linq.Expressions.Expression",
@@ -3763,6 +6024,7 @@
3763
6024
  "isVirtual": true,
3764
6025
  "isOverride": true,
3765
6026
  "isSealed": false,
6027
+ "visibility": "Public",
3766
6028
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalFromToQueryRootExpression",
3767
6029
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
3768
6030
  "isExtensionMethod": false
@@ -3782,6 +6044,27 @@
3782
6044
  "isVirtual": true,
3783
6045
  "isOverride": true,
3784
6046
  "isSealed": false,
6047
+ "visibility": "Public",
6048
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalFromToQueryRootExpression",
6049
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
6050
+ "isExtensionMethod": false
6051
+ },
6052
+ {
6053
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalFromToQueryRootExpression::Print(Microsoft.EntityFrameworkCore.Query.ExpressionPrinter):System.Void",
6054
+ "clrName": "Print",
6055
+ "metadataToken": 100664816,
6056
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.ExpressionPrinter):System.Void",
6057
+ "normalizedSignature": "Print|(Microsoft.EntityFrameworkCore.Query.ExpressionPrinter):System.Void|static=false",
6058
+ "emitScope": "ClassSurface",
6059
+ "provenance": "Original",
6060
+ "arity": 0,
6061
+ "parameterCount": 1,
6062
+ "isStatic": false,
6063
+ "isAbstract": false,
6064
+ "isVirtual": true,
6065
+ "isOverride": true,
6066
+ "isSealed": false,
6067
+ "visibility": "Protected",
3785
6068
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalFromToQueryRootExpression",
3786
6069
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
3787
6070
  "isExtensionMethod": false
@@ -3801,6 +6084,7 @@
3801
6084
  "isVirtual": true,
3802
6085
  "isOverride": true,
3803
6086
  "isSealed": false,
6087
+ "visibility": "Public",
3804
6088
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalFromToQueryRootExpression",
3805
6089
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
3806
6090
  "isExtensionMethod": false
@@ -3820,6 +6104,7 @@
3820
6104
  "isVirtual": true,
3821
6105
  "isOverride": true,
3822
6106
  "isSealed": false,
6107
+ "visibility": "Public",
3823
6108
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalFromToQueryRootExpression",
3824
6109
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
3825
6110
  "isExtensionMethod": false
@@ -3836,6 +6121,7 @@
3836
6121
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Metadata.IEntityType,System.DateTime,System.DateTime):void|static=false",
3837
6122
  "isStatic": false,
3838
6123
  "parameterCount": 3,
6124
+ "visibility": "Public",
3839
6125
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalFromToQueryRootExpression",
3840
6126
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
3841
6127
  },
@@ -3846,6 +6132,7 @@
3846
6132
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.IAsyncQueryProvider,Microsoft.EntityFrameworkCore.Metadata.IEntityType,System.DateTime,System.DateTime):void|static=false",
3847
6133
  "isStatic": false,
3848
6134
  "parameterCount": 4,
6135
+ "visibility": "Public",
3849
6136
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalFromToQueryRootExpression",
3850
6137
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
3851
6138
  }
@@ -3862,11 +6149,65 @@
3862
6149
  "isSealed": false,
3863
6150
  "isStatic": false,
3864
6151
  "arity": 0,
3865
- "methods": [],
6152
+ "baseType": {
6153
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Query.EntityQueryRootExpression",
6154
+ "clrName": "Microsoft.EntityFrameworkCore.Query.EntityQueryRootExpression"
6155
+ },
6156
+ "interfaces": [
6157
+ {
6158
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Query.IPrintableExpression",
6159
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IPrintableExpression"
6160
+ }
6161
+ ],
6162
+ "methods": [
6163
+ {
6164
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalQueryRootExpression::VisitChildren(System.Linq.Expressions.ExpressionVisitor):System.Linq.Expressions.Expression",
6165
+ "clrName": "VisitChildren",
6166
+ "metadataToken": 100664822,
6167
+ "canonicalSignature": "(System.Linq.Expressions.ExpressionVisitor):System.Linq.Expressions.Expression",
6168
+ "normalizedSignature": "VisitChildren|(System.Linq.Expressions.ExpressionVisitor):System.Linq.Expressions.Expression|static=false",
6169
+ "emitScope": "ClassSurface",
6170
+ "provenance": "Original",
6171
+ "arity": 0,
6172
+ "parameterCount": 1,
6173
+ "isStatic": false,
6174
+ "isAbstract": false,
6175
+ "isVirtual": true,
6176
+ "isOverride": true,
6177
+ "isSealed": false,
6178
+ "visibility": "Protected",
6179
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalQueryRootExpression",
6180
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
6181
+ "isExtensionMethod": false
6182
+ }
6183
+ ],
3866
6184
  "properties": [],
3867
6185
  "fields": [],
3868
6186
  "events": [],
3869
- "constructors": []
6187
+ "constructors": [
6188
+ {
6189
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalQueryRootExpression::.ctor(Microsoft.EntityFrameworkCore.Metadata.IEntityType):void",
6190
+ "metadataToken": 100664820,
6191
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Metadata.IEntityType):void",
6192
+ "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Metadata.IEntityType):void|static=false",
6193
+ "isStatic": false,
6194
+ "parameterCount": 1,
6195
+ "visibility": "Protected",
6196
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalQueryRootExpression",
6197
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
6198
+ },
6199
+ {
6200
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalQueryRootExpression::.ctor(Microsoft.EntityFrameworkCore.Query.IAsyncQueryProvider,Microsoft.EntityFrameworkCore.Metadata.IEntityType):void",
6201
+ "metadataToken": 100664821,
6202
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.IAsyncQueryProvider,Microsoft.EntityFrameworkCore.Metadata.IEntityType):void",
6203
+ "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.IAsyncQueryProvider,Microsoft.EntityFrameworkCore.Metadata.IEntityType):void|static=false",
6204
+ "isStatic": false,
6205
+ "parameterCount": 2,
6206
+ "visibility": "Protected",
6207
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalQueryRootExpression",
6208
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
6209
+ }
6210
+ ]
3870
6211
  },
3871
6212
  {
3872
6213
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalRangeQueryRootExpression",
@@ -3879,6 +6220,16 @@
3879
6220
  "isSealed": false,
3880
6221
  "isStatic": false,
3881
6222
  "arity": 0,
6223
+ "baseType": {
6224
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalQueryRootExpression",
6225
+ "clrName": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalQueryRootExpression"
6226
+ },
6227
+ "interfaces": [
6228
+ {
6229
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Query.IPrintableExpression",
6230
+ "clrName": "Microsoft.EntityFrameworkCore.Query.IPrintableExpression"
6231
+ }
6232
+ ],
3882
6233
  "methods": [
3883
6234
  {
3884
6235
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalRangeQueryRootExpression::Equals(System.Object):System.Boolean",
@@ -3895,6 +6246,7 @@
3895
6246
  "isVirtual": true,
3896
6247
  "isOverride": true,
3897
6248
  "isSealed": false,
6249
+ "visibility": "Public",
3898
6250
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalRangeQueryRootExpression",
3899
6251
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
3900
6252
  "isExtensionMethod": false
@@ -3914,6 +6266,7 @@
3914
6266
  "isVirtual": true,
3915
6267
  "isOverride": true,
3916
6268
  "isSealed": false,
6269
+ "visibility": "Public",
3917
6270
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalRangeQueryRootExpression",
3918
6271
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
3919
6272
  "isExtensionMethod": false
@@ -3935,6 +6288,7 @@
3935
6288
  "isAbstract": false,
3936
6289
  "isVirtual": true,
3937
6290
  "isOverride": false,
6291
+ "visibility": "Public",
3938
6292
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalRangeQueryRootExpression",
3939
6293
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
3940
6294
  },
@@ -3953,13 +6307,37 @@
3953
6307
  "isAbstract": false,
3954
6308
  "isVirtual": true,
3955
6309
  "isOverride": false,
6310
+ "visibility": "Public",
3956
6311
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalRangeQueryRootExpression",
3957
6312
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
3958
6313
  }
3959
6314
  ],
3960
6315
  "fields": [],
3961
6316
  "events": [],
3962
- "constructors": []
6317
+ "constructors": [
6318
+ {
6319
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalRangeQueryRootExpression::.ctor(Microsoft.EntityFrameworkCore.Metadata.IEntityType,System.DateTime,System.DateTime):void",
6320
+ "metadataToken": 100664823,
6321
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Metadata.IEntityType,System.DateTime,System.DateTime):void",
6322
+ "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Metadata.IEntityType,System.DateTime,System.DateTime):void|static=false",
6323
+ "isStatic": false,
6324
+ "parameterCount": 3,
6325
+ "visibility": "Protected",
6326
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalRangeQueryRootExpression",
6327
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
6328
+ },
6329
+ {
6330
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalRangeQueryRootExpression::.ctor(Microsoft.EntityFrameworkCore.Query.IAsyncQueryProvider,Microsoft.EntityFrameworkCore.Metadata.IEntityType,System.DateTime,System.DateTime):void",
6331
+ "metadataToken": 100664824,
6332
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Query.IAsyncQueryProvider,Microsoft.EntityFrameworkCore.Metadata.IEntityType,System.DateTime,System.DateTime):void",
6333
+ "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Query.IAsyncQueryProvider,Microsoft.EntityFrameworkCore.Metadata.IEntityType,System.DateTime,System.DateTime):void|static=false",
6334
+ "isStatic": false,
6335
+ "parameterCount": 4,
6336
+ "visibility": "Protected",
6337
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.TemporalRangeQueryRootExpression",
6338
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
6339
+ }
6340
+ ]
3963
6341
  },
3964
6342
  {
3965
6343
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerExpression",
@@ -3972,6 +6350,10 @@
3972
6350
  "isSealed": true,
3973
6351
  "isStatic": true,
3974
6352
  "arity": 0,
6353
+ "baseType": {
6354
+ "stableId": "System.Private.CoreLib:System.Object",
6355
+ "clrName": "System.Object"
6356
+ },
3975
6357
  "methods": [
3976
6358
  {
3977
6359
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerExpression::AggregateFunction(Microsoft.EntityFrameworkCore.Query.ISqlExpressionFactory,System.String,System.Collections.Generic.IEnumerable_1[[Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlExpression,Microsoft.EntityFrameworkCore.Relational,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]],Microsoft.EntityFrameworkCore.Query.EnumerableExpression,System.Int32,System.Boolean,System.Collections.Generic.IEnumerable_1[[System.Boolean,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e]],System.Type,Microsoft.EntityFrameworkCore.Storage.RelationalTypeMapping):Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlFunctionExpression",
@@ -3988,6 +6370,7 @@
3988
6370
  "isVirtual": false,
3989
6371
  "isOverride": false,
3990
6372
  "isSealed": false,
6373
+ "visibility": "Public",
3991
6374
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerExpression",
3992
6375
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
3993
6376
  "isExtensionMethod": false
@@ -4007,6 +6390,7 @@
4007
6390
  "isVirtual": false,
4008
6391
  "isOverride": false,
4009
6392
  "isSealed": false,
6393
+ "visibility": "Public",
4010
6394
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlServerExpression",
4011
6395
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
4012
6396
  "isExtensionMethod": false