@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
@@ -17,6 +17,16 @@
17
17
  "isSealed": false,
18
18
  "isStatic": false,
19
19
  "arity": 0,
20
+ "baseType": {
21
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.RelationalConventionSetBuilder",
22
+ "clrName": "Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.RelationalConventionSetBuilder"
23
+ },
24
+ "interfaces": [
25
+ {
26
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.IProviderConventionSetBuilder",
27
+ "clrName": "Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.IProviderConventionSetBuilder"
28
+ }
29
+ ],
20
30
  "methods": [
21
31
  {
22
32
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerConventionSetBuilder::CreateConventionSet():Microsoft.EntityFrameworkCore.Metadata.Conventions.ConventionSet",
@@ -33,6 +43,7 @@
33
43
  "isVirtual": true,
34
44
  "isOverride": true,
35
45
  "isSealed": false,
46
+ "visibility": "Public",
36
47
  "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerConventionSetBuilder",
37
48
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
38
49
  "isExtensionMethod": false
@@ -52,6 +63,7 @@
52
63
  "isVirtual": false,
53
64
  "isOverride": false,
54
65
  "isSealed": false,
66
+ "visibility": "Public",
55
67
  "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerConventionSetBuilder",
56
68
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
57
69
  "isExtensionMethod": false
@@ -71,6 +83,7 @@
71
83
  "isVirtual": false,
72
84
  "isOverride": false,
73
85
  "isSealed": false,
86
+ "visibility": "Public",
74
87
  "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerConventionSetBuilder",
75
88
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
76
89
  "isExtensionMethod": false
@@ -87,6 +100,7 @@
87
100
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.ProviderConventionSetBuilderDependencies,Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.RelationalConventionSetBuilderDependencies,Microsoft.EntityFrameworkCore.Storage.ISqlGenerationHelper):void|static=false",
88
101
  "isStatic": false,
89
102
  "parameterCount": 3,
103
+ "visibility": "Public",
90
104
  "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerConventionSetBuilder",
91
105
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
92
106
  }
@@ -103,6 +117,20 @@
103
117
  "isSealed": false,
104
118
  "isStatic": false,
105
119
  "arity": 0,
120
+ "baseType": {
121
+ "stableId": "System.Private.CoreLib:System.Object",
122
+ "clrName": "System.Object"
123
+ },
124
+ "interfaces": [
125
+ {
126
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Metadata.Conventions.IModelFinalizingConvention",
127
+ "clrName": "Microsoft.EntityFrameworkCore.Metadata.Conventions.IModelFinalizingConvention"
128
+ },
129
+ {
130
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Metadata.Conventions.IConvention",
131
+ "clrName": "Microsoft.EntityFrameworkCore.Metadata.Conventions.IConvention"
132
+ }
133
+ ],
106
134
  "methods": [
107
135
  {
108
136
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerDbFunctionConvention::ProcessModelFinalizing(Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionModelBuilder,Microsoft.EntityFrameworkCore.Metadata.Conventions.IConventionContext_1[[Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionModelBuilder,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):System.Void",
@@ -119,12 +147,52 @@
119
147
  "isVirtual": true,
120
148
  "isOverride": false,
121
149
  "isSealed": false,
150
+ "visibility": "Public",
122
151
  "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerDbFunctionConvention",
123
152
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
124
153
  "isExtensionMethod": false
125
154
  }
126
155
  ],
127
- "properties": [],
156
+ "properties": [
157
+ {
158
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerDbFunctionConvention::Dependencies:Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.ProviderConventionSetBuilderDependencies",
159
+ "clrName": "Dependencies",
160
+ "metadataToken": 385876074,
161
+ "canonicalSignature": ":Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.ProviderConventionSetBuilderDependencies",
162
+ "normalizedSignature": "Dependencies|:Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.ProviderConventionSetBuilderDependencies|static=false|accessor=get",
163
+ "emitScope": "ClassSurface",
164
+ "provenance": "Original",
165
+ "isIndexer": false,
166
+ "hasGetter": true,
167
+ "hasSetter": false,
168
+ "isStatic": false,
169
+ "isAbstract": false,
170
+ "isVirtual": true,
171
+ "isOverride": false,
172
+ "visibility": "Protected",
173
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerDbFunctionConvention",
174
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
175
+ },
176
+ {
177
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerDbFunctionConvention::RelationalDependencies:Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.RelationalConventionSetBuilderDependencies",
178
+ "clrName": "RelationalDependencies",
179
+ "metadataToken": 385876075,
180
+ "canonicalSignature": ":Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.RelationalConventionSetBuilderDependencies",
181
+ "normalizedSignature": "RelationalDependencies|:Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.RelationalConventionSetBuilderDependencies|static=false|accessor=get",
182
+ "emitScope": "ClassSurface",
183
+ "provenance": "Original",
184
+ "isIndexer": false,
185
+ "hasGetter": true,
186
+ "hasSetter": false,
187
+ "isStatic": false,
188
+ "isAbstract": false,
189
+ "isVirtual": true,
190
+ "isOverride": false,
191
+ "visibility": "Protected",
192
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerDbFunctionConvention",
193
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
194
+ }
195
+ ],
128
196
  "fields": [],
129
197
  "events": [],
130
198
  "constructors": [
@@ -135,6 +203,7 @@
135
203
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.ProviderConventionSetBuilderDependencies,Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.RelationalConventionSetBuilderDependencies):void|static=false",
136
204
  "isStatic": false,
137
205
  "parameterCount": 2,
206
+ "visibility": "Public",
138
207
  "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerDbFunctionConvention",
139
208
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
140
209
  }
@@ -151,6 +220,40 @@
151
220
  "isSealed": false,
152
221
  "isStatic": false,
153
222
  "arity": 0,
223
+ "baseType": {
224
+ "stableId": "System.Private.CoreLib:System.Object",
225
+ "clrName": "System.Object"
226
+ },
227
+ "interfaces": [
228
+ {
229
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Metadata.Conventions.IEntityTypeBaseTypeChangedConvention",
230
+ "clrName": "Microsoft.EntityFrameworkCore.Metadata.Conventions.IEntityTypeBaseTypeChangedConvention"
231
+ },
232
+ {
233
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Metadata.Conventions.IConvention",
234
+ "clrName": "Microsoft.EntityFrameworkCore.Metadata.Conventions.IConvention"
235
+ },
236
+ {
237
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Metadata.Conventions.IIndexAddedConvention",
238
+ "clrName": "Microsoft.EntityFrameworkCore.Metadata.Conventions.IIndexAddedConvention"
239
+ },
240
+ {
241
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Metadata.Conventions.IIndexUniquenessChangedConvention",
242
+ "clrName": "Microsoft.EntityFrameworkCore.Metadata.Conventions.IIndexUniquenessChangedConvention"
243
+ },
244
+ {
245
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Metadata.Conventions.IIndexAnnotationChangedConvention",
246
+ "clrName": "Microsoft.EntityFrameworkCore.Metadata.Conventions.IIndexAnnotationChangedConvention"
247
+ },
248
+ {
249
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Metadata.Conventions.IPropertyNullabilityChangedConvention",
250
+ "clrName": "Microsoft.EntityFrameworkCore.Metadata.Conventions.IPropertyNullabilityChangedConvention"
251
+ },
252
+ {
253
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Metadata.Conventions.IPropertyAnnotationChangedConvention",
254
+ "clrName": "Microsoft.EntityFrameworkCore.Metadata.Conventions.IPropertyAnnotationChangedConvention"
255
+ }
256
+ ],
154
257
  "methods": [
155
258
  {
156
259
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerIndexConvention::ProcessEntityTypeBaseTypeChanged(Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionEntityTypeBuilder,Microsoft.EntityFrameworkCore.Metadata.IConventionEntityType,Microsoft.EntityFrameworkCore.Metadata.IConventionEntityType,Microsoft.EntityFrameworkCore.Metadata.Conventions.IConventionContext_1[[Microsoft.EntityFrameworkCore.Metadata.IConventionEntityType,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):System.Void",
@@ -167,6 +270,7 @@
167
270
  "isVirtual": true,
168
271
  "isOverride": false,
169
272
  "isSealed": false,
273
+ "visibility": "Public",
170
274
  "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerIndexConvention",
171
275
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
172
276
  "isExtensionMethod": false
@@ -186,6 +290,7 @@
186
290
  "isVirtual": true,
187
291
  "isOverride": false,
188
292
  "isSealed": false,
293
+ "visibility": "Public",
189
294
  "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerIndexConvention",
190
295
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
191
296
  "isExtensionMethod": false
@@ -205,6 +310,7 @@
205
310
  "isVirtual": true,
206
311
  "isOverride": false,
207
312
  "isSealed": false,
313
+ "visibility": "Public",
208
314
  "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerIndexConvention",
209
315
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
210
316
  "isExtensionMethod": false
@@ -224,6 +330,7 @@
224
330
  "isVirtual": true,
225
331
  "isOverride": false,
226
332
  "isSealed": false,
333
+ "visibility": "Public",
227
334
  "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerIndexConvention",
228
335
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
229
336
  "isExtensionMethod": false
@@ -243,6 +350,7 @@
243
350
  "isVirtual": true,
244
351
  "isOverride": false,
245
352
  "isSealed": false,
353
+ "visibility": "Public",
246
354
  "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerIndexConvention",
247
355
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
248
356
  "isExtensionMethod": false
@@ -262,12 +370,52 @@
262
370
  "isVirtual": true,
263
371
  "isOverride": false,
264
372
  "isSealed": false,
373
+ "visibility": "Public",
265
374
  "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerIndexConvention",
266
375
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
267
376
  "isExtensionMethod": false
268
377
  }
269
378
  ],
270
- "properties": [],
379
+ "properties": [
380
+ {
381
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerIndexConvention::Dependencies:Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.ProviderConventionSetBuilderDependencies",
382
+ "clrName": "Dependencies",
383
+ "metadataToken": 385876076,
384
+ "canonicalSignature": ":Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.ProviderConventionSetBuilderDependencies",
385
+ "normalizedSignature": "Dependencies|:Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.ProviderConventionSetBuilderDependencies|static=false|accessor=get",
386
+ "emitScope": "ClassSurface",
387
+ "provenance": "Original",
388
+ "isIndexer": false,
389
+ "hasGetter": true,
390
+ "hasSetter": false,
391
+ "isStatic": false,
392
+ "isAbstract": false,
393
+ "isVirtual": true,
394
+ "isOverride": false,
395
+ "visibility": "Protected",
396
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerIndexConvention",
397
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
398
+ },
399
+ {
400
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerIndexConvention::RelationalDependencies:Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.RelationalConventionSetBuilderDependencies",
401
+ "clrName": "RelationalDependencies",
402
+ "metadataToken": 385876077,
403
+ "canonicalSignature": ":Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.RelationalConventionSetBuilderDependencies",
404
+ "normalizedSignature": "RelationalDependencies|:Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.RelationalConventionSetBuilderDependencies|static=false|accessor=get",
405
+ "emitScope": "ClassSurface",
406
+ "provenance": "Original",
407
+ "isIndexer": false,
408
+ "hasGetter": true,
409
+ "hasSetter": false,
410
+ "isStatic": false,
411
+ "isAbstract": false,
412
+ "isVirtual": true,
413
+ "isOverride": false,
414
+ "visibility": "Protected",
415
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerIndexConvention",
416
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
417
+ }
418
+ ],
271
419
  "fields": [],
272
420
  "events": [],
273
421
  "constructors": [
@@ -278,6 +426,7 @@
278
426
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.ProviderConventionSetBuilderDependencies,Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.RelationalConventionSetBuilderDependencies,Microsoft.EntityFrameworkCore.Storage.ISqlGenerationHelper):void|static=false",
279
427
  "isStatic": false,
280
428
  "parameterCount": 3,
429
+ "visibility": "Public",
281
430
  "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerIndexConvention",
282
431
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
283
432
  }
@@ -294,6 +443,28 @@
294
443
  "isSealed": false,
295
444
  "isStatic": false,
296
445
  "arity": 0,
446
+ "baseType": {
447
+ "stableId": "System.Private.CoreLib:System.Object",
448
+ "clrName": "System.Object"
449
+ },
450
+ "interfaces": [
451
+ {
452
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Metadata.Conventions.IEntityTypeAnnotationChangedConvention",
453
+ "clrName": "Microsoft.EntityFrameworkCore.Metadata.Conventions.IEntityTypeAnnotationChangedConvention"
454
+ },
455
+ {
456
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Metadata.Conventions.IConvention",
457
+ "clrName": "Microsoft.EntityFrameworkCore.Metadata.Conventions.IConvention"
458
+ },
459
+ {
460
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Metadata.Conventions.IKeyAddedConvention",
461
+ "clrName": "Microsoft.EntityFrameworkCore.Metadata.Conventions.IKeyAddedConvention"
462
+ },
463
+ {
464
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Metadata.Conventions.IIndexAddedConvention",
465
+ "clrName": "Microsoft.EntityFrameworkCore.Metadata.Conventions.IIndexAddedConvention"
466
+ }
467
+ ],
297
468
  "methods": [
298
469
  {
299
470
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerMemoryOptimizedTablesConvention::ProcessEntityTypeAnnotationChanged(Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionEntityTypeBuilder,System.String,Microsoft.EntityFrameworkCore.Metadata.IConventionAnnotation,Microsoft.EntityFrameworkCore.Metadata.IConventionAnnotation,Microsoft.EntityFrameworkCore.Metadata.Conventions.IConventionContext_1[[Microsoft.EntityFrameworkCore.Metadata.IConventionAnnotation,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):System.Void",
@@ -310,6 +481,7 @@
310
481
  "isVirtual": true,
311
482
  "isOverride": false,
312
483
  "isSealed": false,
484
+ "visibility": "Public",
313
485
  "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerMemoryOptimizedTablesConvention",
314
486
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
315
487
  "isExtensionMethod": false
@@ -329,6 +501,7 @@
329
501
  "isVirtual": true,
330
502
  "isOverride": false,
331
503
  "isSealed": false,
504
+ "visibility": "Public",
332
505
  "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerMemoryOptimizedTablesConvention",
333
506
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
334
507
  "isExtensionMethod": false
@@ -348,12 +521,52 @@
348
521
  "isVirtual": true,
349
522
  "isOverride": false,
350
523
  "isSealed": false,
524
+ "visibility": "Public",
351
525
  "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerMemoryOptimizedTablesConvention",
352
526
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
353
527
  "isExtensionMethod": false
354
528
  }
355
529
  ],
356
- "properties": [],
530
+ "properties": [
531
+ {
532
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerMemoryOptimizedTablesConvention::Dependencies:Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.ProviderConventionSetBuilderDependencies",
533
+ "clrName": "Dependencies",
534
+ "metadataToken": 385876078,
535
+ "canonicalSignature": ":Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.ProviderConventionSetBuilderDependencies",
536
+ "normalizedSignature": "Dependencies|:Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.ProviderConventionSetBuilderDependencies|static=false|accessor=get",
537
+ "emitScope": "ClassSurface",
538
+ "provenance": "Original",
539
+ "isIndexer": false,
540
+ "hasGetter": true,
541
+ "hasSetter": false,
542
+ "isStatic": false,
543
+ "isAbstract": false,
544
+ "isVirtual": true,
545
+ "isOverride": false,
546
+ "visibility": "Protected",
547
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerMemoryOptimizedTablesConvention",
548
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
549
+ },
550
+ {
551
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerMemoryOptimizedTablesConvention::RelationalDependencies:Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.RelationalConventionSetBuilderDependencies",
552
+ "clrName": "RelationalDependencies",
553
+ "metadataToken": 385876079,
554
+ "canonicalSignature": ":Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.RelationalConventionSetBuilderDependencies",
555
+ "normalizedSignature": "RelationalDependencies|:Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.RelationalConventionSetBuilderDependencies|static=false|accessor=get",
556
+ "emitScope": "ClassSurface",
557
+ "provenance": "Original",
558
+ "isIndexer": false,
559
+ "hasGetter": true,
560
+ "hasSetter": false,
561
+ "isStatic": false,
562
+ "isAbstract": false,
563
+ "isVirtual": true,
564
+ "isOverride": false,
565
+ "visibility": "Protected",
566
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerMemoryOptimizedTablesConvention",
567
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
568
+ }
569
+ ],
357
570
  "fields": [],
358
571
  "events": [],
359
572
  "constructors": [
@@ -364,6 +577,7 @@
364
577
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.ProviderConventionSetBuilderDependencies,Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.RelationalConventionSetBuilderDependencies):void|static=false",
365
578
  "isStatic": false,
366
579
  "parameterCount": 2,
580
+ "visibility": "Public",
367
581
  "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerMemoryOptimizedTablesConvention",
368
582
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
369
583
  }
@@ -380,6 +594,32 @@
380
594
  "isSealed": false,
381
595
  "isStatic": false,
382
596
  "arity": 0,
597
+ "baseType": {
598
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Metadata.Conventions.CascadeDeleteConvention",
599
+ "clrName": "Microsoft.EntityFrameworkCore.Metadata.Conventions.CascadeDeleteConvention"
600
+ },
601
+ "interfaces": [
602
+ {
603
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Metadata.Conventions.IForeignKeyAddedConvention",
604
+ "clrName": "Microsoft.EntityFrameworkCore.Metadata.Conventions.IForeignKeyAddedConvention"
605
+ },
606
+ {
607
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Metadata.Conventions.IConvention",
608
+ "clrName": "Microsoft.EntityFrameworkCore.Metadata.Conventions.IConvention"
609
+ },
610
+ {
611
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Metadata.Conventions.IForeignKeyRequirednessChangedConvention",
612
+ "clrName": "Microsoft.EntityFrameworkCore.Metadata.Conventions.IForeignKeyRequirednessChangedConvention"
613
+ },
614
+ {
615
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Metadata.Conventions.ISkipNavigationForeignKeyChangedConvention",
616
+ "clrName": "Microsoft.EntityFrameworkCore.Metadata.Conventions.ISkipNavigationForeignKeyChangedConvention"
617
+ },
618
+ {
619
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Metadata.Conventions.IEntityTypeAnnotationChangedConvention",
620
+ "clrName": "Microsoft.EntityFrameworkCore.Metadata.Conventions.IEntityTypeAnnotationChangedConvention"
621
+ }
622
+ ],
383
623
  "methods": [
384
624
  {
385
625
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerOnDeleteConvention::ProcessSkipNavigationForeignKeyChanged(Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionSkipNavigationBuilder,Microsoft.EntityFrameworkCore.Metadata.IConventionForeignKey,Microsoft.EntityFrameworkCore.Metadata.IConventionForeignKey,Microsoft.EntityFrameworkCore.Metadata.Conventions.IConventionContext_1[[Microsoft.EntityFrameworkCore.Metadata.IConventionForeignKey,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):System.Void",
@@ -396,6 +636,27 @@
396
636
  "isVirtual": true,
397
637
  "isOverride": false,
398
638
  "isSealed": false,
639
+ "visibility": "Public",
640
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerOnDeleteConvention",
641
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
642
+ "isExtensionMethod": false
643
+ },
644
+ {
645
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerOnDeleteConvention::GetTargetDeleteBehavior(Microsoft.EntityFrameworkCore.Metadata.IConventionForeignKey):Microsoft.EntityFrameworkCore.DeleteBehavior",
646
+ "clrName": "GetTargetDeleteBehavior",
647
+ "metadataToken": 100664222,
648
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Metadata.IConventionForeignKey):Microsoft.EntityFrameworkCore.DeleteBehavior",
649
+ "normalizedSignature": "GetTargetDeleteBehavior|(Microsoft.EntityFrameworkCore.Metadata.IConventionForeignKey):Microsoft.EntityFrameworkCore.DeleteBehavior|static=false",
650
+ "emitScope": "ClassSurface",
651
+ "provenance": "Original",
652
+ "arity": 0,
653
+ "parameterCount": 1,
654
+ "isStatic": false,
655
+ "isAbstract": false,
656
+ "isVirtual": true,
657
+ "isOverride": true,
658
+ "isSealed": false,
659
+ "visibility": "Protected",
399
660
  "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerOnDeleteConvention",
400
661
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
401
662
  "isExtensionMethod": false
@@ -415,12 +676,33 @@
415
676
  "isVirtual": true,
416
677
  "isOverride": false,
417
678
  "isSealed": false,
679
+ "visibility": "Public",
418
680
  "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerOnDeleteConvention",
419
681
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
420
682
  "isExtensionMethod": false
421
683
  }
422
684
  ],
423
- "properties": [],
685
+ "properties": [
686
+ {
687
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerOnDeleteConvention::RelationalDependencies:Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.RelationalConventionSetBuilderDependencies",
688
+ "clrName": "RelationalDependencies",
689
+ "metadataToken": 385876080,
690
+ "canonicalSignature": ":Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.RelationalConventionSetBuilderDependencies",
691
+ "normalizedSignature": "RelationalDependencies|:Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.RelationalConventionSetBuilderDependencies|static=false|accessor=get",
692
+ "emitScope": "ClassSurface",
693
+ "provenance": "Original",
694
+ "isIndexer": false,
695
+ "hasGetter": true,
696
+ "hasSetter": false,
697
+ "isStatic": false,
698
+ "isAbstract": false,
699
+ "isVirtual": true,
700
+ "isOverride": false,
701
+ "visibility": "Protected",
702
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerOnDeleteConvention",
703
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
704
+ }
705
+ ],
424
706
  "fields": [],
425
707
  "events": [],
426
708
  "constructors": [
@@ -431,6 +713,7 @@
431
713
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.ProviderConventionSetBuilderDependencies,Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.RelationalConventionSetBuilderDependencies):void|static=false",
432
714
  "isStatic": false,
433
715
  "parameterCount": 2,
716
+ "visibility": "Public",
434
717
  "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerOnDeleteConvention",
435
718
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
436
719
  }
@@ -447,6 +730,24 @@
447
730
  "isSealed": false,
448
731
  "isStatic": false,
449
732
  "arity": 0,
733
+ "baseType": {
734
+ "stableId": "System.Private.CoreLib:System.Object",
735
+ "clrName": "System.Object"
736
+ },
737
+ "interfaces": [
738
+ {
739
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Metadata.Conventions.ITriggerAddedConvention",
740
+ "clrName": "Microsoft.EntityFrameworkCore.Metadata.Conventions.ITriggerAddedConvention"
741
+ },
742
+ {
743
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Metadata.Conventions.IConvention",
744
+ "clrName": "Microsoft.EntityFrameworkCore.Metadata.Conventions.IConvention"
745
+ },
746
+ {
747
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Metadata.Conventions.ITriggerRemovedConvention",
748
+ "clrName": "Microsoft.EntityFrameworkCore.Metadata.Conventions.ITriggerRemovedConvention"
749
+ }
750
+ ],
450
751
  "methods": [
451
752
  {
452
753
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerOutputClauseConvention::ProcessTriggerAdded(Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionTriggerBuilder,Microsoft.EntityFrameworkCore.Metadata.Conventions.IConventionContext_1[[Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionTriggerBuilder,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):System.Void",
@@ -463,6 +764,7 @@
463
764
  "isVirtual": true,
464
765
  "isOverride": false,
465
766
  "isSealed": false,
767
+ "visibility": "Public",
466
768
  "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerOutputClauseConvention",
467
769
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
468
770
  "isExtensionMethod": false
@@ -482,12 +784,52 @@
482
784
  "isVirtual": true,
483
785
  "isOverride": false,
484
786
  "isSealed": false,
787
+ "visibility": "Public",
485
788
  "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerOutputClauseConvention",
486
789
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
487
790
  "isExtensionMethod": false
488
791
  }
489
792
  ],
490
- "properties": [],
793
+ "properties": [
794
+ {
795
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerOutputClauseConvention::Dependencies:Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.ProviderConventionSetBuilderDependencies",
796
+ "clrName": "Dependencies",
797
+ "metadataToken": 385876081,
798
+ "canonicalSignature": ":Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.ProviderConventionSetBuilderDependencies",
799
+ "normalizedSignature": "Dependencies|:Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.ProviderConventionSetBuilderDependencies|static=false|accessor=get",
800
+ "emitScope": "ClassSurface",
801
+ "provenance": "Original",
802
+ "isIndexer": false,
803
+ "hasGetter": true,
804
+ "hasSetter": false,
805
+ "isStatic": false,
806
+ "isAbstract": false,
807
+ "isVirtual": true,
808
+ "isOverride": false,
809
+ "visibility": "Protected",
810
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerOutputClauseConvention",
811
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
812
+ },
813
+ {
814
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerOutputClauseConvention::RelationalDependencies:Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.RelationalConventionSetBuilderDependencies",
815
+ "clrName": "RelationalDependencies",
816
+ "metadataToken": 385876082,
817
+ "canonicalSignature": ":Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.RelationalConventionSetBuilderDependencies",
818
+ "normalizedSignature": "RelationalDependencies|:Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.RelationalConventionSetBuilderDependencies|static=false|accessor=get",
819
+ "emitScope": "ClassSurface",
820
+ "provenance": "Original",
821
+ "isIndexer": false,
822
+ "hasGetter": true,
823
+ "hasSetter": false,
824
+ "isStatic": false,
825
+ "isAbstract": false,
826
+ "isVirtual": true,
827
+ "isOverride": false,
828
+ "visibility": "Protected",
829
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerOutputClauseConvention",
830
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
831
+ }
832
+ ],
491
833
  "fields": [],
492
834
  "events": [],
493
835
  "constructors": [
@@ -498,6 +840,7 @@
498
840
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.ProviderConventionSetBuilderDependencies,Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.RelationalConventionSetBuilderDependencies):void|static=false",
499
841
  "isStatic": false,
500
842
  "parameterCount": 2,
843
+ "visibility": "Public",
501
844
  "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerOutputClauseConvention",
502
845
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
503
846
  }
@@ -514,7 +857,142 @@
514
857
  "isSealed": false,
515
858
  "isStatic": false,
516
859
  "arity": 0,
517
- "methods": [],
860
+ "baseType": {
861
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Metadata.Conventions.RelationalRuntimeModelConvention",
862
+ "clrName": "Microsoft.EntityFrameworkCore.Metadata.Conventions.RelationalRuntimeModelConvention"
863
+ },
864
+ "interfaces": [
865
+ {
866
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Metadata.Conventions.IModelFinalizedConvention",
867
+ "clrName": "Microsoft.EntityFrameworkCore.Metadata.Conventions.IModelFinalizedConvention"
868
+ },
869
+ {
870
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Metadata.Conventions.IConvention",
871
+ "clrName": "Microsoft.EntityFrameworkCore.Metadata.Conventions.IConvention"
872
+ }
873
+ ],
874
+ "methods": [
875
+ {
876
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerRuntimeModelConvention::ProcessModelAnnotations(System.Collections.Generic.Dictionary_2[[System.String,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[System.Object,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e]],Microsoft.EntityFrameworkCore.Metadata.IModel,Microsoft.EntityFrameworkCore.Metadata.RuntimeModel,System.Boolean):System.Void",
877
+ "clrName": "ProcessModelAnnotations",
878
+ "metadataToken": 100664234,
879
+ "canonicalSignature": "(System.Collections.Generic.Dictionary_2[[System.String,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[System.Object,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e]],Microsoft.EntityFrameworkCore.Metadata.IModel,Microsoft.EntityFrameworkCore.Metadata.RuntimeModel,System.Boolean):System.Void",
880
+ "normalizedSignature": "ProcessModelAnnotations|(System.Collections.Generic.Dictionary_2[[System.String,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[System.Object,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e]],Microsoft.EntityFrameworkCore.Metadata.IModel,Microsoft.EntityFrameworkCore.Metadata.RuntimeModel,System.Boolean):System.Void|static=false",
881
+ "emitScope": "ClassSurface",
882
+ "provenance": "Original",
883
+ "arity": 0,
884
+ "parameterCount": 4,
885
+ "isStatic": false,
886
+ "isAbstract": false,
887
+ "isVirtual": true,
888
+ "isOverride": true,
889
+ "isSealed": false,
890
+ "visibility": "Protected",
891
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerRuntimeModelConvention",
892
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
893
+ "isExtensionMethod": false
894
+ },
895
+ {
896
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerRuntimeModelConvention::ProcessPropertyAnnotations(System.Collections.Generic.Dictionary_2[[System.String,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[System.Object,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e]],Microsoft.EntityFrameworkCore.Metadata.IProperty,Microsoft.EntityFrameworkCore.Metadata.RuntimeProperty,System.Boolean):System.Void",
897
+ "clrName": "ProcessPropertyAnnotations",
898
+ "metadataToken": 100664235,
899
+ "canonicalSignature": "(System.Collections.Generic.Dictionary_2[[System.String,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[System.Object,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e]],Microsoft.EntityFrameworkCore.Metadata.IProperty,Microsoft.EntityFrameworkCore.Metadata.RuntimeProperty,System.Boolean):System.Void",
900
+ "normalizedSignature": "ProcessPropertyAnnotations|(System.Collections.Generic.Dictionary_2[[System.String,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[System.Object,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e]],Microsoft.EntityFrameworkCore.Metadata.IProperty,Microsoft.EntityFrameworkCore.Metadata.RuntimeProperty,System.Boolean):System.Void|static=false",
901
+ "emitScope": "ClassSurface",
902
+ "provenance": "Original",
903
+ "arity": 0,
904
+ "parameterCount": 4,
905
+ "isStatic": false,
906
+ "isAbstract": false,
907
+ "isVirtual": true,
908
+ "isOverride": true,
909
+ "isSealed": false,
910
+ "visibility": "Protected",
911
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerRuntimeModelConvention",
912
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
913
+ "isExtensionMethod": false
914
+ },
915
+ {
916
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerRuntimeModelConvention::ProcessPropertyOverridesAnnotations(System.Collections.Generic.Dictionary_2[[System.String,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[System.Object,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e]],Microsoft.EntityFrameworkCore.Metadata.IRelationalPropertyOverrides,Microsoft.EntityFrameworkCore.Metadata.RuntimeRelationalPropertyOverrides,System.Boolean):System.Void",
917
+ "clrName": "ProcessPropertyOverridesAnnotations",
918
+ "metadataToken": 100664236,
919
+ "canonicalSignature": "(System.Collections.Generic.Dictionary_2[[System.String,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[System.Object,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e]],Microsoft.EntityFrameworkCore.Metadata.IRelationalPropertyOverrides,Microsoft.EntityFrameworkCore.Metadata.RuntimeRelationalPropertyOverrides,System.Boolean):System.Void",
920
+ "normalizedSignature": "ProcessPropertyOverridesAnnotations|(System.Collections.Generic.Dictionary_2[[System.String,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[System.Object,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e]],Microsoft.EntityFrameworkCore.Metadata.IRelationalPropertyOverrides,Microsoft.EntityFrameworkCore.Metadata.RuntimeRelationalPropertyOverrides,System.Boolean):System.Void|static=false",
921
+ "emitScope": "ClassSurface",
922
+ "provenance": "Original",
923
+ "arity": 0,
924
+ "parameterCount": 4,
925
+ "isStatic": false,
926
+ "isAbstract": false,
927
+ "isVirtual": true,
928
+ "isOverride": true,
929
+ "isSealed": false,
930
+ "visibility": "Protected",
931
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerRuntimeModelConvention",
932
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
933
+ "isExtensionMethod": false
934
+ },
935
+ {
936
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerRuntimeModelConvention::ProcessIndexAnnotations(System.Collections.Generic.Dictionary_2[[System.String,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[System.Object,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e]],Microsoft.EntityFrameworkCore.Metadata.IIndex,Microsoft.EntityFrameworkCore.Metadata.RuntimeIndex,System.Boolean):System.Void",
937
+ "clrName": "ProcessIndexAnnotations",
938
+ "metadataToken": 100664237,
939
+ "canonicalSignature": "(System.Collections.Generic.Dictionary_2[[System.String,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[System.Object,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e]],Microsoft.EntityFrameworkCore.Metadata.IIndex,Microsoft.EntityFrameworkCore.Metadata.RuntimeIndex,System.Boolean):System.Void",
940
+ "normalizedSignature": "ProcessIndexAnnotations|(System.Collections.Generic.Dictionary_2[[System.String,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[System.Object,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e]],Microsoft.EntityFrameworkCore.Metadata.IIndex,Microsoft.EntityFrameworkCore.Metadata.RuntimeIndex,System.Boolean):System.Void|static=false",
941
+ "emitScope": "ClassSurface",
942
+ "provenance": "Original",
943
+ "arity": 0,
944
+ "parameterCount": 4,
945
+ "isStatic": false,
946
+ "isAbstract": false,
947
+ "isVirtual": true,
948
+ "isOverride": true,
949
+ "isSealed": false,
950
+ "visibility": "Protected",
951
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerRuntimeModelConvention",
952
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
953
+ "isExtensionMethod": false
954
+ },
955
+ {
956
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerRuntimeModelConvention::ProcessKeyAnnotations(System.Collections.Generic.Dictionary_2[[System.String,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[System.Object,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e]],Microsoft.EntityFrameworkCore.Metadata.IKey,Microsoft.EntityFrameworkCore.Metadata.RuntimeKey,System.Boolean):System.Void",
957
+ "clrName": "ProcessKeyAnnotations",
958
+ "metadataToken": 100664238,
959
+ "canonicalSignature": "(System.Collections.Generic.Dictionary_2[[System.String,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[System.Object,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e]],Microsoft.EntityFrameworkCore.Metadata.IKey,Microsoft.EntityFrameworkCore.Metadata.RuntimeKey,System.Boolean):System.Void",
960
+ "normalizedSignature": "ProcessKeyAnnotations|(System.Collections.Generic.Dictionary_2[[System.String,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[System.Object,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e]],Microsoft.EntityFrameworkCore.Metadata.IKey,Microsoft.EntityFrameworkCore.Metadata.RuntimeKey,System.Boolean):System.Void|static=false",
961
+ "emitScope": "ClassSurface",
962
+ "provenance": "Original",
963
+ "arity": 0,
964
+ "parameterCount": 4,
965
+ "isStatic": false,
966
+ "isAbstract": false,
967
+ "isVirtual": true,
968
+ "isOverride": true,
969
+ "isSealed": false,
970
+ "visibility": "Protected",
971
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerRuntimeModelConvention",
972
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
973
+ "isExtensionMethod": false
974
+ },
975
+ {
976
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerRuntimeModelConvention::ProcessEntityTypeAnnotations(System.Collections.Generic.Dictionary_2[[System.String,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[System.Object,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e]],Microsoft.EntityFrameworkCore.Metadata.IEntityType,Microsoft.EntityFrameworkCore.Metadata.RuntimeEntityType,System.Boolean):System.Void",
977
+ "clrName": "ProcessEntityTypeAnnotations",
978
+ "metadataToken": 100664239,
979
+ "canonicalSignature": "(System.Collections.Generic.Dictionary_2[[System.String,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[System.Object,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e]],Microsoft.EntityFrameworkCore.Metadata.IEntityType,Microsoft.EntityFrameworkCore.Metadata.RuntimeEntityType,System.Boolean):System.Void",
980
+ "normalizedSignature": "ProcessEntityTypeAnnotations|(System.Collections.Generic.Dictionary_2[[System.String,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[System.Object,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e]],Microsoft.EntityFrameworkCore.Metadata.IEntityType,Microsoft.EntityFrameworkCore.Metadata.RuntimeEntityType,System.Boolean):System.Void|static=false",
981
+ "emitScope": "ClassSurface",
982
+ "provenance": "Original",
983
+ "arity": 0,
984
+ "parameterCount": 4,
985
+ "isStatic": false,
986
+ "isAbstract": false,
987
+ "isVirtual": true,
988
+ "isOverride": true,
989
+ "isSealed": false,
990
+ "visibility": "Protected",
991
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerRuntimeModelConvention",
992
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
993
+ "isExtensionMethod": false
994
+ }
995
+ ],
518
996
  "properties": [],
519
997
  "fields": [],
520
998
  "events": [],
@@ -526,6 +1004,7 @@
526
1004
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.ProviderConventionSetBuilderDependencies,Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.RelationalConventionSetBuilderDependencies):void|static=false",
527
1005
  "isStatic": false,
528
1006
  "parameterCount": 2,
1007
+ "visibility": "Public",
529
1008
  "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerRuntimeModelConvention",
530
1009
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
531
1010
  }
@@ -542,8 +1021,114 @@
542
1021
  "isSealed": false,
543
1022
  "isStatic": false,
544
1023
  "arity": 0,
545
- "methods": [],
546
- "properties": [],
1024
+ "baseType": {
1025
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Metadata.Conventions.SharedTableConvention",
1026
+ "clrName": "Microsoft.EntityFrameworkCore.Metadata.Conventions.SharedTableConvention"
1027
+ },
1028
+ "interfaces": [
1029
+ {
1030
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Metadata.Conventions.IModelFinalizingConvention",
1031
+ "clrName": "Microsoft.EntityFrameworkCore.Metadata.Conventions.IModelFinalizingConvention"
1032
+ },
1033
+ {
1034
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Metadata.Conventions.IConvention",
1035
+ "clrName": "Microsoft.EntityFrameworkCore.Metadata.Conventions.IConvention"
1036
+ }
1037
+ ],
1038
+ "methods": [
1039
+ {
1040
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerSharedTableConvention::AreCompatible(Microsoft.EntityFrameworkCore.Metadata.IReadOnlyKey,Microsoft.EntityFrameworkCore.Metadata.IReadOnlyKey,Microsoft.EntityFrameworkCore.Metadata.StoreObjectIdentifier\u0026):System.Boolean",
1041
+ "clrName": "AreCompatible",
1042
+ "metadataToken": 100664243,
1043
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Metadata.IReadOnlyKey,Microsoft.EntityFrameworkCore.Metadata.IReadOnlyKey,Microsoft.EntityFrameworkCore.Metadata.StoreObjectIdentifier\u0026):System.Boolean",
1044
+ "normalizedSignature": "AreCompatible|(Microsoft.EntityFrameworkCore.Metadata.IReadOnlyKey,Microsoft.EntityFrameworkCore.Metadata.IReadOnlyKey,Microsoft.EntityFrameworkCore.Metadata.StoreObjectIdentifier\u0026):System.Boolean|static=false",
1045
+ "emitScope": "ClassSurface",
1046
+ "provenance": "Original",
1047
+ "arity": 0,
1048
+ "parameterCount": 3,
1049
+ "isStatic": false,
1050
+ "isAbstract": false,
1051
+ "isVirtual": true,
1052
+ "isOverride": true,
1053
+ "isSealed": false,
1054
+ "visibility": "Protected",
1055
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerSharedTableConvention",
1056
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
1057
+ "isExtensionMethod": false,
1058
+ "parameterModifiers": [
1059
+ {
1060
+ "index": 2,
1061
+ "modifier": "in"
1062
+ }
1063
+ ]
1064
+ },
1065
+ {
1066
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerSharedTableConvention::AreCompatible(Microsoft.EntityFrameworkCore.Metadata.IReadOnlyIndex,Microsoft.EntityFrameworkCore.Metadata.IReadOnlyIndex,Microsoft.EntityFrameworkCore.Metadata.StoreObjectIdentifier\u0026):System.Boolean",
1067
+ "clrName": "AreCompatible",
1068
+ "metadataToken": 100664244,
1069
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Metadata.IReadOnlyIndex,Microsoft.EntityFrameworkCore.Metadata.IReadOnlyIndex,Microsoft.EntityFrameworkCore.Metadata.StoreObjectIdentifier\u0026):System.Boolean",
1070
+ "normalizedSignature": "AreCompatible|(Microsoft.EntityFrameworkCore.Metadata.IReadOnlyIndex,Microsoft.EntityFrameworkCore.Metadata.IReadOnlyIndex,Microsoft.EntityFrameworkCore.Metadata.StoreObjectIdentifier\u0026):System.Boolean|static=false",
1071
+ "emitScope": "ClassSurface",
1072
+ "provenance": "Original",
1073
+ "arity": 0,
1074
+ "parameterCount": 3,
1075
+ "isStatic": false,
1076
+ "isAbstract": false,
1077
+ "isVirtual": true,
1078
+ "isOverride": true,
1079
+ "isSealed": false,
1080
+ "visibility": "Protected",
1081
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerSharedTableConvention",
1082
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
1083
+ "isExtensionMethod": false,
1084
+ "parameterModifiers": [
1085
+ {
1086
+ "index": 2,
1087
+ "modifier": "in"
1088
+ }
1089
+ ]
1090
+ }
1091
+ ],
1092
+ "properties": [
1093
+ {
1094
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerSharedTableConvention::IndexesUniqueAcrossTables:System.Boolean",
1095
+ "clrName": "IndexesUniqueAcrossTables",
1096
+ "metadataToken": 385876083,
1097
+ "canonicalSignature": ":System.Boolean",
1098
+ "normalizedSignature": "IndexesUniqueAcrossTables|:System.Boolean|static=false|accessor=get",
1099
+ "emitScope": "ClassSurface",
1100
+ "provenance": "Original",
1101
+ "isIndexer": false,
1102
+ "hasGetter": true,
1103
+ "hasSetter": false,
1104
+ "isStatic": false,
1105
+ "isAbstract": false,
1106
+ "isVirtual": true,
1107
+ "isOverride": true,
1108
+ "visibility": "Protected",
1109
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerSharedTableConvention",
1110
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
1111
+ },
1112
+ {
1113
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerSharedTableConvention::DefaultConstraintsUniqueAcrossTables:System.Boolean",
1114
+ "clrName": "DefaultConstraintsUniqueAcrossTables",
1115
+ "metadataToken": 385876084,
1116
+ "canonicalSignature": ":System.Boolean",
1117
+ "normalizedSignature": "DefaultConstraintsUniqueAcrossTables|:System.Boolean|static=false|accessor=get",
1118
+ "emitScope": "ClassSurface",
1119
+ "provenance": "Original",
1120
+ "isIndexer": false,
1121
+ "hasGetter": true,
1122
+ "hasSetter": false,
1123
+ "isStatic": false,
1124
+ "isAbstract": false,
1125
+ "isVirtual": true,
1126
+ "isOverride": true,
1127
+ "visibility": "Protected",
1128
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerSharedTableConvention",
1129
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
1130
+ }
1131
+ ],
547
1132
  "fields": [],
548
1133
  "events": [],
549
1134
  "constructors": [
@@ -554,6 +1139,7 @@
554
1139
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.ProviderConventionSetBuilderDependencies,Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.RelationalConventionSetBuilderDependencies):void|static=false",
555
1140
  "isStatic": false,
556
1141
  "parameterCount": 2,
1142
+ "visibility": "Public",
557
1143
  "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerSharedTableConvention",
558
1144
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
559
1145
  }
@@ -570,6 +1156,24 @@
570
1156
  "isSealed": false,
571
1157
  "isStatic": false,
572
1158
  "arity": 0,
1159
+ "baseType": {
1160
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Metadata.Conventions.StoreGenerationConvention",
1161
+ "clrName": "Microsoft.EntityFrameworkCore.Metadata.Conventions.StoreGenerationConvention"
1162
+ },
1163
+ "interfaces": [
1164
+ {
1165
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Metadata.Conventions.IPropertyAnnotationChangedConvention",
1166
+ "clrName": "Microsoft.EntityFrameworkCore.Metadata.Conventions.IPropertyAnnotationChangedConvention"
1167
+ },
1168
+ {
1169
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Metadata.Conventions.IConvention",
1170
+ "clrName": "Microsoft.EntityFrameworkCore.Metadata.Conventions.IConvention"
1171
+ },
1172
+ {
1173
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Metadata.Conventions.IModelFinalizingConvention",
1174
+ "clrName": "Microsoft.EntityFrameworkCore.Metadata.Conventions.IModelFinalizingConvention"
1175
+ }
1176
+ ],
573
1177
  "methods": [
574
1178
  {
575
1179
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerStoreGenerationConvention::ProcessPropertyAnnotationChanged(Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionPropertyBuilder,System.String,Microsoft.EntityFrameworkCore.Metadata.IConventionAnnotation,Microsoft.EntityFrameworkCore.Metadata.IConventionAnnotation,Microsoft.EntityFrameworkCore.Metadata.Conventions.IConventionContext_1[[Microsoft.EntityFrameworkCore.Metadata.IConventionAnnotation,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):System.Void",
@@ -586,9 +1190,36 @@
586
1190
  "isVirtual": true,
587
1191
  "isOverride": true,
588
1192
  "isSealed": false,
1193
+ "visibility": "Public",
589
1194
  "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerStoreGenerationConvention",
590
1195
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
591
1196
  "isExtensionMethod": false
1197
+ },
1198
+ {
1199
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerStoreGenerationConvention::Validate(Microsoft.EntityFrameworkCore.Metadata.IConventionProperty,Microsoft.EntityFrameworkCore.Metadata.StoreObjectIdentifier\u0026):System.Void",
1200
+ "clrName": "Validate",
1201
+ "metadataToken": 100664247,
1202
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Metadata.IConventionProperty,Microsoft.EntityFrameworkCore.Metadata.StoreObjectIdentifier\u0026):System.Void",
1203
+ "normalizedSignature": "Validate|(Microsoft.EntityFrameworkCore.Metadata.IConventionProperty,Microsoft.EntityFrameworkCore.Metadata.StoreObjectIdentifier\u0026):System.Void|static=false",
1204
+ "emitScope": "ClassSurface",
1205
+ "provenance": "Original",
1206
+ "arity": 0,
1207
+ "parameterCount": 2,
1208
+ "isStatic": false,
1209
+ "isAbstract": false,
1210
+ "isVirtual": true,
1211
+ "isOverride": true,
1212
+ "isSealed": false,
1213
+ "visibility": "Protected",
1214
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerStoreGenerationConvention",
1215
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
1216
+ "isExtensionMethod": false,
1217
+ "parameterModifiers": [
1218
+ {
1219
+ "index": 1,
1220
+ "modifier": "in"
1221
+ }
1222
+ ]
592
1223
  }
593
1224
  ],
594
1225
  "properties": [],
@@ -602,6 +1233,7 @@
602
1233
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.ProviderConventionSetBuilderDependencies,Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.RelationalConventionSetBuilderDependencies):void|static=false",
603
1234
  "isStatic": false,
604
1235
  "parameterCount": 2,
1236
+ "visibility": "Public",
605
1237
  "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerStoreGenerationConvention",
606
1238
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
607
1239
  }
@@ -618,6 +1250,28 @@
618
1250
  "isSealed": false,
619
1251
  "isStatic": false,
620
1252
  "arity": 0,
1253
+ "baseType": {
1254
+ "stableId": "System.Private.CoreLib:System.Object",
1255
+ "clrName": "System.Object"
1256
+ },
1257
+ "interfaces": [
1258
+ {
1259
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Metadata.Conventions.IEntityTypeAnnotationChangedConvention",
1260
+ "clrName": "Microsoft.EntityFrameworkCore.Metadata.Conventions.IEntityTypeAnnotationChangedConvention"
1261
+ },
1262
+ {
1263
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Metadata.Conventions.IConvention",
1264
+ "clrName": "Microsoft.EntityFrameworkCore.Metadata.Conventions.IConvention"
1265
+ },
1266
+ {
1267
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Metadata.Conventions.ISkipNavigationForeignKeyChangedConvention",
1268
+ "clrName": "Microsoft.EntityFrameworkCore.Metadata.Conventions.ISkipNavigationForeignKeyChangedConvention"
1269
+ },
1270
+ {
1271
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Metadata.Conventions.IModelFinalizingConvention",
1272
+ "clrName": "Microsoft.EntityFrameworkCore.Metadata.Conventions.IModelFinalizingConvention"
1273
+ }
1274
+ ],
621
1275
  "methods": [
622
1276
  {
623
1277
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerTemporalConvention::ProcessEntityTypeAnnotationChanged(Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionEntityTypeBuilder,System.String,Microsoft.EntityFrameworkCore.Metadata.IConventionAnnotation,Microsoft.EntityFrameworkCore.Metadata.IConventionAnnotation,Microsoft.EntityFrameworkCore.Metadata.Conventions.IConventionContext_1[[Microsoft.EntityFrameworkCore.Metadata.IConventionAnnotation,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):System.Void",
@@ -634,6 +1288,7 @@
634
1288
  "isVirtual": true,
635
1289
  "isOverride": false,
636
1290
  "isSealed": false,
1291
+ "visibility": "Public",
637
1292
  "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerTemporalConvention",
638
1293
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
639
1294
  "isExtensionMethod": false
@@ -653,6 +1308,7 @@
653
1308
  "isVirtual": true,
654
1309
  "isOverride": false,
655
1310
  "isSealed": false,
1311
+ "visibility": "Public",
656
1312
  "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerTemporalConvention",
657
1313
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
658
1314
  "isExtensionMethod": false
@@ -672,12 +1328,52 @@
672
1328
  "isVirtual": true,
673
1329
  "isOverride": false,
674
1330
  "isSealed": false,
1331
+ "visibility": "Public",
675
1332
  "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerTemporalConvention",
676
1333
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
677
1334
  "isExtensionMethod": false
678
1335
  }
679
1336
  ],
680
- "properties": [],
1337
+ "properties": [
1338
+ {
1339
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerTemporalConvention::Dependencies:Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.ProviderConventionSetBuilderDependencies",
1340
+ "clrName": "Dependencies",
1341
+ "metadataToken": 385876085,
1342
+ "canonicalSignature": ":Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.ProviderConventionSetBuilderDependencies",
1343
+ "normalizedSignature": "Dependencies|:Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.ProviderConventionSetBuilderDependencies|static=false|accessor=get",
1344
+ "emitScope": "ClassSurface",
1345
+ "provenance": "Original",
1346
+ "isIndexer": false,
1347
+ "hasGetter": true,
1348
+ "hasSetter": false,
1349
+ "isStatic": false,
1350
+ "isAbstract": false,
1351
+ "isVirtual": true,
1352
+ "isOverride": false,
1353
+ "visibility": "Protected",
1354
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerTemporalConvention",
1355
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
1356
+ },
1357
+ {
1358
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerTemporalConvention::RelationalDependencies:Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.RelationalConventionSetBuilderDependencies",
1359
+ "clrName": "RelationalDependencies",
1360
+ "metadataToken": 385876086,
1361
+ "canonicalSignature": ":Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.RelationalConventionSetBuilderDependencies",
1362
+ "normalizedSignature": "RelationalDependencies|:Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.RelationalConventionSetBuilderDependencies|static=false|accessor=get",
1363
+ "emitScope": "ClassSurface",
1364
+ "provenance": "Original",
1365
+ "isIndexer": false,
1366
+ "hasGetter": true,
1367
+ "hasSetter": false,
1368
+ "isStatic": false,
1369
+ "isAbstract": false,
1370
+ "isVirtual": true,
1371
+ "isOverride": false,
1372
+ "visibility": "Protected",
1373
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerTemporalConvention",
1374
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
1375
+ }
1376
+ ],
681
1377
  "fields": [],
682
1378
  "events": [],
683
1379
  "constructors": [
@@ -688,6 +1384,7 @@
688
1384
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.ProviderConventionSetBuilderDependencies,Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.RelationalConventionSetBuilderDependencies):void|static=false",
689
1385
  "isStatic": false,
690
1386
  "parameterCount": 2,
1387
+ "visibility": "Public",
691
1388
  "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerTemporalConvention",
692
1389
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
693
1390
  }
@@ -704,6 +1401,48 @@
704
1401
  "isSealed": false,
705
1402
  "isStatic": false,
706
1403
  "arity": 0,
1404
+ "baseType": {
1405
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Metadata.Conventions.RelationalValueGenerationConvention",
1406
+ "clrName": "Microsoft.EntityFrameworkCore.Metadata.Conventions.RelationalValueGenerationConvention"
1407
+ },
1408
+ "interfaces": [
1409
+ {
1410
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Metadata.Conventions.IEntityTypePrimaryKeyChangedConvention",
1411
+ "clrName": "Microsoft.EntityFrameworkCore.Metadata.Conventions.IEntityTypePrimaryKeyChangedConvention"
1412
+ },
1413
+ {
1414
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Metadata.Conventions.IConvention",
1415
+ "clrName": "Microsoft.EntityFrameworkCore.Metadata.Conventions.IConvention"
1416
+ },
1417
+ {
1418
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Metadata.Conventions.IForeignKeyAddedConvention",
1419
+ "clrName": "Microsoft.EntityFrameworkCore.Metadata.Conventions.IForeignKeyAddedConvention"
1420
+ },
1421
+ {
1422
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Metadata.Conventions.IForeignKeyRemovedConvention",
1423
+ "clrName": "Microsoft.EntityFrameworkCore.Metadata.Conventions.IForeignKeyRemovedConvention"
1424
+ },
1425
+ {
1426
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Metadata.Conventions.IForeignKeyPropertiesChangedConvention",
1427
+ "clrName": "Microsoft.EntityFrameworkCore.Metadata.Conventions.IForeignKeyPropertiesChangedConvention"
1428
+ },
1429
+ {
1430
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Metadata.Conventions.IEntityTypeBaseTypeChangedConvention",
1431
+ "clrName": "Microsoft.EntityFrameworkCore.Metadata.Conventions.IEntityTypeBaseTypeChangedConvention"
1432
+ },
1433
+ {
1434
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Metadata.Conventions.IForeignKeyOwnershipChangedConvention",
1435
+ "clrName": "Microsoft.EntityFrameworkCore.Metadata.Conventions.IForeignKeyOwnershipChangedConvention"
1436
+ },
1437
+ {
1438
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Metadata.Conventions.IPropertyAnnotationChangedConvention",
1439
+ "clrName": "Microsoft.EntityFrameworkCore.Metadata.Conventions.IPropertyAnnotationChangedConvention"
1440
+ },
1441
+ {
1442
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Metadata.Conventions.IEntityTypeAnnotationChangedConvention",
1443
+ "clrName": "Microsoft.EntityFrameworkCore.Metadata.Conventions.IEntityTypeAnnotationChangedConvention"
1444
+ }
1445
+ ],
707
1446
  "methods": [
708
1447
  {
709
1448
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerValueGenerationConvention::ProcessPropertyAnnotationChanged(Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionPropertyBuilder,System.String,Microsoft.EntityFrameworkCore.Metadata.IConventionAnnotation,Microsoft.EntityFrameworkCore.Metadata.IConventionAnnotation,Microsoft.EntityFrameworkCore.Metadata.Conventions.IConventionContext_1[[Microsoft.EntityFrameworkCore.Metadata.IConventionAnnotation,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):System.Void",
@@ -720,6 +1459,7 @@
720
1459
  "isVirtual": true,
721
1460
  "isOverride": true,
722
1461
  "isSealed": false,
1462
+ "visibility": "Public",
723
1463
  "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerValueGenerationConvention",
724
1464
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
725
1465
  "isExtensionMethod": false
@@ -739,6 +1479,47 @@
739
1479
  "isVirtual": true,
740
1480
  "isOverride": true,
741
1481
  "isSealed": false,
1482
+ "visibility": "Public",
1483
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerValueGenerationConvention",
1484
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
1485
+ "isExtensionMethod": false
1486
+ },
1487
+ {
1488
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerValueGenerationConvention::GetValueGenerated(Microsoft.EntityFrameworkCore.Metadata.IConventionProperty):System.Nullable_1[[Microsoft.EntityFrameworkCore.Metadata.ValueGenerated,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]",
1489
+ "clrName": "GetValueGenerated",
1490
+ "metadataToken": 100664257,
1491
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Metadata.IConventionProperty):System.Nullable_1[[Microsoft.EntityFrameworkCore.Metadata.ValueGenerated,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]",
1492
+ "normalizedSignature": "GetValueGenerated|(Microsoft.EntityFrameworkCore.Metadata.IConventionProperty):System.Nullable_1[[Microsoft.EntityFrameworkCore.Metadata.ValueGenerated,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]|static=false",
1493
+ "emitScope": "ClassSurface",
1494
+ "provenance": "Original",
1495
+ "arity": 0,
1496
+ "parameterCount": 1,
1497
+ "isStatic": false,
1498
+ "isAbstract": false,
1499
+ "isVirtual": true,
1500
+ "isOverride": true,
1501
+ "isSealed": false,
1502
+ "visibility": "Protected",
1503
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerValueGenerationConvention",
1504
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
1505
+ "isExtensionMethod": false
1506
+ },
1507
+ {
1508
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerValueGenerationConvention::MappingStrategyAllowsValueGeneration(Microsoft.EntityFrameworkCore.Metadata.IConventionProperty,System.String):System.Boolean",
1509
+ "clrName": "MappingStrategyAllowsValueGeneration",
1510
+ "metadataToken": 100664258,
1511
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Metadata.IConventionProperty,System.String):System.Boolean",
1512
+ "normalizedSignature": "MappingStrategyAllowsValueGeneration|(Microsoft.EntityFrameworkCore.Metadata.IConventionProperty,System.String):System.Boolean|static=false",
1513
+ "emitScope": "ClassSurface",
1514
+ "provenance": "Original",
1515
+ "arity": 0,
1516
+ "parameterCount": 2,
1517
+ "isStatic": false,
1518
+ "isAbstract": false,
1519
+ "isVirtual": true,
1520
+ "isOverride": true,
1521
+ "isSealed": false,
1522
+ "visibility": "Protected",
742
1523
  "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerValueGenerationConvention",
743
1524
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
744
1525
  "isExtensionMethod": false
@@ -758,6 +1539,7 @@
758
1539
  "isVirtual": false,
759
1540
  "isOverride": false,
760
1541
  "isSealed": false,
1542
+ "visibility": "Public",
761
1543
  "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerValueGenerationConvention",
762
1544
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
763
1545
  "isExtensionMethod": false,
@@ -780,6 +1562,7 @@
780
1562
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.ProviderConventionSetBuilderDependencies,Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.RelationalConventionSetBuilderDependencies):void|static=false",
781
1563
  "isStatic": false,
782
1564
  "parameterCount": 2,
1565
+ "visibility": "Public",
783
1566
  "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerValueGenerationConvention",
784
1567
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
785
1568
  }
@@ -796,6 +1579,24 @@
796
1579
  "isSealed": false,
797
1580
  "isStatic": false,
798
1581
  "arity": 0,
1582
+ "baseType": {
1583
+ "stableId": "System.Private.CoreLib:System.Object",
1584
+ "clrName": "System.Object"
1585
+ },
1586
+ "interfaces": [
1587
+ {
1588
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Metadata.Conventions.IModelInitializedConvention",
1589
+ "clrName": "Microsoft.EntityFrameworkCore.Metadata.Conventions.IModelInitializedConvention"
1590
+ },
1591
+ {
1592
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Metadata.Conventions.IConvention",
1593
+ "clrName": "Microsoft.EntityFrameworkCore.Metadata.Conventions.IConvention"
1594
+ },
1595
+ {
1596
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Metadata.Conventions.IModelFinalizingConvention",
1597
+ "clrName": "Microsoft.EntityFrameworkCore.Metadata.Conventions.IModelFinalizingConvention"
1598
+ }
1599
+ ],
799
1600
  "methods": [
800
1601
  {
801
1602
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerValueGenerationStrategyConvention::ProcessModelInitialized(Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionModelBuilder,Microsoft.EntityFrameworkCore.Metadata.Conventions.IConventionContext_1[[Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionModelBuilder,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):System.Void",
@@ -812,6 +1613,7 @@
812
1613
  "isVirtual": true,
813
1614
  "isOverride": false,
814
1615
  "isSealed": false,
1616
+ "visibility": "Public",
815
1617
  "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerValueGenerationStrategyConvention",
816
1618
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
817
1619
  "isExtensionMethod": false
@@ -831,12 +1633,52 @@
831
1633
  "isVirtual": true,
832
1634
  "isOverride": false,
833
1635
  "isSealed": false,
1636
+ "visibility": "Public",
834
1637
  "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerValueGenerationStrategyConvention",
835
1638
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
836
1639
  "isExtensionMethod": false
837
1640
  }
838
1641
  ],
839
- "properties": [],
1642
+ "properties": [
1643
+ {
1644
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerValueGenerationStrategyConvention::Dependencies:Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.ProviderConventionSetBuilderDependencies",
1645
+ "clrName": "Dependencies",
1646
+ "metadataToken": 385876087,
1647
+ "canonicalSignature": ":Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.ProviderConventionSetBuilderDependencies",
1648
+ "normalizedSignature": "Dependencies|:Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.ProviderConventionSetBuilderDependencies|static=false|accessor=get",
1649
+ "emitScope": "ClassSurface",
1650
+ "provenance": "Original",
1651
+ "isIndexer": false,
1652
+ "hasGetter": true,
1653
+ "hasSetter": false,
1654
+ "isStatic": false,
1655
+ "isAbstract": false,
1656
+ "isVirtual": true,
1657
+ "isOverride": false,
1658
+ "visibility": "Protected",
1659
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerValueGenerationStrategyConvention",
1660
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
1661
+ },
1662
+ {
1663
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerValueGenerationStrategyConvention::RelationalDependencies:Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.RelationalConventionSetBuilderDependencies",
1664
+ "clrName": "RelationalDependencies",
1665
+ "metadataToken": 385876088,
1666
+ "canonicalSignature": ":Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.RelationalConventionSetBuilderDependencies",
1667
+ "normalizedSignature": "RelationalDependencies|:Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.RelationalConventionSetBuilderDependencies|static=false|accessor=get",
1668
+ "emitScope": "ClassSurface",
1669
+ "provenance": "Original",
1670
+ "isIndexer": false,
1671
+ "hasGetter": true,
1672
+ "hasSetter": false,
1673
+ "isStatic": false,
1674
+ "isAbstract": false,
1675
+ "isVirtual": true,
1676
+ "isOverride": false,
1677
+ "visibility": "Protected",
1678
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerValueGenerationStrategyConvention",
1679
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
1680
+ }
1681
+ ],
840
1682
  "fields": [],
841
1683
  "events": [],
842
1684
  "constructors": [
@@ -847,6 +1689,7 @@
847
1689
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.ProviderConventionSetBuilderDependencies,Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.RelationalConventionSetBuilderDependencies):void|static=false",
848
1690
  "isStatic": false,
849
1691
  "parameterCount": 2,
1692
+ "visibility": "Public",
850
1693
  "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.Conventions.SqlServerValueGenerationStrategyConvention",
851
1694
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
852
1695
  }