@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
@@ -9,15 +9,16 @@ import type { sbyte, byte, short, ushort, int, uint, long, ulong, int128, uint12
9
9
  import type { ptr } from "@tsonic/core/types.js";
10
10
 
11
11
  // Import types from other namespaces
12
+ import type { Dictionary } from "@tsonic/dotnet/System.Collections.Generic.js";
12
13
  import * as System_Internal from "@tsonic/dotnet/System.js";
13
14
  import type { Boolean as ClrBoolean, Nullable, Object as ClrObject, String as ClrString, Void } from "@tsonic/dotnet/System.js";
14
- import type { ModelBuilder } from "@tsonic/efcore/Microsoft.EntityFrameworkCore.js";
15
+ import type { DeleteBehavior, ModelBuilder } from "@tsonic/efcore/Microsoft.EntityFrameworkCore.js";
15
16
  import type { IConventionEntityTypeBuilder, IConventionIndexBuilder, IConventionKeyBuilder, IConventionModelBuilder, IConventionPropertyBuilder, IConventionSkipNavigationBuilder, IConventionTriggerBuilder } from "@tsonic/efcore/Microsoft.EntityFrameworkCore.Metadata.Builders.js";
16
17
  import * as Microsoft_EntityFrameworkCore_Metadata_Conventions_Infrastructure_Internal from "@tsonic/efcore/Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.js";
17
18
  import type { IProviderConventionSetBuilder, ProviderConventionSetBuilderDependencies, RelationalConventionSetBuilder, RelationalConventionSetBuilderDependencies } from "@tsonic/efcore/Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.js";
18
19
  import * as Microsoft_EntityFrameworkCore_Metadata_Conventions_Internal from "@tsonic/efcore/Microsoft.EntityFrameworkCore.Metadata.Conventions.js";
19
20
  import type { CascadeDeleteConvention, ConventionSet, IConvention, IConventionContext, IEntityTypeAnnotationChangedConvention, IEntityTypeBaseTypeChangedConvention, IEntityTypePrimaryKeyChangedConvention, IForeignKeyAddedConvention, IForeignKeyOwnershipChangedConvention, IForeignKeyPropertiesChangedConvention, IForeignKeyRemovedConvention, IForeignKeyRequirednessChangedConvention, IIndexAddedConvention, IIndexAnnotationChangedConvention, IIndexUniquenessChangedConvention, IKeyAddedConvention, IModelFinalizedConvention, IModelFinalizingConvention, IModelInitializedConvention, IPropertyAnnotationChangedConvention, IPropertyNullabilityChangedConvention, ISkipNavigationForeignKeyChangedConvention, ITriggerAddedConvention, ITriggerRemovedConvention, RelationalRuntimeModelConvention, RelationalValueGenerationConvention, SharedTableConvention, StoreGenerationConvention } from "@tsonic/efcore/Microsoft.EntityFrameworkCore.Metadata.Conventions.js";
20
- import type { IConventionAnnotation, IConventionEntityType, IConventionForeignKey, IConventionTrigger, IReadOnlyProperty, StoreObjectIdentifier, ValueGenerated } from "@tsonic/efcore/Microsoft.EntityFrameworkCore.Metadata.js";
21
+ import type { IConventionAnnotation, IConventionEntityType, IConventionForeignKey, IConventionProperty, IConventionTrigger, IEntityType, IIndex, IKey, IModel, IProperty, IReadOnlyIndex, IReadOnlyKey, IReadOnlyProperty, IRelationalPropertyOverrides, RuntimeEntityType, RuntimeIndex, RuntimeKey, RuntimeModel, RuntimeProperty, RuntimeRelationalPropertyOverrides, StoreObjectIdentifier, ValueGenerated } from "@tsonic/efcore/Microsoft.EntityFrameworkCore.Metadata.js";
21
22
  import type { ISqlGenerationHelper } from "@tsonic/efcore/Microsoft.EntityFrameworkCore.Storage.js";
22
23
 
23
24
  export interface SqlServerConventionSetBuilder$instance extends RelationalConventionSetBuilder {
@@ -34,7 +35,13 @@ export const SqlServerConventionSetBuilder: {
34
35
 
35
36
  export type SqlServerConventionSetBuilder = SqlServerConventionSetBuilder$instance;
36
37
 
37
- export interface SqlServerDbFunctionConvention$instance {
38
+ export abstract class SqlServerDbFunctionConvention$protected {
39
+ protected readonly Dependencies: ProviderConventionSetBuilderDependencies;
40
+ protected readonly RelationalDependencies: RelationalConventionSetBuilderDependencies;
41
+ }
42
+
43
+
44
+ export interface SqlServerDbFunctionConvention$instance extends SqlServerDbFunctionConvention$protected {
38
45
  ProcessModelFinalizing(modelBuilder: IConventionModelBuilder, context: IConventionContext<IConventionModelBuilder>): void;
39
46
  }
40
47
 
@@ -46,7 +53,13 @@ export const SqlServerDbFunctionConvention: {
46
53
 
47
54
  export type SqlServerDbFunctionConvention = SqlServerDbFunctionConvention$instance;
48
55
 
49
- export interface SqlServerIndexConvention$instance {
56
+ export abstract class SqlServerIndexConvention$protected {
57
+ protected readonly Dependencies: ProviderConventionSetBuilderDependencies;
58
+ protected readonly RelationalDependencies: RelationalConventionSetBuilderDependencies;
59
+ }
60
+
61
+
62
+ export interface SqlServerIndexConvention$instance extends SqlServerIndexConvention$protected {
50
63
  ProcessEntityTypeBaseTypeChanged(entityTypeBuilder: IConventionEntityTypeBuilder, newBaseType: IConventionEntityType, oldBaseType: IConventionEntityType, context: IConventionContext<IConventionEntityType>): void;
51
64
  ProcessIndexAdded(indexBuilder: IConventionIndexBuilder, context: IConventionContext<IConventionIndexBuilder>): void;
52
65
  ProcessIndexAnnotationChanged(indexBuilder: IConventionIndexBuilder, name: string, annotation: IConventionAnnotation, oldAnnotation: IConventionAnnotation, context: IConventionContext<IConventionAnnotation>): void;
@@ -63,7 +76,13 @@ export const SqlServerIndexConvention: {
63
76
 
64
77
  export type SqlServerIndexConvention = SqlServerIndexConvention$instance;
65
78
 
66
- export interface SqlServerMemoryOptimizedTablesConvention$instance {
79
+ export abstract class SqlServerMemoryOptimizedTablesConvention$protected {
80
+ protected readonly Dependencies: ProviderConventionSetBuilderDependencies;
81
+ protected readonly RelationalDependencies: RelationalConventionSetBuilderDependencies;
82
+ }
83
+
84
+
85
+ export interface SqlServerMemoryOptimizedTablesConvention$instance extends SqlServerMemoryOptimizedTablesConvention$protected {
67
86
  ProcessEntityTypeAnnotationChanged(entityTypeBuilder: IConventionEntityTypeBuilder, name: string, annotation: IConventionAnnotation, oldAnnotation: IConventionAnnotation, context: IConventionContext<IConventionAnnotation>): void;
68
87
  ProcessIndexAdded(indexBuilder: IConventionIndexBuilder, context: IConventionContext<IConventionIndexBuilder>): void;
69
88
  ProcessKeyAdded(keyBuilder: IConventionKeyBuilder, context: IConventionContext<IConventionKeyBuilder>): void;
@@ -77,7 +96,13 @@ export const SqlServerMemoryOptimizedTablesConvention: {
77
96
 
78
97
  export type SqlServerMemoryOptimizedTablesConvention = SqlServerMemoryOptimizedTablesConvention$instance;
79
98
 
80
- export interface SqlServerOnDeleteConvention$instance extends CascadeDeleteConvention {
99
+ export abstract class SqlServerOnDeleteConvention$protected {
100
+ protected readonly RelationalDependencies: RelationalConventionSetBuilderDependencies;
101
+ protected GetTargetDeleteBehavior(foreignKey: IConventionForeignKey): DeleteBehavior;
102
+ }
103
+
104
+
105
+ export interface SqlServerOnDeleteConvention$instance extends SqlServerOnDeleteConvention$protected, CascadeDeleteConvention {
81
106
  ProcessEntityTypeAnnotationChanged(entityTypeBuilder: IConventionEntityTypeBuilder, name: string, annotation: IConventionAnnotation, oldAnnotation: IConventionAnnotation, context: IConventionContext<IConventionAnnotation>): void;
82
107
  ProcessSkipNavigationForeignKeyChanged(skipNavigationBuilder: IConventionSkipNavigationBuilder, foreignKey: IConventionForeignKey, oldForeignKey: IConventionForeignKey, context: IConventionContext<IConventionForeignKey>): void;
83
108
  }
@@ -90,7 +115,13 @@ export const SqlServerOnDeleteConvention: {
90
115
 
91
116
  export type SqlServerOnDeleteConvention = SqlServerOnDeleteConvention$instance;
92
117
 
93
- export interface SqlServerOutputClauseConvention$instance {
118
+ export abstract class SqlServerOutputClauseConvention$protected {
119
+ protected readonly Dependencies: ProviderConventionSetBuilderDependencies;
120
+ protected readonly RelationalDependencies: RelationalConventionSetBuilderDependencies;
121
+ }
122
+
123
+
124
+ export interface SqlServerOutputClauseConvention$instance extends SqlServerOutputClauseConvention$protected {
94
125
  ProcessTriggerAdded(triggerBuilder: IConventionTriggerBuilder, context: IConventionContext<IConventionTriggerBuilder>): void;
95
126
  ProcessTriggerRemoved(entityTypeBuilder: IConventionEntityTypeBuilder, trigger: IConventionTrigger, context: IConventionContext<IConventionTrigger>): void;
96
127
  }
@@ -103,7 +134,17 @@ export const SqlServerOutputClauseConvention: {
103
134
 
104
135
  export type SqlServerOutputClauseConvention = SqlServerOutputClauseConvention$instance;
105
136
 
106
- export interface SqlServerRuntimeModelConvention$instance extends RelationalRuntimeModelConvention {
137
+ export abstract class SqlServerRuntimeModelConvention$protected {
138
+ protected ProcessEntityTypeAnnotations(annotations: Dictionary<System_Internal.String, unknown>, entityType: IEntityType, runtimeEntityType: RuntimeEntityType, runtime: boolean): void;
139
+ protected ProcessIndexAnnotations(annotations: Dictionary<System_Internal.String, unknown>, index: IIndex, runtimeIndex: RuntimeIndex, runtime: boolean): void;
140
+ protected ProcessKeyAnnotations(annotations: Dictionary<System_Internal.String, unknown>, key: IKey, runtimeKey: RuntimeKey, runtime: boolean): void;
141
+ protected ProcessModelAnnotations(annotations: Dictionary<System_Internal.String, unknown>, model: IModel, runtimeModel: RuntimeModel, runtime: boolean): void;
142
+ protected ProcessPropertyAnnotations(annotations: Dictionary<System_Internal.String, unknown>, property: IProperty, runtimeProperty: RuntimeProperty, runtime: boolean): void;
143
+ protected ProcessPropertyOverridesAnnotations(annotations: Dictionary<System_Internal.String, unknown>, propertyOverrides: IRelationalPropertyOverrides, runtimePropertyOverrides: RuntimeRelationalPropertyOverrides, runtime: boolean): void;
144
+ }
145
+
146
+
147
+ export interface SqlServerRuntimeModelConvention$instance extends SqlServerRuntimeModelConvention$protected, RelationalRuntimeModelConvention {
107
148
  }
108
149
 
109
150
 
@@ -114,7 +155,15 @@ export const SqlServerRuntimeModelConvention: {
114
155
 
115
156
  export type SqlServerRuntimeModelConvention = SqlServerRuntimeModelConvention$instance;
116
157
 
117
- export interface SqlServerSharedTableConvention$instance extends SharedTableConvention {
158
+ export abstract class SqlServerSharedTableConvention$protected {
159
+ protected readonly DefaultConstraintsUniqueAcrossTables: boolean;
160
+ protected readonly IndexesUniqueAcrossTables: boolean;
161
+ protected AreCompatible(key: IReadOnlyKey, duplicateKey: IReadOnlyKey, storeObject: StoreObjectIdentifier): boolean;
162
+ protected AreCompatible(index: IReadOnlyIndex, duplicateIndex: IReadOnlyIndex, storeObject: StoreObjectIdentifier): boolean;
163
+ }
164
+
165
+
166
+ export interface SqlServerSharedTableConvention$instance extends SqlServerSharedTableConvention$protected, SharedTableConvention {
118
167
  }
119
168
 
120
169
 
@@ -125,7 +174,12 @@ export const SqlServerSharedTableConvention: {
125
174
 
126
175
  export type SqlServerSharedTableConvention = SqlServerSharedTableConvention$instance;
127
176
 
128
- export interface SqlServerStoreGenerationConvention$instance extends StoreGenerationConvention {
177
+ export abstract class SqlServerStoreGenerationConvention$protected {
178
+ protected Validate(property: IConventionProperty, storeObject: StoreObjectIdentifier): void;
179
+ }
180
+
181
+
182
+ export interface SqlServerStoreGenerationConvention$instance extends SqlServerStoreGenerationConvention$protected, StoreGenerationConvention {
129
183
  ProcessPropertyAnnotationChanged(propertyBuilder: IConventionPropertyBuilder, name: string, annotation: IConventionAnnotation, oldAnnotation: IConventionAnnotation, context: IConventionContext<IConventionAnnotation>): void;
130
184
  }
131
185
 
@@ -137,7 +191,13 @@ export const SqlServerStoreGenerationConvention: {
137
191
 
138
192
  export type SqlServerStoreGenerationConvention = SqlServerStoreGenerationConvention$instance;
139
193
 
140
- export interface SqlServerTemporalConvention$instance {
194
+ export abstract class SqlServerTemporalConvention$protected {
195
+ protected readonly Dependencies: ProviderConventionSetBuilderDependencies;
196
+ protected readonly RelationalDependencies: RelationalConventionSetBuilderDependencies;
197
+ }
198
+
199
+
200
+ export interface SqlServerTemporalConvention$instance extends SqlServerTemporalConvention$protected {
141
201
  ProcessEntityTypeAnnotationChanged(entityTypeBuilder: IConventionEntityTypeBuilder, name: string, annotation: IConventionAnnotation, oldAnnotation: IConventionAnnotation, context: IConventionContext<IConventionAnnotation>): void;
142
202
  ProcessModelFinalizing(modelBuilder: IConventionModelBuilder, context: IConventionContext<IConventionModelBuilder>): void;
143
203
  ProcessSkipNavigationForeignKeyChanged(skipNavigationBuilder: IConventionSkipNavigationBuilder, foreignKey: IConventionForeignKey, oldForeignKey: IConventionForeignKey, context: IConventionContext<IConventionForeignKey>): void;
@@ -151,7 +211,13 @@ export const SqlServerTemporalConvention: {
151
211
 
152
212
  export type SqlServerTemporalConvention = SqlServerTemporalConvention$instance;
153
213
 
154
- export interface SqlServerValueGenerationConvention$instance extends RelationalValueGenerationConvention {
214
+ export abstract class SqlServerValueGenerationConvention$protected {
215
+ protected GetValueGenerated(property: IConventionProperty): Nullable<ValueGenerated>;
216
+ protected MappingStrategyAllowsValueGeneration(property: IConventionProperty, mappingStrategy: string): boolean;
217
+ }
218
+
219
+
220
+ export interface SqlServerValueGenerationConvention$instance extends SqlServerValueGenerationConvention$protected, RelationalValueGenerationConvention {
155
221
  ProcessEntityTypeAnnotationChanged(entityTypeBuilder: IConventionEntityTypeBuilder, name: string, annotation: IConventionAnnotation, oldAnnotation: IConventionAnnotation, context: IConventionContext<IConventionAnnotation>): void;
156
222
  ProcessPropertyAnnotationChanged(propertyBuilder: IConventionPropertyBuilder, name: string, annotation: IConventionAnnotation, oldAnnotation: IConventionAnnotation, context: IConventionContext<IConventionAnnotation>): void;
157
223
  }
@@ -165,7 +231,13 @@ export const SqlServerValueGenerationConvention: {
165
231
 
166
232
  export type SqlServerValueGenerationConvention = SqlServerValueGenerationConvention$instance;
167
233
 
168
- export interface SqlServerValueGenerationStrategyConvention$instance {
234
+ export abstract class SqlServerValueGenerationStrategyConvention$protected {
235
+ protected readonly Dependencies: ProviderConventionSetBuilderDependencies;
236
+ protected readonly RelationalDependencies: RelationalConventionSetBuilderDependencies;
237
+ }
238
+
239
+
240
+ export interface SqlServerValueGenerationStrategyConvention$instance extends SqlServerValueGenerationStrategyConvention$protected {
169
241
  ProcessModelFinalizing(modelBuilder: IConventionModelBuilder, context: IConventionContext<IConventionModelBuilder>): void;
170
242
  ProcessModelInitialized(modelBuilder: IConventionModelBuilder, context: IConventionContext<IConventionModelBuilder>): void;
171
243
  }
@@ -6,12 +6,13 @@
6
6
  import * as Internal from './Microsoft.EntityFrameworkCore.Metadata.Conventions/internal/index.js';
7
7
 
8
8
  // Cross-namespace type imports for constraints
9
+ import type { Dictionary } from '@tsonic/dotnet/System.Collections.Generic.js';
9
10
  import type { Boolean as ClrBoolean, Nullable, Object as ClrObject, String as ClrString, Void } from '@tsonic/dotnet/System.js';
10
- import type { ModelBuilder } from '@tsonic/efcore/Microsoft.EntityFrameworkCore.js';
11
+ import type { DeleteBehavior, ModelBuilder } from '@tsonic/efcore/Microsoft.EntityFrameworkCore.js';
11
12
  import type { IConventionEntityTypeBuilder, IConventionIndexBuilder, IConventionKeyBuilder, IConventionModelBuilder, IConventionPropertyBuilder, IConventionSkipNavigationBuilder, IConventionTriggerBuilder } from '@tsonic/efcore/Microsoft.EntityFrameworkCore.Metadata.Builders.js';
12
13
  import type { IProviderConventionSetBuilder, ProviderConventionSetBuilderDependencies, RelationalConventionSetBuilder, RelationalConventionSetBuilderDependencies } from '@tsonic/efcore/Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.js';
13
14
  import type { CascadeDeleteConvention, ConventionSet, IConvention, IConventionContext, IEntityTypeAnnotationChangedConvention, IEntityTypeBaseTypeChangedConvention, IEntityTypePrimaryKeyChangedConvention, IForeignKeyAddedConvention, IForeignKeyOwnershipChangedConvention, IForeignKeyPropertiesChangedConvention, IForeignKeyRemovedConvention, IForeignKeyRequirednessChangedConvention, IIndexAddedConvention, IIndexAnnotationChangedConvention, IIndexUniquenessChangedConvention, IKeyAddedConvention, IModelFinalizedConvention, IModelFinalizingConvention, IModelInitializedConvention, IPropertyAnnotationChangedConvention, IPropertyNullabilityChangedConvention, ISkipNavigationForeignKeyChangedConvention, ITriggerAddedConvention, ITriggerRemovedConvention, RelationalRuntimeModelConvention, RelationalValueGenerationConvention, SharedTableConvention, StoreGenerationConvention } from '@tsonic/efcore/Microsoft.EntityFrameworkCore.Metadata.Conventions.js';
14
- import type { IConventionAnnotation, IConventionEntityType, IConventionForeignKey, IConventionTrigger, IReadOnlyProperty, StoreObjectIdentifier, ValueGenerated } from '@tsonic/efcore/Microsoft.EntityFrameworkCore.Metadata.js';
15
+ import type { IConventionAnnotation, IConventionEntityType, IConventionForeignKey, IConventionProperty, IConventionTrigger, IEntityType, IIndex, IKey, IModel, IProperty, IReadOnlyIndex, IReadOnlyKey, IReadOnlyProperty, IRelationalPropertyOverrides, RuntimeEntityType, RuntimeIndex, RuntimeKey, RuntimeModel, RuntimeProperty, RuntimeRelationalPropertyOverrides, StoreObjectIdentifier, ValueGenerated } from '@tsonic/efcore/Microsoft.EntityFrameworkCore.Metadata.js';
15
16
  import type { ISqlGenerationHelper } from '@tsonic/efcore/Microsoft.EntityFrameworkCore.Storage.js';
16
17
 
17
18
  // Public API exports (curated - no internal $instance/$views leakage)
@@ -17,6 +17,10 @@
17
17
  "isSealed": true,
18
18
  "isStatic": true,
19
19
  "arity": 0,
20
+ "baseType": {
21
+ "stableId": "System.Private.CoreLib:System.Object",
22
+ "clrName": "System.Object"
23
+ },
20
24
  "methods": [
21
25
  {
22
26
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.Metadata.Internal.SqlServerIndexExtensions::AreCompatibleForSqlServer(Microsoft.EntityFrameworkCore.Metadata.IReadOnlyIndex,Microsoft.EntityFrameworkCore.Metadata.IReadOnlyIndex,Microsoft.EntityFrameworkCore.Metadata.StoreObjectIdentifier\u0026,System.Boolean):System.Boolean",
@@ -33,6 +37,7 @@
33
37
  "isVirtual": false,
34
38
  "isOverride": false,
35
39
  "isSealed": false,
40
+ "visibility": "Public",
36
41
  "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.Internal.SqlServerIndexExtensions",
37
42
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
38
43
  "isExtensionMethod": true,
@@ -60,6 +65,10 @@
60
65
  "isSealed": true,
61
66
  "isStatic": true,
62
67
  "arity": 0,
68
+ "baseType": {
69
+ "stableId": "System.Private.CoreLib:System.Object",
70
+ "clrName": "System.Object"
71
+ },
63
72
  "methods": [
64
73
  {
65
74
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.Metadata.Internal.SqlServerKeyExtensions::AreCompatibleForSqlServer(Microsoft.EntityFrameworkCore.Metadata.IReadOnlyKey,Microsoft.EntityFrameworkCore.Metadata.IReadOnlyKey,Microsoft.EntityFrameworkCore.Metadata.StoreObjectIdentifier\u0026,System.Boolean):System.Boolean",
@@ -76,6 +85,7 @@
76
85
  "isVirtual": false,
77
86
  "isOverride": false,
78
87
  "isSealed": false,
88
+ "visibility": "Public",
79
89
  "declaringClrType": "Microsoft.EntityFrameworkCore.Metadata.Internal.SqlServerKeyExtensions",
80
90
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
81
91
  "isExtensionMethod": true,