@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
@@ -16,7 +16,7 @@ import type { SqlServerValueGenerationStrategy } from "../../Microsoft.EntityFra
16
16
  import type { IEnumerable, IReadOnlyList } from "@tsonic/dotnet/System.Collections.Generic.js";
17
17
  import type { DbConnection } from "@tsonic/dotnet/System.Data.Common.js";
18
18
  import * as System_Internal from "@tsonic/dotnet/System.js";
19
- import type { Action, Boolean as ClrBoolean, Byte, DateOnly, DateTime, DateTimeOffset, Decimal, Double, Enum, Func, Guid, IComparable, IConvertible, IFormattable, Int16, Int32, Int64, ISpanFormattable, Nullable, Object as ClrObject, Single, String as ClrString, TimeOnly, TimeSpan, ValueType, Void } from "@tsonic/dotnet/System.js";
19
+ import type { Action, Boolean as ClrBoolean, Byte, DateOnly, DateTime, DateTimeOffset, Decimal, Double, Enum, Exception, Func, Guid, IComparable, IConvertible, IFormattable, Int16, Int32, Int64, ISpanFormattable, Nullable, Object as ClrObject, Single, String as ClrString, TimeOnly, TimeSpan, ValueType, Void } from "@tsonic/dotnet/System.js";
20
20
  import type { Expression } from "@tsonic/dotnet/System.Linq.Expressions.js";
21
21
  import type { IQueryable } from "@tsonic/dotnet/System.Linq.js";
22
22
  import type { DatabaseFacade } from "@tsonic/efcore/Microsoft.EntityFrameworkCore.Infrastructure.js";
@@ -33,7 +33,13 @@ export enum DataCompressionType {
33
33
  }
34
34
 
35
35
 
36
- export interface SqlServerRetryingExecutionStrategy$instance extends ExecutionStrategy {
36
+ export abstract class SqlServerRetryingExecutionStrategy$protected {
37
+ protected GetNextDelay(lastException: Exception): Nullable<TimeSpan>;
38
+ protected ShouldRetryOn(exception: Exception): boolean;
39
+ }
40
+
41
+
42
+ export interface SqlServerRetryingExecutionStrategy$instance extends SqlServerRetryingExecutionStrategy$protected, ExecutionStrategy {
37
43
  readonly AdditionalErrorNumbers: IEnumerable<System_Internal.Int32> | undefined;
38
44
  }
39
45
 
@@ -46,6 +52,7 @@ export const SqlServerRetryingExecutionStrategy: {
46
52
  new(dependencies: ExecutionStrategyDependencies, errorNumbersToAdd: IEnumerable<System_Internal.Int32>): SqlServerRetryingExecutionStrategy;
47
53
  new(context: DbContext, maxRetryCount: int, maxRetryDelay: TimeSpan, errorNumbersToAdd: IEnumerable<System_Internal.Int32>): SqlServerRetryingExecutionStrategy;
48
54
  new(dependencies: ExecutionStrategyDependencies, maxRetryCount: int, maxRetryDelay: TimeSpan, errorNumbersToAdd: IEnumerable<System_Internal.Int32>): SqlServerRetryingExecutionStrategy;
55
+ readonly DefaultMinDelayThrottling: TimeSpan;
49
56
  };
50
57
 
51
58
 
@@ -18,6 +18,10 @@
18
18
  "isSealed": false,
19
19
  "isStatic": false,
20
20
  "arity": 0,
21
+ "baseType": {
22
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Diagnostics.EventData",
23
+ "clrName": "Microsoft.EntityFrameworkCore.Diagnostics.EventData"
24
+ },
21
25
  "methods": [],
22
26
  "properties": [
23
27
  {
@@ -35,6 +39,7 @@
35
39
  "isAbstract": false,
36
40
  "isVirtual": true,
37
41
  "isOverride": false,
42
+ "visibility": "Public",
38
43
  "declaringClrType": "Microsoft.EntityFrameworkCore.Diagnostics.ConflictingValueGenerationStrategiesEventData",
39
44
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
40
45
  },
@@ -53,6 +58,7 @@
53
58
  "isAbstract": false,
54
59
  "isVirtual": true,
55
60
  "isOverride": false,
61
+ "visibility": "Public",
56
62
  "declaringClrType": "Microsoft.EntityFrameworkCore.Diagnostics.ConflictingValueGenerationStrategiesEventData",
57
63
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
58
64
  },
@@ -71,6 +77,7 @@
71
77
  "isAbstract": false,
72
78
  "isVirtual": true,
73
79
  "isOverride": false,
80
+ "visibility": "Public",
74
81
  "declaringClrType": "Microsoft.EntityFrameworkCore.Diagnostics.ConflictingValueGenerationStrategiesEventData",
75
82
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
76
83
  }
@@ -85,6 +92,7 @@
85
92
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Diagnostics.EventDefinitionBase,System.Func_3[[Microsoft.EntityFrameworkCore.Diagnostics.EventDefinitionBase,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60],[Microsoft.EntityFrameworkCore.Diagnostics.EventData,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60],[System.String,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e]],Microsoft.EntityFrameworkCore.Metadata.SqlServerValueGenerationStrategy,System.String,Microsoft.EntityFrameworkCore.Metadata.IReadOnlyProperty):void|static=false",
86
93
  "isStatic": false,
87
94
  "parameterCount": 5,
95
+ "visibility": "Public",
88
96
  "declaringClrType": "Microsoft.EntityFrameworkCore.Diagnostics.ConflictingValueGenerationStrategiesEventData",
89
97
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
90
98
  }
@@ -101,6 +109,10 @@
101
109
  "isSealed": true,
102
110
  "isStatic": true,
103
111
  "arity": 0,
112
+ "baseType": {
113
+ "stableId": "System.Private.CoreLib:System.Object",
114
+ "clrName": "System.Object"
115
+ },
104
116
  "methods": [],
105
117
  "properties": [],
106
118
  "fields": [
@@ -112,6 +124,7 @@
112
124
  "isStatic": true,
113
125
  "isReadOnly": true,
114
126
  "isLiteral": false,
127
+ "visibility": "Public",
115
128
  "declaringClrType": "Microsoft.EntityFrameworkCore.Diagnostics.SqlServerEventId",
116
129
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
117
130
  },
@@ -123,6 +136,7 @@
123
136
  "isStatic": true,
124
137
  "isReadOnly": true,
125
138
  "isLiteral": false,
139
+ "visibility": "Public",
126
140
  "declaringClrType": "Microsoft.EntityFrameworkCore.Diagnostics.SqlServerEventId",
127
141
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
128
142
  },
@@ -134,6 +148,7 @@
134
148
  "isStatic": true,
135
149
  "isReadOnly": true,
136
150
  "isLiteral": false,
151
+ "visibility": "Public",
137
152
  "declaringClrType": "Microsoft.EntityFrameworkCore.Diagnostics.SqlServerEventId",
138
153
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
139
154
  },
@@ -145,6 +160,7 @@
145
160
  "isStatic": true,
146
161
  "isReadOnly": true,
147
162
  "isLiteral": false,
163
+ "visibility": "Public",
148
164
  "declaringClrType": "Microsoft.EntityFrameworkCore.Diagnostics.SqlServerEventId",
149
165
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
150
166
  },
@@ -156,6 +172,7 @@
156
172
  "isStatic": true,
157
173
  "isReadOnly": true,
158
174
  "isLiteral": false,
175
+ "visibility": "Public",
159
176
  "declaringClrType": "Microsoft.EntityFrameworkCore.Diagnostics.SqlServerEventId",
160
177
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
161
178
  },
@@ -167,6 +184,7 @@
167
184
  "isStatic": true,
168
185
  "isReadOnly": true,
169
186
  "isLiteral": false,
187
+ "visibility": "Public",
170
188
  "declaringClrType": "Microsoft.EntityFrameworkCore.Diagnostics.SqlServerEventId",
171
189
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
172
190
  },
@@ -178,6 +196,7 @@
178
196
  "isStatic": true,
179
197
  "isReadOnly": true,
180
198
  "isLiteral": false,
199
+ "visibility": "Public",
181
200
  "declaringClrType": "Microsoft.EntityFrameworkCore.Diagnostics.SqlServerEventId",
182
201
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
183
202
  },
@@ -189,6 +208,7 @@
189
208
  "isStatic": true,
190
209
  "isReadOnly": true,
191
210
  "isLiteral": false,
211
+ "visibility": "Public",
192
212
  "declaringClrType": "Microsoft.EntityFrameworkCore.Diagnostics.SqlServerEventId",
193
213
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
194
214
  },
@@ -200,6 +220,7 @@
200
220
  "isStatic": true,
201
221
  "isReadOnly": true,
202
222
  "isLiteral": false,
223
+ "visibility": "Public",
203
224
  "declaringClrType": "Microsoft.EntityFrameworkCore.Diagnostics.SqlServerEventId",
204
225
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
205
226
  },
@@ -211,6 +232,7 @@
211
232
  "isStatic": true,
212
233
  "isReadOnly": true,
213
234
  "isLiteral": false,
235
+ "visibility": "Public",
214
236
  "declaringClrType": "Microsoft.EntityFrameworkCore.Diagnostics.SqlServerEventId",
215
237
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
216
238
  },
@@ -222,6 +244,7 @@
222
244
  "isStatic": true,
223
245
  "isReadOnly": true,
224
246
  "isLiteral": false,
247
+ "visibility": "Public",
225
248
  "declaringClrType": "Microsoft.EntityFrameworkCore.Diagnostics.SqlServerEventId",
226
249
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
227
250
  },
@@ -233,6 +256,7 @@
233
256
  "isStatic": true,
234
257
  "isReadOnly": true,
235
258
  "isLiteral": false,
259
+ "visibility": "Public",
236
260
  "declaringClrType": "Microsoft.EntityFrameworkCore.Diagnostics.SqlServerEventId",
237
261
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
238
262
  },
@@ -244,6 +268,7 @@
244
268
  "isStatic": true,
245
269
  "isReadOnly": true,
246
270
  "isLiteral": false,
271
+ "visibility": "Public",
247
272
  "declaringClrType": "Microsoft.EntityFrameworkCore.Diagnostics.SqlServerEventId",
248
273
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
249
274
  },
@@ -255,6 +280,7 @@
255
280
  "isStatic": true,
256
281
  "isReadOnly": true,
257
282
  "isLiteral": false,
283
+ "visibility": "Public",
258
284
  "declaringClrType": "Microsoft.EntityFrameworkCore.Diagnostics.SqlServerEventId",
259
285
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
260
286
  },
@@ -266,6 +292,7 @@
266
292
  "isStatic": true,
267
293
  "isReadOnly": true,
268
294
  "isLiteral": false,
295
+ "visibility": "Public",
269
296
  "declaringClrType": "Microsoft.EntityFrameworkCore.Diagnostics.SqlServerEventId",
270
297
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
271
298
  },
@@ -277,6 +304,7 @@
277
304
  "isStatic": true,
278
305
  "isReadOnly": true,
279
306
  "isLiteral": false,
307
+ "visibility": "Public",
280
308
  "declaringClrType": "Microsoft.EntityFrameworkCore.Diagnostics.SqlServerEventId",
281
309
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
282
310
  },
@@ -288,6 +316,7 @@
288
316
  "isStatic": true,
289
317
  "isReadOnly": true,
290
318
  "isLiteral": false,
319
+ "visibility": "Public",
291
320
  "declaringClrType": "Microsoft.EntityFrameworkCore.Diagnostics.SqlServerEventId",
292
321
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
293
322
  },
@@ -299,6 +328,7 @@
299
328
  "isStatic": true,
300
329
  "isReadOnly": true,
301
330
  "isLiteral": false,
331
+ "visibility": "Public",
302
332
  "declaringClrType": "Microsoft.EntityFrameworkCore.Diagnostics.SqlServerEventId",
303
333
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
304
334
  },
@@ -310,6 +340,7 @@
310
340
  "isStatic": true,
311
341
  "isReadOnly": true,
312
342
  "isLiteral": false,
343
+ "visibility": "Public",
313
344
  "declaringClrType": "Microsoft.EntityFrameworkCore.Diagnostics.SqlServerEventId",
314
345
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
315
346
  },
@@ -321,6 +352,7 @@
321
352
  "isStatic": true,
322
353
  "isReadOnly": true,
323
354
  "isLiteral": false,
355
+ "visibility": "Public",
324
356
  "declaringClrType": "Microsoft.EntityFrameworkCore.Diagnostics.SqlServerEventId",
325
357
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
326
358
  },
@@ -332,6 +364,7 @@
332
364
  "isStatic": true,
333
365
  "isReadOnly": true,
334
366
  "isLiteral": false,
367
+ "visibility": "Public",
335
368
  "declaringClrType": "Microsoft.EntityFrameworkCore.Diagnostics.SqlServerEventId",
336
369
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
337
370
  },
@@ -343,6 +376,7 @@
343
376
  "isStatic": true,
344
377
  "isReadOnly": true,
345
378
  "isLiteral": false,
379
+ "visibility": "Public",
346
380
  "declaringClrType": "Microsoft.EntityFrameworkCore.Diagnostics.SqlServerEventId",
347
381
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
348
382
  },
@@ -354,6 +388,7 @@
354
388
  "isStatic": true,
355
389
  "isReadOnly": true,
356
390
  "isLiteral": false,
391
+ "visibility": "Public",
357
392
  "declaringClrType": "Microsoft.EntityFrameworkCore.Diagnostics.SqlServerEventId",
358
393
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
359
394
  }
@@ -18,6 +18,19 @@
18
18
  "isSealed": false,
19
19
  "isStatic": false,
20
20
  "arity": 0,
21
+ "baseType": {
22
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.Infrastructure.SqlEngineDbContextOptionsBuilderBase\u00601",
23
+ "clrName": "Microsoft.EntityFrameworkCore.Infrastructure.SqlEngineDbContextOptionsBuilderBase\u00601",
24
+ "typeArguments": [
25
+ "AzureSqlDbContextOptionsBuilder"
26
+ ]
27
+ },
28
+ "interfaces": [
29
+ {
30
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Infrastructure.IRelationalDbContextOptionsBuilderInfrastructure",
31
+ "clrName": "Microsoft.EntityFrameworkCore.Infrastructure.IRelationalDbContextOptionsBuilderInfrastructure"
32
+ }
33
+ ],
21
34
  "methods": [
22
35
  {
23
36
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.Infrastructure.AzureSqlDbContextOptionsBuilder::EnableRetryOnFailure():Microsoft.EntityFrameworkCore.Infrastructure.AzureSqlDbContextOptionsBuilder",
@@ -34,6 +47,7 @@
34
47
  "isVirtual": true,
35
48
  "isOverride": false,
36
49
  "isSealed": false,
50
+ "visibility": "Public",
37
51
  "declaringClrType": "Microsoft.EntityFrameworkCore.Infrastructure.AzureSqlDbContextOptionsBuilder",
38
52
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
39
53
  "isExtensionMethod": false
@@ -53,6 +67,7 @@
53
67
  "isVirtual": true,
54
68
  "isOverride": false,
55
69
  "isSealed": false,
70
+ "visibility": "Public",
56
71
  "declaringClrType": "Microsoft.EntityFrameworkCore.Infrastructure.AzureSqlDbContextOptionsBuilder",
57
72
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
58
73
  "isExtensionMethod": false
@@ -72,6 +87,7 @@
72
87
  "isVirtual": true,
73
88
  "isOverride": false,
74
89
  "isSealed": false,
90
+ "visibility": "Public",
75
91
  "declaringClrType": "Microsoft.EntityFrameworkCore.Infrastructure.AzureSqlDbContextOptionsBuilder",
76
92
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
77
93
  "isExtensionMethod": false
@@ -91,6 +107,7 @@
91
107
  "isVirtual": true,
92
108
  "isOverride": false,
93
109
  "isSealed": false,
110
+ "visibility": "Public",
94
111
  "declaringClrType": "Microsoft.EntityFrameworkCore.Infrastructure.AzureSqlDbContextOptionsBuilder",
95
112
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
96
113
  "isExtensionMethod": false
@@ -110,6 +127,7 @@
110
127
  "isVirtual": true,
111
128
  "isOverride": false,
112
129
  "isSealed": false,
130
+ "visibility": "Public",
113
131
  "declaringClrType": "Microsoft.EntityFrameworkCore.Infrastructure.AzureSqlDbContextOptionsBuilder",
114
132
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
115
133
  "isExtensionMethod": false
@@ -126,6 +144,7 @@
126
144
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.DbContextOptionsBuilder):void|static=false",
127
145
  "isStatic": false,
128
146
  "parameterCount": 1,
147
+ "visibility": "Public",
129
148
  "declaringClrType": "Microsoft.EntityFrameworkCore.Infrastructure.AzureSqlDbContextOptionsBuilder",
130
149
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
131
150
  }
@@ -142,6 +161,19 @@
142
161
  "isSealed": false,
143
162
  "isStatic": false,
144
163
  "arity": 0,
164
+ "baseType": {
165
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.Infrastructure.SqlEngineDbContextOptionsBuilderBase\u00601",
166
+ "clrName": "Microsoft.EntityFrameworkCore.Infrastructure.SqlEngineDbContextOptionsBuilderBase\u00601",
167
+ "typeArguments": [
168
+ "AzureSynapseDbContextOptionsBuilder"
169
+ ]
170
+ },
171
+ "interfaces": [
172
+ {
173
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Infrastructure.IRelationalDbContextOptionsBuilderInfrastructure",
174
+ "clrName": "Microsoft.EntityFrameworkCore.Infrastructure.IRelationalDbContextOptionsBuilderInfrastructure"
175
+ }
176
+ ],
145
177
  "methods": [
146
178
  {
147
179
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.Infrastructure.AzureSynapseDbContextOptionsBuilder::EnableRetryOnFailure():Microsoft.EntityFrameworkCore.Infrastructure.AzureSynapseDbContextOptionsBuilder",
@@ -158,6 +190,7 @@
158
190
  "isVirtual": true,
159
191
  "isOverride": false,
160
192
  "isSealed": false,
193
+ "visibility": "Public",
161
194
  "declaringClrType": "Microsoft.EntityFrameworkCore.Infrastructure.AzureSynapseDbContextOptionsBuilder",
162
195
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
163
196
  "isExtensionMethod": false
@@ -177,6 +210,7 @@
177
210
  "isVirtual": true,
178
211
  "isOverride": false,
179
212
  "isSealed": false,
213
+ "visibility": "Public",
180
214
  "declaringClrType": "Microsoft.EntityFrameworkCore.Infrastructure.AzureSynapseDbContextOptionsBuilder",
181
215
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
182
216
  "isExtensionMethod": false
@@ -196,6 +230,7 @@
196
230
  "isVirtual": true,
197
231
  "isOverride": false,
198
232
  "isSealed": false,
233
+ "visibility": "Public",
199
234
  "declaringClrType": "Microsoft.EntityFrameworkCore.Infrastructure.AzureSynapseDbContextOptionsBuilder",
200
235
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
201
236
  "isExtensionMethod": false
@@ -215,6 +250,7 @@
215
250
  "isVirtual": true,
216
251
  "isOverride": false,
217
252
  "isSealed": false,
253
+ "visibility": "Public",
218
254
  "declaringClrType": "Microsoft.EntityFrameworkCore.Infrastructure.AzureSynapseDbContextOptionsBuilder",
219
255
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
220
256
  "isExtensionMethod": false
@@ -234,6 +270,7 @@
234
270
  "isVirtual": true,
235
271
  "isOverride": false,
236
272
  "isSealed": false,
273
+ "visibility": "Public",
237
274
  "declaringClrType": "Microsoft.EntityFrameworkCore.Infrastructure.AzureSynapseDbContextOptionsBuilder",
238
275
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
239
276
  "isExtensionMethod": false
@@ -250,6 +287,7 @@
250
287
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.DbContextOptionsBuilder):void|static=false",
251
288
  "isStatic": false,
252
289
  "parameterCount": 1,
290
+ "visibility": "Public",
253
291
  "declaringClrType": "Microsoft.EntityFrameworkCore.Infrastructure.AzureSynapseDbContextOptionsBuilder",
254
292
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
255
293
  }
@@ -266,6 +304,19 @@
266
304
  "isSealed": false,
267
305
  "isStatic": false,
268
306
  "arity": 0,
307
+ "baseType": {
308
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.Infrastructure.SqlEngineDbContextOptionsBuilderBase\u00601",
309
+ "clrName": "Microsoft.EntityFrameworkCore.Infrastructure.SqlEngineDbContextOptionsBuilderBase\u00601",
310
+ "typeArguments": [
311
+ "SqlEngineDbContextOptionsBuilder"
312
+ ]
313
+ },
314
+ "interfaces": [
315
+ {
316
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Infrastructure.IRelationalDbContextOptionsBuilderInfrastructure",
317
+ "clrName": "Microsoft.EntityFrameworkCore.Infrastructure.IRelationalDbContextOptionsBuilderInfrastructure"
318
+ }
319
+ ],
269
320
  "methods": [
270
321
  {
271
322
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.Infrastructure.SqlEngineDbContextOptionsBuilder::EnableRetryOnFailure():Microsoft.EntityFrameworkCore.Infrastructure.SqlEngineDbContextOptionsBuilder",
@@ -282,6 +333,7 @@
282
333
  "isVirtual": true,
283
334
  "isOverride": false,
284
335
  "isSealed": false,
336
+ "visibility": "Public",
285
337
  "declaringClrType": "Microsoft.EntityFrameworkCore.Infrastructure.SqlEngineDbContextOptionsBuilder",
286
338
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
287
339
  "isExtensionMethod": false
@@ -301,6 +353,7 @@
301
353
  "isVirtual": true,
302
354
  "isOverride": false,
303
355
  "isSealed": false,
356
+ "visibility": "Public",
304
357
  "declaringClrType": "Microsoft.EntityFrameworkCore.Infrastructure.SqlEngineDbContextOptionsBuilder",
305
358
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
306
359
  "isExtensionMethod": false
@@ -320,6 +373,7 @@
320
373
  "isVirtual": true,
321
374
  "isOverride": false,
322
375
  "isSealed": false,
376
+ "visibility": "Public",
323
377
  "declaringClrType": "Microsoft.EntityFrameworkCore.Infrastructure.SqlEngineDbContextOptionsBuilder",
324
378
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
325
379
  "isExtensionMethod": false
@@ -339,6 +393,7 @@
339
393
  "isVirtual": true,
340
394
  "isOverride": false,
341
395
  "isSealed": false,
396
+ "visibility": "Public",
342
397
  "declaringClrType": "Microsoft.EntityFrameworkCore.Infrastructure.SqlEngineDbContextOptionsBuilder",
343
398
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
344
399
  "isExtensionMethod": false
@@ -358,6 +413,7 @@
358
413
  "isVirtual": true,
359
414
  "isOverride": false,
360
415
  "isSealed": false,
416
+ "visibility": "Public",
361
417
  "declaringClrType": "Microsoft.EntityFrameworkCore.Infrastructure.SqlEngineDbContextOptionsBuilder",
362
418
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
363
419
  "isExtensionMethod": false
@@ -374,6 +430,7 @@
374
430
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.DbContextOptionsBuilder):void|static=false",
375
431
  "isStatic": false,
376
432
  "parameterCount": 1,
433
+ "visibility": "Public",
377
434
  "declaringClrType": "Microsoft.EntityFrameworkCore.Infrastructure.SqlEngineDbContextOptionsBuilder",
378
435
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
379
436
  }
@@ -390,11 +447,40 @@
390
447
  "isSealed": false,
391
448
  "isStatic": false,
392
449
  "arity": 1,
450
+ "baseType": {
451
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Infrastructure.RelationalDbContextOptionsBuilder\u00602",
452
+ "clrName": "Microsoft.EntityFrameworkCore.Infrastructure.RelationalDbContextOptionsBuilder\u00602",
453
+ "typeArguments": [
454
+ "TSelf",
455
+ "SqlServerOptionsExtension"
456
+ ]
457
+ },
458
+ "interfaces": [
459
+ {
460
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Infrastructure.IRelationalDbContextOptionsBuilderInfrastructure",
461
+ "clrName": "Microsoft.EntityFrameworkCore.Infrastructure.IRelationalDbContextOptionsBuilderInfrastructure"
462
+ }
463
+ ],
464
+ "typeParameters": [
465
+ "TSelf"
466
+ ],
393
467
  "methods": [],
394
468
  "properties": [],
395
469
  "fields": [],
396
470
  "events": [],
397
- "constructors": []
471
+ "constructors": [
472
+ {
473
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.Infrastructure.SqlEngineDbContextOptionsBuilderBase\u00601::.ctor(Microsoft.EntityFrameworkCore.DbContextOptionsBuilder):void",
474
+ "metadataToken": 100664323,
475
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.DbContextOptionsBuilder):void",
476
+ "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.DbContextOptionsBuilder):void|static=false",
477
+ "isStatic": false,
478
+ "parameterCount": 1,
479
+ "visibility": "Protected",
480
+ "declaringClrType": "Microsoft.EntityFrameworkCore.Infrastructure.SqlEngineDbContextOptionsBuilderBase\u00601",
481
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
482
+ }
483
+ ]
398
484
  },
399
485
  {
400
486
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.Infrastructure.SqlServerDbContextOptionsBuilder",
@@ -407,6 +493,19 @@
407
493
  "isSealed": false,
408
494
  "isStatic": false,
409
495
  "arity": 0,
496
+ "baseType": {
497
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.Infrastructure.SqlEngineDbContextOptionsBuilderBase\u00601",
498
+ "clrName": "Microsoft.EntityFrameworkCore.Infrastructure.SqlEngineDbContextOptionsBuilderBase\u00601",
499
+ "typeArguments": [
500
+ "SqlServerDbContextOptionsBuilder"
501
+ ]
502
+ },
503
+ "interfaces": [
504
+ {
505
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Infrastructure.IRelationalDbContextOptionsBuilderInfrastructure",
506
+ "clrName": "Microsoft.EntityFrameworkCore.Infrastructure.IRelationalDbContextOptionsBuilderInfrastructure"
507
+ }
508
+ ],
410
509
  "methods": [
411
510
  {
412
511
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.Infrastructure.SqlServerDbContextOptionsBuilder::EnableRetryOnFailure():Microsoft.EntityFrameworkCore.Infrastructure.SqlServerDbContextOptionsBuilder",
@@ -423,6 +522,7 @@
423
522
  "isVirtual": true,
424
523
  "isOverride": false,
425
524
  "isSealed": false,
525
+ "visibility": "Public",
426
526
  "declaringClrType": "Microsoft.EntityFrameworkCore.Infrastructure.SqlServerDbContextOptionsBuilder",
427
527
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
428
528
  "isExtensionMethod": false
@@ -442,6 +542,7 @@
442
542
  "isVirtual": true,
443
543
  "isOverride": false,
444
544
  "isSealed": false,
545
+ "visibility": "Public",
445
546
  "declaringClrType": "Microsoft.EntityFrameworkCore.Infrastructure.SqlServerDbContextOptionsBuilder",
446
547
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
447
548
  "isExtensionMethod": false
@@ -461,6 +562,7 @@
461
562
  "isVirtual": true,
462
563
  "isOverride": false,
463
564
  "isSealed": false,
565
+ "visibility": "Public",
464
566
  "declaringClrType": "Microsoft.EntityFrameworkCore.Infrastructure.SqlServerDbContextOptionsBuilder",
465
567
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
466
568
  "isExtensionMethod": false
@@ -480,6 +582,7 @@
480
582
  "isVirtual": true,
481
583
  "isOverride": false,
482
584
  "isSealed": false,
585
+ "visibility": "Public",
483
586
  "declaringClrType": "Microsoft.EntityFrameworkCore.Infrastructure.SqlServerDbContextOptionsBuilder",
484
587
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
485
588
  "isExtensionMethod": false
@@ -499,6 +602,7 @@
499
602
  "isVirtual": true,
500
603
  "isOverride": false,
501
604
  "isSealed": false,
605
+ "visibility": "Public",
502
606
  "declaringClrType": "Microsoft.EntityFrameworkCore.Infrastructure.SqlServerDbContextOptionsBuilder",
503
607
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
504
608
  "isExtensionMethod": false
@@ -518,6 +622,7 @@
518
622
  "isVirtual": true,
519
623
  "isOverride": false,
520
624
  "isSealed": false,
625
+ "visibility": "Public",
521
626
  "declaringClrType": "Microsoft.EntityFrameworkCore.Infrastructure.SqlServerDbContextOptionsBuilder",
522
627
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
523
628
  "isExtensionMethod": false
@@ -534,6 +639,7 @@
534
639
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.DbContextOptionsBuilder):void|static=false",
535
640
  "isStatic": false,
536
641
  "parameterCount": 1,
642
+ "visibility": "Public",
537
643
  "declaringClrType": "Microsoft.EntityFrameworkCore.Infrastructure.SqlServerDbContextOptionsBuilder",
538
644
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
539
645
  }
@@ -68,6 +68,7 @@ export interface SqlEngineDbContextOptionsBuilderBase_1$instance<TSelf extends S
68
68
 
69
69
 
70
70
  export const SqlEngineDbContextOptionsBuilderBase_1: {
71
+ new<TSelf extends SqlEngineDbContextOptionsBuilderBase_1<TSelf>>(optionsBuilder: DbContextOptionsBuilder): SqlEngineDbContextOptionsBuilderBase_1<TSelf>;
71
72
  };
72
73
 
73
74
 
@@ -17,6 +17,28 @@
17
17
  "isSealed": true,
18
18
  "isStatic": false,
19
19
  "arity": 0,
20
+ "baseType": {
21
+ "stableId": "System.Private.CoreLib:System.Enum",
22
+ "clrName": "System.Enum"
23
+ },
24
+ "interfaces": [
25
+ {
26
+ "stableId": "System.Private.CoreLib:System.IComparable",
27
+ "clrName": "System.IComparable"
28
+ },
29
+ {
30
+ "stableId": "System.Private.CoreLib:System.ISpanFormattable",
31
+ "clrName": "System.ISpanFormattable"
32
+ },
33
+ {
34
+ "stableId": "System.Private.CoreLib:System.IFormattable",
35
+ "clrName": "System.IFormattable"
36
+ },
37
+ {
38
+ "stableId": "System.Private.CoreLib:System.IConvertible",
39
+ "clrName": "System.IConvertible"
40
+ }
41
+ ],
20
42
  "methods": [],
21
43
  "properties": [],
22
44
  "fields": [
@@ -28,6 +50,7 @@
28
50
  "isStatic": false,
29
51
  "isReadOnly": false,
30
52
  "isLiteral": false,
53
+ "visibility": "Public",
31
54
  "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.SqlServerValueGenerationStrategy",
32
55
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
33
56
  },
@@ -39,6 +62,7 @@
39
62
  "isStatic": true,
40
63
  "isReadOnly": false,
41
64
  "isLiteral": true,
65
+ "visibility": "Public",
42
66
  "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.SqlServerValueGenerationStrategy",
43
67
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
44
68
  },
@@ -50,6 +74,7 @@
50
74
  "isStatic": true,
51
75
  "isReadOnly": false,
52
76
  "isLiteral": true,
77
+ "visibility": "Public",
53
78
  "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.SqlServerValueGenerationStrategy",
54
79
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
55
80
  },
@@ -61,6 +86,7 @@
61
86
  "isStatic": true,
62
87
  "isReadOnly": false,
63
88
  "isLiteral": true,
89
+ "visibility": "Public",
64
90
  "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.SqlServerValueGenerationStrategy",
65
91
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
66
92
  },
@@ -72,6 +98,7 @@
72
98
  "isStatic": true,
73
99
  "isReadOnly": false,
74
100
  "isLiteral": true,
101
+ "visibility": "Public",
75
102
  "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.SqlServerValueGenerationStrategy",
76
103
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
77
104
  }