@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.Infrastructure.Internal.SqlServerEngineType",
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.Infrastructure.Internal.SqlServerEngineType",
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.Infrastructure.Internal.SqlServerEngineType",
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.Infrastructure.Internal.SqlServerEngineType",
63
89
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
64
90
  },
@@ -70,6 +96,7 @@
70
96
  "isStatic": true,
71
97
  "isReadOnly": false,
72
98
  "isLiteral": true,
99
+ "visibility": "Public",
73
100
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.SqlServerEngineType",
74
101
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
75
102
  }
@@ -88,6 +115,12 @@
88
115
  "isSealed": false,
89
116
  "isStatic": false,
90
117
  "arity": 0,
118
+ "interfaces": [
119
+ {
120
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Infrastructure.ISingletonOptions",
121
+ "clrName": "Microsoft.EntityFrameworkCore.Infrastructure.ISingletonOptions"
122
+ }
123
+ ],
91
124
  "methods": [],
92
125
  "properties": [
93
126
  {
@@ -105,6 +138,7 @@
105
138
  "isAbstract": true,
106
139
  "isVirtual": true,
107
140
  "isOverride": false,
141
+ "visibility": "Public",
108
142
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.ISqlServerSingletonOptions",
109
143
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
110
144
  },
@@ -123,6 +157,7 @@
123
157
  "isAbstract": true,
124
158
  "isVirtual": true,
125
159
  "isOverride": false,
160
+ "visibility": "Public",
126
161
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.ISqlServerSingletonOptions",
127
162
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
128
163
  },
@@ -141,6 +176,7 @@
141
176
  "isAbstract": true,
142
177
  "isVirtual": true,
143
178
  "isOverride": false,
179
+ "visibility": "Public",
144
180
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.ISqlServerSingletonOptions",
145
181
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
146
182
  },
@@ -159,6 +195,7 @@
159
195
  "isAbstract": true,
160
196
  "isVirtual": true,
161
197
  "isOverride": false,
198
+ "visibility": "Public",
162
199
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.ISqlServerSingletonOptions",
163
200
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
164
201
  },
@@ -177,6 +214,7 @@
177
214
  "isAbstract": true,
178
215
  "isVirtual": true,
179
216
  "isOverride": false,
217
+ "visibility": "Public",
180
218
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.ISqlServerSingletonOptions",
181
219
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
182
220
  },
@@ -195,6 +233,7 @@
195
233
  "isAbstract": true,
196
234
  "isVirtual": true,
197
235
  "isOverride": false,
236
+ "visibility": "Public",
198
237
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.ISqlServerSingletonOptions",
199
238
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
200
239
  },
@@ -213,6 +252,7 @@
213
252
  "isAbstract": true,
214
253
  "isVirtual": true,
215
254
  "isOverride": false,
255
+ "visibility": "Public",
216
256
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.ISqlServerSingletonOptions",
217
257
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
218
258
  }
@@ -232,6 +272,16 @@
232
272
  "isSealed": false,
233
273
  "isStatic": false,
234
274
  "arity": 0,
275
+ "baseType": {
276
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Infrastructure.RelationalModelValidator",
277
+ "clrName": "Microsoft.EntityFrameworkCore.Infrastructure.RelationalModelValidator"
278
+ },
279
+ "interfaces": [
280
+ {
281
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Infrastructure.IModelValidator",
282
+ "clrName": "Microsoft.EntityFrameworkCore.Infrastructure.IModelValidator"
283
+ }
284
+ ],
235
285
  "methods": [
236
286
  {
237
287
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.SqlServerModelValidator::Validate(Microsoft.EntityFrameworkCore.Metadata.IModel,Microsoft.EntityFrameworkCore.Diagnostics.IDiagnosticsLogger_1[[Microsoft.EntityFrameworkCore.DbLoggerCategory\u002BModel\u002BValidation,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):System.Void",
@@ -248,9 +298,280 @@
248
298
  "isVirtual": true,
249
299
  "isOverride": true,
250
300
  "isSealed": false,
301
+ "visibility": "Public",
302
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.SqlServerModelValidator",
303
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
304
+ "isExtensionMethod": false
305
+ },
306
+ {
307
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.SqlServerModelValidator::ValidateDecimalColumns(Microsoft.EntityFrameworkCore.Metadata.IModel,Microsoft.EntityFrameworkCore.Diagnostics.IDiagnosticsLogger_1[[Microsoft.EntityFrameworkCore.DbLoggerCategory\u002BModel\u002BValidation,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):System.Void",
308
+ "clrName": "ValidateDecimalColumns",
309
+ "metadataToken": 100665185,
310
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Metadata.IModel,Microsoft.EntityFrameworkCore.Diagnostics.IDiagnosticsLogger_1[[Microsoft.EntityFrameworkCore.DbLoggerCategory\u002BModel\u002BValidation,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):System.Void",
311
+ "normalizedSignature": "ValidateDecimalColumns|(Microsoft.EntityFrameworkCore.Metadata.IModel,Microsoft.EntityFrameworkCore.Diagnostics.IDiagnosticsLogger_1[[Microsoft.EntityFrameworkCore.DbLoggerCategory\u002BModel\u002BValidation,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):System.Void|static=false",
312
+ "emitScope": "ClassSurface",
313
+ "provenance": "Original",
314
+ "arity": 0,
315
+ "parameterCount": 2,
316
+ "isStatic": false,
317
+ "isAbstract": false,
318
+ "isVirtual": true,
319
+ "isOverride": false,
320
+ "isSealed": false,
321
+ "visibility": "Protected",
322
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.SqlServerModelValidator",
323
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
324
+ "isExtensionMethod": false
325
+ },
326
+ {
327
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.SqlServerModelValidator::ValidateVectorColumns(Microsoft.EntityFrameworkCore.Metadata.IModel,Microsoft.EntityFrameworkCore.Diagnostics.IDiagnosticsLogger_1[[Microsoft.EntityFrameworkCore.DbLoggerCategory\u002BModel\u002BValidation,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):System.Void",
328
+ "clrName": "ValidateVectorColumns",
329
+ "metadataToken": 100665186,
330
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Metadata.IModel,Microsoft.EntityFrameworkCore.Diagnostics.IDiagnosticsLogger_1[[Microsoft.EntityFrameworkCore.DbLoggerCategory\u002BModel\u002BValidation,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):System.Void",
331
+ "normalizedSignature": "ValidateVectorColumns|(Microsoft.EntityFrameworkCore.Metadata.IModel,Microsoft.EntityFrameworkCore.Diagnostics.IDiagnosticsLogger_1[[Microsoft.EntityFrameworkCore.DbLoggerCategory\u002BModel\u002BValidation,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):System.Void|static=false",
332
+ "emitScope": "ClassSurface",
333
+ "provenance": "Original",
334
+ "arity": 0,
335
+ "parameterCount": 2,
336
+ "isStatic": false,
337
+ "isAbstract": false,
338
+ "isVirtual": true,
339
+ "isOverride": false,
340
+ "isSealed": false,
341
+ "visibility": "Protected",
342
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.SqlServerModelValidator",
343
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
344
+ "isExtensionMethod": false
345
+ },
346
+ {
347
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.SqlServerModelValidator::ValidateByteIdentityMapping(Microsoft.EntityFrameworkCore.Metadata.IModel,Microsoft.EntityFrameworkCore.Diagnostics.IDiagnosticsLogger_1[[Microsoft.EntityFrameworkCore.DbLoggerCategory\u002BModel\u002BValidation,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):System.Void",
348
+ "clrName": "ValidateByteIdentityMapping",
349
+ "metadataToken": 100665187,
350
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Metadata.IModel,Microsoft.EntityFrameworkCore.Diagnostics.IDiagnosticsLogger_1[[Microsoft.EntityFrameworkCore.DbLoggerCategory\u002BModel\u002BValidation,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):System.Void",
351
+ "normalizedSignature": "ValidateByteIdentityMapping|(Microsoft.EntityFrameworkCore.Metadata.IModel,Microsoft.EntityFrameworkCore.Diagnostics.IDiagnosticsLogger_1[[Microsoft.EntityFrameworkCore.DbLoggerCategory\u002BModel\u002BValidation,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):System.Void|static=false",
352
+ "emitScope": "ClassSurface",
353
+ "provenance": "Original",
354
+ "arity": 0,
355
+ "parameterCount": 2,
356
+ "isStatic": false,
357
+ "isAbstract": false,
358
+ "isVirtual": true,
359
+ "isOverride": false,
360
+ "isSealed": false,
361
+ "visibility": "Protected",
362
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.SqlServerModelValidator",
363
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
364
+ "isExtensionMethod": false
365
+ },
366
+ {
367
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.SqlServerModelValidator::ValidateValueGeneration(Microsoft.EntityFrameworkCore.Metadata.IEntityType,Microsoft.EntityFrameworkCore.Metadata.IKey,Microsoft.EntityFrameworkCore.Diagnostics.IDiagnosticsLogger_1[[Microsoft.EntityFrameworkCore.DbLoggerCategory\u002BModel\u002BValidation,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):System.Void",
368
+ "clrName": "ValidateValueGeneration",
369
+ "metadataToken": 100665188,
370
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Metadata.IEntityType,Microsoft.EntityFrameworkCore.Metadata.IKey,Microsoft.EntityFrameworkCore.Diagnostics.IDiagnosticsLogger_1[[Microsoft.EntityFrameworkCore.DbLoggerCategory\u002BModel\u002BValidation,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):System.Void",
371
+ "normalizedSignature": "ValidateValueGeneration|(Microsoft.EntityFrameworkCore.Metadata.IEntityType,Microsoft.EntityFrameworkCore.Metadata.IKey,Microsoft.EntityFrameworkCore.Diagnostics.IDiagnosticsLogger_1[[Microsoft.EntityFrameworkCore.DbLoggerCategory\u002BModel\u002BValidation,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):System.Void|static=false",
372
+ "emitScope": "ClassSurface",
373
+ "provenance": "Original",
374
+ "arity": 0,
375
+ "parameterCount": 3,
376
+ "isStatic": false,
377
+ "isAbstract": false,
378
+ "isVirtual": true,
379
+ "isOverride": true,
380
+ "isSealed": false,
381
+ "visibility": "Protected",
382
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.SqlServerModelValidator",
383
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
384
+ "isExtensionMethod": false
385
+ },
386
+ {
387
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.SqlServerModelValidator::ValidateTypeMappings(Microsoft.EntityFrameworkCore.Metadata.IModel,Microsoft.EntityFrameworkCore.Diagnostics.IDiagnosticsLogger_1[[Microsoft.EntityFrameworkCore.DbLoggerCategory\u002BModel\u002BValidation,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):System.Void",
388
+ "clrName": "ValidateTypeMappings",
389
+ "metadataToken": 100665189,
390
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Metadata.IModel,Microsoft.EntityFrameworkCore.Diagnostics.IDiagnosticsLogger_1[[Microsoft.EntityFrameworkCore.DbLoggerCategory\u002BModel\u002BValidation,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):System.Void",
391
+ "normalizedSignature": "ValidateTypeMappings|(Microsoft.EntityFrameworkCore.Metadata.IModel,Microsoft.EntityFrameworkCore.Diagnostics.IDiagnosticsLogger_1[[Microsoft.EntityFrameworkCore.DbLoggerCategory\u002BModel\u002BValidation,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):System.Void|static=false",
392
+ "emitScope": "ClassSurface",
393
+ "provenance": "Original",
394
+ "arity": 0,
395
+ "parameterCount": 2,
396
+ "isStatic": false,
397
+ "isAbstract": false,
398
+ "isVirtual": true,
399
+ "isOverride": true,
400
+ "isSealed": false,
401
+ "visibility": "Protected",
402
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.SqlServerModelValidator",
403
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
404
+ "isExtensionMethod": false
405
+ },
406
+ {
407
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.SqlServerModelValidator::ValidateIndexIncludeProperties(Microsoft.EntityFrameworkCore.Metadata.IModel,Microsoft.EntityFrameworkCore.Diagnostics.IDiagnosticsLogger_1[[Microsoft.EntityFrameworkCore.DbLoggerCategory\u002BModel\u002BValidation,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):System.Void",
408
+ "clrName": "ValidateIndexIncludeProperties",
409
+ "metadataToken": 100665190,
410
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Metadata.IModel,Microsoft.EntityFrameworkCore.Diagnostics.IDiagnosticsLogger_1[[Microsoft.EntityFrameworkCore.DbLoggerCategory\u002BModel\u002BValidation,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):System.Void",
411
+ "normalizedSignature": "ValidateIndexIncludeProperties|(Microsoft.EntityFrameworkCore.Metadata.IModel,Microsoft.EntityFrameworkCore.Diagnostics.IDiagnosticsLogger_1[[Microsoft.EntityFrameworkCore.DbLoggerCategory\u002BModel\u002BValidation,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):System.Void|static=false",
412
+ "emitScope": "ClassSurface",
413
+ "provenance": "Original",
414
+ "arity": 0,
415
+ "parameterCount": 2,
416
+ "isStatic": false,
417
+ "isAbstract": false,
418
+ "isVirtual": true,
419
+ "isOverride": false,
420
+ "isSealed": false,
421
+ "visibility": "Protected",
422
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.SqlServerModelValidator",
423
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
424
+ "isExtensionMethod": false
425
+ },
426
+ {
427
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.SqlServerModelValidator::ValidateTemporalTables(Microsoft.EntityFrameworkCore.Metadata.IModel,Microsoft.EntityFrameworkCore.Diagnostics.IDiagnosticsLogger_1[[Microsoft.EntityFrameworkCore.DbLoggerCategory\u002BModel\u002BValidation,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):System.Void",
428
+ "clrName": "ValidateTemporalTables",
429
+ "metadataToken": 100665191,
430
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Metadata.IModel,Microsoft.EntityFrameworkCore.Diagnostics.IDiagnosticsLogger_1[[Microsoft.EntityFrameworkCore.DbLoggerCategory\u002BModel\u002BValidation,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):System.Void",
431
+ "normalizedSignature": "ValidateTemporalTables|(Microsoft.EntityFrameworkCore.Metadata.IModel,Microsoft.EntityFrameworkCore.Diagnostics.IDiagnosticsLogger_1[[Microsoft.EntityFrameworkCore.DbLoggerCategory\u002BModel\u002BValidation,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):System.Void|static=false",
432
+ "emitScope": "ClassSurface",
433
+ "provenance": "Original",
434
+ "arity": 0,
435
+ "parameterCount": 2,
436
+ "isStatic": false,
437
+ "isAbstract": false,
438
+ "isVirtual": true,
439
+ "isOverride": false,
440
+ "isSealed": false,
441
+ "visibility": "Protected",
251
442
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.SqlServerModelValidator",
252
443
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
253
444
  "isExtensionMethod": false
445
+ },
446
+ {
447
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.SqlServerModelValidator::ValidateSharedTableCompatibility(System.Collections.Generic.IReadOnlyList_1[[Microsoft.EntityFrameworkCore.Metadata.IEntityType,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]],Microsoft.EntityFrameworkCore.Metadata.StoreObjectIdentifier\u0026,Microsoft.EntityFrameworkCore.Diagnostics.IDiagnosticsLogger_1[[Microsoft.EntityFrameworkCore.DbLoggerCategory\u002BModel\u002BValidation,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):System.Void",
448
+ "clrName": "ValidateSharedTableCompatibility",
449
+ "metadataToken": 100665193,
450
+ "canonicalSignature": "(System.Collections.Generic.IReadOnlyList_1[[Microsoft.EntityFrameworkCore.Metadata.IEntityType,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]],Microsoft.EntityFrameworkCore.Metadata.StoreObjectIdentifier\u0026,Microsoft.EntityFrameworkCore.Diagnostics.IDiagnosticsLogger_1[[Microsoft.EntityFrameworkCore.DbLoggerCategory\u002BModel\u002BValidation,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):System.Void",
451
+ "normalizedSignature": "ValidateSharedTableCompatibility|(System.Collections.Generic.IReadOnlyList_1[[Microsoft.EntityFrameworkCore.Metadata.IEntityType,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]],Microsoft.EntityFrameworkCore.Metadata.StoreObjectIdentifier\u0026,Microsoft.EntityFrameworkCore.Diagnostics.IDiagnosticsLogger_1[[Microsoft.EntityFrameworkCore.DbLoggerCategory\u002BModel\u002BValidation,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):System.Void|static=false",
452
+ "emitScope": "ClassSurface",
453
+ "provenance": "Original",
454
+ "arity": 0,
455
+ "parameterCount": 3,
456
+ "isStatic": false,
457
+ "isAbstract": false,
458
+ "isVirtual": true,
459
+ "isOverride": true,
460
+ "isSealed": false,
461
+ "visibility": "Protected",
462
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.SqlServerModelValidator",
463
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
464
+ "isExtensionMethod": false,
465
+ "parameterModifiers": [
466
+ {
467
+ "index": 1,
468
+ "modifier": "in"
469
+ }
470
+ ]
471
+ },
472
+ {
473
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.SqlServerModelValidator::ValidateSharedColumnsCompatibility(System.Collections.Generic.IReadOnlyList_1[[Microsoft.EntityFrameworkCore.Metadata.IEntityType,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]],Microsoft.EntityFrameworkCore.Metadata.StoreObjectIdentifier\u0026,Microsoft.EntityFrameworkCore.Diagnostics.IDiagnosticsLogger_1[[Microsoft.EntityFrameworkCore.DbLoggerCategory\u002BModel\u002BValidation,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):System.Void",
474
+ "clrName": "ValidateSharedColumnsCompatibility",
475
+ "metadataToken": 100665194,
476
+ "canonicalSignature": "(System.Collections.Generic.IReadOnlyList_1[[Microsoft.EntityFrameworkCore.Metadata.IEntityType,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]],Microsoft.EntityFrameworkCore.Metadata.StoreObjectIdentifier\u0026,Microsoft.EntityFrameworkCore.Diagnostics.IDiagnosticsLogger_1[[Microsoft.EntityFrameworkCore.DbLoggerCategory\u002BModel\u002BValidation,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):System.Void",
477
+ "normalizedSignature": "ValidateSharedColumnsCompatibility|(System.Collections.Generic.IReadOnlyList_1[[Microsoft.EntityFrameworkCore.Metadata.IEntityType,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]],Microsoft.EntityFrameworkCore.Metadata.StoreObjectIdentifier\u0026,Microsoft.EntityFrameworkCore.Diagnostics.IDiagnosticsLogger_1[[Microsoft.EntityFrameworkCore.DbLoggerCategory\u002BModel\u002BValidation,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):System.Void|static=false",
478
+ "emitScope": "ClassSurface",
479
+ "provenance": "Original",
480
+ "arity": 0,
481
+ "parameterCount": 3,
482
+ "isStatic": false,
483
+ "isAbstract": false,
484
+ "isVirtual": true,
485
+ "isOverride": true,
486
+ "isSealed": false,
487
+ "visibility": "Protected",
488
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.SqlServerModelValidator",
489
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
490
+ "isExtensionMethod": false,
491
+ "parameterModifiers": [
492
+ {
493
+ "index": 1,
494
+ "modifier": "in"
495
+ }
496
+ ]
497
+ },
498
+ {
499
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.SqlServerModelValidator::ValidateCompatible(Microsoft.EntityFrameworkCore.Metadata.IProperty,Microsoft.EntityFrameworkCore.Metadata.IProperty,System.String,Microsoft.EntityFrameworkCore.Metadata.StoreObjectIdentifier\u0026,Microsoft.EntityFrameworkCore.Diagnostics.IDiagnosticsLogger_1[[Microsoft.EntityFrameworkCore.DbLoggerCategory\u002BModel\u002BValidation,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):System.Void",
500
+ "clrName": "ValidateCompatible",
501
+ "metadataToken": 100665195,
502
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Metadata.IProperty,Microsoft.EntityFrameworkCore.Metadata.IProperty,System.String,Microsoft.EntityFrameworkCore.Metadata.StoreObjectIdentifier\u0026,Microsoft.EntityFrameworkCore.Diagnostics.IDiagnosticsLogger_1[[Microsoft.EntityFrameworkCore.DbLoggerCategory\u002BModel\u002BValidation,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):System.Void",
503
+ "normalizedSignature": "ValidateCompatible|(Microsoft.EntityFrameworkCore.Metadata.IProperty,Microsoft.EntityFrameworkCore.Metadata.IProperty,System.String,Microsoft.EntityFrameworkCore.Metadata.StoreObjectIdentifier\u0026,Microsoft.EntityFrameworkCore.Diagnostics.IDiagnosticsLogger_1[[Microsoft.EntityFrameworkCore.DbLoggerCategory\u002BModel\u002BValidation,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):System.Void|static=false",
504
+ "emitScope": "ClassSurface",
505
+ "provenance": "Original",
506
+ "arity": 0,
507
+ "parameterCount": 5,
508
+ "isStatic": false,
509
+ "isAbstract": false,
510
+ "isVirtual": true,
511
+ "isOverride": true,
512
+ "isSealed": false,
513
+ "visibility": "Protected",
514
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.SqlServerModelValidator",
515
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
516
+ "isExtensionMethod": false,
517
+ "parameterModifiers": [
518
+ {
519
+ "index": 3,
520
+ "modifier": "in"
521
+ }
522
+ ]
523
+ },
524
+ {
525
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.SqlServerModelValidator::ValidateCompatible(Microsoft.EntityFrameworkCore.Metadata.IKey,Microsoft.EntityFrameworkCore.Metadata.IKey,System.String,Microsoft.EntityFrameworkCore.Metadata.StoreObjectIdentifier\u0026,Microsoft.EntityFrameworkCore.Diagnostics.IDiagnosticsLogger_1[[Microsoft.EntityFrameworkCore.DbLoggerCategory\u002BModel\u002BValidation,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):System.Void",
526
+ "clrName": "ValidateCompatible",
527
+ "metadataToken": 100665196,
528
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Metadata.IKey,Microsoft.EntityFrameworkCore.Metadata.IKey,System.String,Microsoft.EntityFrameworkCore.Metadata.StoreObjectIdentifier\u0026,Microsoft.EntityFrameworkCore.Diagnostics.IDiagnosticsLogger_1[[Microsoft.EntityFrameworkCore.DbLoggerCategory\u002BModel\u002BValidation,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):System.Void",
529
+ "normalizedSignature": "ValidateCompatible|(Microsoft.EntityFrameworkCore.Metadata.IKey,Microsoft.EntityFrameworkCore.Metadata.IKey,System.String,Microsoft.EntityFrameworkCore.Metadata.StoreObjectIdentifier\u0026,Microsoft.EntityFrameworkCore.Diagnostics.IDiagnosticsLogger_1[[Microsoft.EntityFrameworkCore.DbLoggerCategory\u002BModel\u002BValidation,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):System.Void|static=false",
530
+ "emitScope": "ClassSurface",
531
+ "provenance": "Original",
532
+ "arity": 0,
533
+ "parameterCount": 5,
534
+ "isStatic": false,
535
+ "isAbstract": false,
536
+ "isVirtual": true,
537
+ "isOverride": true,
538
+ "isSealed": false,
539
+ "visibility": "Protected",
540
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.SqlServerModelValidator",
541
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
542
+ "isExtensionMethod": false,
543
+ "parameterModifiers": [
544
+ {
545
+ "index": 3,
546
+ "modifier": "in"
547
+ }
548
+ ]
549
+ },
550
+ {
551
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.SqlServerModelValidator::ValidateCompatible(Microsoft.EntityFrameworkCore.Metadata.IIndex,Microsoft.EntityFrameworkCore.Metadata.IIndex,System.String,Microsoft.EntityFrameworkCore.Metadata.StoreObjectIdentifier\u0026,Microsoft.EntityFrameworkCore.Diagnostics.IDiagnosticsLogger_1[[Microsoft.EntityFrameworkCore.DbLoggerCategory\u002BModel\u002BValidation,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):System.Void",
552
+ "clrName": "ValidateCompatible",
553
+ "metadataToken": 100665197,
554
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Metadata.IIndex,Microsoft.EntityFrameworkCore.Metadata.IIndex,System.String,Microsoft.EntityFrameworkCore.Metadata.StoreObjectIdentifier\u0026,Microsoft.EntityFrameworkCore.Diagnostics.IDiagnosticsLogger_1[[Microsoft.EntityFrameworkCore.DbLoggerCategory\u002BModel\u002BValidation,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):System.Void",
555
+ "normalizedSignature": "ValidateCompatible|(Microsoft.EntityFrameworkCore.Metadata.IIndex,Microsoft.EntityFrameworkCore.Metadata.IIndex,System.String,Microsoft.EntityFrameworkCore.Metadata.StoreObjectIdentifier\u0026,Microsoft.EntityFrameworkCore.Diagnostics.IDiagnosticsLogger_1[[Microsoft.EntityFrameworkCore.DbLoggerCategory\u002BModel\u002BValidation,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):System.Void|static=false",
556
+ "emitScope": "ClassSurface",
557
+ "provenance": "Original",
558
+ "arity": 0,
559
+ "parameterCount": 5,
560
+ "isStatic": false,
561
+ "isAbstract": false,
562
+ "isVirtual": true,
563
+ "isOverride": true,
564
+ "isSealed": false,
565
+ "visibility": "Protected",
566
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.SqlServerModelValidator",
567
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
568
+ "isExtensionMethod": false,
569
+ "parameterModifiers": [
570
+ {
571
+ "index": 3,
572
+ "modifier": "in"
573
+ }
574
+ ]
254
575
  }
255
576
  ],
256
577
  "properties": [],
@@ -264,6 +585,7 @@
264
585
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Infrastructure.ModelValidatorDependencies,Microsoft.EntityFrameworkCore.Infrastructure.RelationalModelValidatorDependencies):void|static=false",
265
586
  "isStatic": false,
266
587
  "parameterCount": 2,
588
+ "visibility": "Public",
267
589
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.SqlServerModelValidator",
268
590
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
269
591
  }
@@ -280,7 +602,37 @@
280
602
  "isSealed": false,
281
603
  "isStatic": false,
282
604
  "arity": 0,
605
+ "baseType": {
606
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Infrastructure.RelationalOptionsExtension",
607
+ "clrName": "Microsoft.EntityFrameworkCore.Infrastructure.RelationalOptionsExtension"
608
+ },
609
+ "interfaces": [
610
+ {
611
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Infrastructure.IDbContextOptionsExtension",
612
+ "clrName": "Microsoft.EntityFrameworkCore.Infrastructure.IDbContextOptionsExtension"
613
+ }
614
+ ],
283
615
  "methods": [
616
+ {
617
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.SqlServerOptionsExtension::Clone():Microsoft.EntityFrameworkCore.Infrastructure.RelationalOptionsExtension",
618
+ "clrName": "Clone",
619
+ "metadataToken": 100665201,
620
+ "canonicalSignature": "():Microsoft.EntityFrameworkCore.Infrastructure.RelationalOptionsExtension",
621
+ "normalizedSignature": "Clone|():Microsoft.EntityFrameworkCore.Infrastructure.RelationalOptionsExtension|static=false",
622
+ "emitScope": "ClassSurface",
623
+ "provenance": "Original",
624
+ "arity": 0,
625
+ "parameterCount": 0,
626
+ "isStatic": false,
627
+ "isAbstract": false,
628
+ "isVirtual": true,
629
+ "isOverride": true,
630
+ "isSealed": false,
631
+ "visibility": "Protected",
632
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.SqlServerOptionsExtension",
633
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
634
+ "isExtensionMethod": false
635
+ },
284
636
  {
285
637
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.SqlServerOptionsExtension::WithEngineType(Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.SqlServerEngineType):Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.SqlServerOptionsExtension",
286
638
  "clrName": "WithEngineType",
@@ -296,6 +648,7 @@
296
648
  "isVirtual": true,
297
649
  "isOverride": false,
298
650
  "isSealed": false,
651
+ "visibility": "Public",
299
652
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.SqlServerOptionsExtension",
300
653
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
301
654
  "isExtensionMethod": false
@@ -315,6 +668,7 @@
315
668
  "isVirtual": true,
316
669
  "isOverride": false,
317
670
  "isSealed": false,
671
+ "visibility": "Public",
318
672
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.SqlServerOptionsExtension",
319
673
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
320
674
  "isExtensionMethod": false
@@ -334,6 +688,7 @@
334
688
  "isVirtual": true,
335
689
  "isOverride": false,
336
690
  "isSealed": false,
691
+ "visibility": "Public",
337
692
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.SqlServerOptionsExtension",
338
693
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
339
694
  "isExtensionMethod": false
@@ -353,6 +708,7 @@
353
708
  "isVirtual": true,
354
709
  "isOverride": false,
355
710
  "isSealed": false,
711
+ "visibility": "Public",
356
712
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.SqlServerOptionsExtension",
357
713
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
358
714
  "isExtensionMethod": false
@@ -372,6 +728,7 @@
372
728
  "isVirtual": true,
373
729
  "isOverride": false,
374
730
  "isSealed": false,
731
+ "visibility": "Public",
375
732
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.SqlServerOptionsExtension",
376
733
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
377
734
  "isExtensionMethod": false
@@ -391,6 +748,7 @@
391
748
  "isVirtual": true,
392
749
  "isOverride": false,
393
750
  "isSealed": false,
751
+ "visibility": "Public",
394
752
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.SqlServerOptionsExtension",
395
753
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
396
754
  "isExtensionMethod": false
@@ -410,6 +768,7 @@
410
768
  "isVirtual": true,
411
769
  "isOverride": false,
412
770
  "isSealed": false,
771
+ "visibility": "Public",
413
772
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.SqlServerOptionsExtension",
414
773
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
415
774
  "isExtensionMethod": false
@@ -429,6 +788,7 @@
429
788
  "isVirtual": true,
430
789
  "isOverride": true,
431
790
  "isSealed": false,
791
+ "visibility": "Public",
432
792
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.SqlServerOptionsExtension",
433
793
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
434
794
  "isExtensionMethod": false
@@ -448,6 +808,7 @@
448
808
  "isVirtual": true,
449
809
  "isOverride": true,
450
810
  "isSealed": false,
811
+ "visibility": "Public",
451
812
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.SqlServerOptionsExtension",
452
813
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
453
814
  "isExtensionMethod": false
@@ -469,6 +830,7 @@
469
830
  "isAbstract": false,
470
831
  "isVirtual": true,
471
832
  "isOverride": true,
833
+ "visibility": "Public",
472
834
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.SqlServerOptionsExtension",
473
835
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
474
836
  },
@@ -487,6 +849,7 @@
487
849
  "isAbstract": false,
488
850
  "isVirtual": true,
489
851
  "isOverride": false,
852
+ "visibility": "Public",
490
853
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.SqlServerOptionsExtension",
491
854
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
492
855
  },
@@ -505,6 +868,7 @@
505
868
  "isAbstract": false,
506
869
  "isVirtual": true,
507
870
  "isOverride": false,
871
+ "visibility": "Public",
508
872
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.SqlServerOptionsExtension",
509
873
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
510
874
  },
@@ -523,6 +887,7 @@
523
887
  "isAbstract": false,
524
888
  "isVirtual": true,
525
889
  "isOverride": false,
890
+ "visibility": "Public",
526
891
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.SqlServerOptionsExtension",
527
892
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
528
893
  },
@@ -541,6 +906,7 @@
541
906
  "isAbstract": false,
542
907
  "isVirtual": true,
543
908
  "isOverride": false,
909
+ "visibility": "Public",
544
910
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.SqlServerOptionsExtension",
545
911
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
546
912
  },
@@ -559,6 +925,7 @@
559
925
  "isAbstract": false,
560
926
  "isVirtual": true,
561
927
  "isOverride": false,
928
+ "visibility": "Public",
562
929
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.SqlServerOptionsExtension",
563
930
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
564
931
  }
@@ -572,6 +939,7 @@
572
939
  "isStatic": true,
573
940
  "isReadOnly": true,
574
941
  "isLiteral": false,
942
+ "visibility": "Public",
575
943
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.SqlServerOptionsExtension",
576
944
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
577
945
  },
@@ -583,6 +951,7 @@
583
951
  "isStatic": true,
584
952
  "isReadOnly": true,
585
953
  "isLiteral": false,
954
+ "visibility": "Public",
586
955
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.SqlServerOptionsExtension",
587
956
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
588
957
  },
@@ -594,6 +963,7 @@
594
963
  "isStatic": true,
595
964
  "isReadOnly": true,
596
965
  "isLiteral": false,
966
+ "visibility": "Public",
597
967
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.SqlServerOptionsExtension",
598
968
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
599
969
  }
@@ -607,6 +977,18 @@
607
977
  "normalizedSignature": "constructor|():void|static=false",
608
978
  "isStatic": false,
609
979
  "parameterCount": 0,
980
+ "visibility": "Public",
981
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.SqlServerOptionsExtension",
982
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
983
+ },
984
+ {
985
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.SqlServerOptionsExtension::.ctor(Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.SqlServerOptionsExtension):void",
986
+ "metadataToken": 100665199,
987
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.SqlServerOptionsExtension):void",
988
+ "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.SqlServerOptionsExtension):void|static=false",
989
+ "isStatic": false,
990
+ "parameterCount": 1,
991
+ "visibility": "Protected",
610
992
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.SqlServerOptionsExtension",
611
993
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
612
994
  }
@@ -623,6 +1005,20 @@
623
1005
  "isSealed": false,
624
1006
  "isStatic": false,
625
1007
  "arity": 0,
1008
+ "baseType": {
1009
+ "stableId": "System.Private.CoreLib:System.Object",
1010
+ "clrName": "System.Object"
1011
+ },
1012
+ "interfaces": [
1013
+ {
1014
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.ISqlServerSingletonOptions",
1015
+ "clrName": "Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.ISqlServerSingletonOptions"
1016
+ },
1017
+ {
1018
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Infrastructure.ISingletonOptions",
1019
+ "clrName": "Microsoft.EntityFrameworkCore.Infrastructure.ISingletonOptions"
1020
+ }
1021
+ ],
626
1022
  "methods": [
627
1023
  {
628
1024
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.SqlServerSingletonOptions::Initialize(Microsoft.EntityFrameworkCore.Infrastructure.IDbContextOptions):System.Void",
@@ -639,6 +1035,7 @@
639
1035
  "isVirtual": true,
640
1036
  "isOverride": false,
641
1037
  "isSealed": false,
1038
+ "visibility": "Public",
642
1039
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.SqlServerSingletonOptions",
643
1040
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
644
1041
  "isExtensionMethod": false
@@ -658,6 +1055,7 @@
658
1055
  "isVirtual": true,
659
1056
  "isOverride": false,
660
1057
  "isSealed": false,
1058
+ "visibility": "Public",
661
1059
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.SqlServerSingletonOptions",
662
1060
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
663
1061
  "isExtensionMethod": false
@@ -669,16 +1067,17 @@
669
1067
  "clrName": "EngineType",
670
1068
  "metadataToken": 385876197,
671
1069
  "canonicalSignature": ":Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.SqlServerEngineType",
672
- "normalizedSignature": "EngineType|:Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.SqlServerEngineType|static=false|accessor=get",
1070
+ "normalizedSignature": "EngineType|:Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.SqlServerEngineType|static=false|accessor=getset",
673
1071
  "emitScope": "ClassSurface",
674
1072
  "provenance": "Original",
675
1073
  "isIndexer": false,
676
1074
  "hasGetter": true,
677
- "hasSetter": false,
1075
+ "hasSetter": true,
678
1076
  "isStatic": false,
679
1077
  "isAbstract": false,
680
1078
  "isVirtual": true,
681
1079
  "isOverride": false,
1080
+ "visibility": "Public",
682
1081
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.SqlServerSingletonOptions",
683
1082
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
684
1083
  },
@@ -687,16 +1086,17 @@
687
1086
  "clrName": "SqlServerCompatibilityLevel",
688
1087
  "metadataToken": 385876198,
689
1088
  "canonicalSignature": ":System.Int32",
690
- "normalizedSignature": "SqlServerCompatibilityLevel|:System.Int32|static=false|accessor=get",
1089
+ "normalizedSignature": "SqlServerCompatibilityLevel|:System.Int32|static=false|accessor=getset",
691
1090
  "emitScope": "ClassSurface",
692
1091
  "provenance": "Original",
693
1092
  "isIndexer": false,
694
1093
  "hasGetter": true,
695
- "hasSetter": false,
1094
+ "hasSetter": true,
696
1095
  "isStatic": false,
697
1096
  "isAbstract": false,
698
1097
  "isVirtual": true,
699
1098
  "isOverride": false,
1099
+ "visibility": "Public",
700
1100
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.SqlServerSingletonOptions",
701
1101
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
702
1102
  },
@@ -705,16 +1105,17 @@
705
1105
  "clrName": "AzureSqlCompatibilityLevel",
706
1106
  "metadataToken": 385876199,
707
1107
  "canonicalSignature": ":System.Int32",
708
- "normalizedSignature": "AzureSqlCompatibilityLevel|:System.Int32|static=false|accessor=get",
1108
+ "normalizedSignature": "AzureSqlCompatibilityLevel|:System.Int32|static=false|accessor=getset",
709
1109
  "emitScope": "ClassSurface",
710
1110
  "provenance": "Original",
711
1111
  "isIndexer": false,
712
1112
  "hasGetter": true,
713
- "hasSetter": false,
1113
+ "hasSetter": true,
714
1114
  "isStatic": false,
715
1115
  "isAbstract": false,
716
1116
  "isVirtual": true,
717
1117
  "isOverride": false,
1118
+ "visibility": "Public",
718
1119
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.SqlServerSingletonOptions",
719
1120
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
720
1121
  },
@@ -723,16 +1124,17 @@
723
1124
  "clrName": "AzureSynapseCompatibilityLevel",
724
1125
  "metadataToken": 385876200,
725
1126
  "canonicalSignature": ":System.Int32",
726
- "normalizedSignature": "AzureSynapseCompatibilityLevel|:System.Int32|static=false|accessor=get",
1127
+ "normalizedSignature": "AzureSynapseCompatibilityLevel|:System.Int32|static=false|accessor=getset",
727
1128
  "emitScope": "ClassSurface",
728
1129
  "provenance": "Original",
729
1130
  "isIndexer": false,
730
1131
  "hasGetter": true,
731
- "hasSetter": false,
1132
+ "hasSetter": true,
732
1133
  "isStatic": false,
733
1134
  "isAbstract": false,
734
1135
  "isVirtual": true,
735
1136
  "isOverride": false,
1137
+ "visibility": "Public",
736
1138
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.SqlServerSingletonOptions",
737
1139
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
738
1140
  },
@@ -751,6 +1153,7 @@
751
1153
  "isAbstract": false,
752
1154
  "isVirtual": true,
753
1155
  "isOverride": false,
1156
+ "visibility": "Public",
754
1157
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.SqlServerSingletonOptions",
755
1158
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
756
1159
  },
@@ -769,6 +1172,7 @@
769
1172
  "isAbstract": false,
770
1173
  "isVirtual": true,
771
1174
  "isOverride": false,
1175
+ "visibility": "Public",
772
1176
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.SqlServerSingletonOptions",
773
1177
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
774
1178
  },
@@ -787,6 +1191,7 @@
787
1191
  "isAbstract": false,
788
1192
  "isVirtual": true,
789
1193
  "isOverride": false,
1194
+ "visibility": "Public",
790
1195
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.SqlServerSingletonOptions",
791
1196
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
792
1197
  },
@@ -805,6 +1210,7 @@
805
1210
  "isAbstract": false,
806
1211
  "isVirtual": true,
807
1212
  "isOverride": false,
1213
+ "visibility": "Public",
808
1214
  "sourceInterface": "Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.ISqlServerSingletonOptions",
809
1215
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.ISqlServerSingletonOptions",
810
1216
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
@@ -824,6 +1230,7 @@
824
1230
  "isAbstract": false,
825
1231
  "isVirtual": true,
826
1232
  "isOverride": false,
1233
+ "visibility": "Public",
827
1234
  "sourceInterface": "Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.ISqlServerSingletonOptions",
828
1235
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.ISqlServerSingletonOptions",
829
1236
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
@@ -843,6 +1250,7 @@
843
1250
  "isAbstract": false,
844
1251
  "isVirtual": true,
845
1252
  "isOverride": false,
1253
+ "visibility": "Public",
846
1254
  "sourceInterface": "Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.ISqlServerSingletonOptions",
847
1255
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.ISqlServerSingletonOptions",
848
1256
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
@@ -862,6 +1270,7 @@
862
1270
  "isAbstract": false,
863
1271
  "isVirtual": true,
864
1272
  "isOverride": false,
1273
+ "visibility": "Public",
865
1274
  "sourceInterface": "Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.ISqlServerSingletonOptions",
866
1275
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.ISqlServerSingletonOptions",
867
1276
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
@@ -881,6 +1290,7 @@
881
1290
  "isAbstract": false,
882
1291
  "isVirtual": true,
883
1292
  "isOverride": false,
1293
+ "visibility": "Public",
884
1294
  "sourceInterface": "Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.ISqlServerSingletonOptions",
885
1295
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.ISqlServerSingletonOptions",
886
1296
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
@@ -900,6 +1310,7 @@
900
1310
  "isAbstract": false,
901
1311
  "isVirtual": true,
902
1312
  "isOverride": false,
1313
+ "visibility": "Public",
903
1314
  "sourceInterface": "Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.ISqlServerSingletonOptions",
904
1315
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.ISqlServerSingletonOptions",
905
1316
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
@@ -919,6 +1330,7 @@
919
1330
  "isAbstract": false,
920
1331
  "isVirtual": true,
921
1332
  "isOverride": false,
1333
+ "visibility": "Public",
922
1334
  "sourceInterface": "Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.ISqlServerSingletonOptions",
923
1335
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.ISqlServerSingletonOptions",
924
1336
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
@@ -934,6 +1346,7 @@
934
1346
  "normalizedSignature": "constructor|():void|static=false",
935
1347
  "isStatic": false,
936
1348
  "parameterCount": 0,
1349
+ "visibility": "Public",
937
1350
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.SqlServerSingletonOptions",
938
1351
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
939
1352
  }