@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
@@ -5,10 +5,13 @@
5
5
  // Primitive type aliases from @tsonic/core
6
6
  import type { sbyte, byte, short, ushort, int, uint, long, ulong, int128, uint128, half, float, double, decimal, nint, nuint, char } from '@tsonic/core/types.js';
7
7
 
8
+ // Import support types from @tsonic/core
9
+ import type { ptr } from "@tsonic/core/types.js";
10
+
8
11
  // Import types from other namespaces
9
12
  import type { ISqlServerSingletonOptions } from "../../Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal/internal/index.js";
10
13
  import * as System_Data_Common_Internal from "@tsonic/dotnet/System.Data.Common.js";
11
- import type { DbTransaction } from "@tsonic/dotnet/System.Data.Common.js";
14
+ import type { DbConnection, DbParameter, DbTransaction } from "@tsonic/dotnet/System.Data.Common.js";
12
15
  import type { DbType, SqlDbType } from "@tsonic/dotnet/System.Data.js";
13
16
  import type { MemoryStream } from "@tsonic/dotnet/System.IO.js";
14
17
  import * as System_Internal from "@tsonic/dotnet/System.js";
@@ -24,7 +27,7 @@ import * as Microsoft_EntityFrameworkCore_Infrastructure_Internal from "@tsonic/
24
27
  import type { IInfrastructure, IResettableService } from "@tsonic/efcore/Microsoft.EntityFrameworkCore.Infrastructure.js";
25
28
  import type { DbContext, DbLoggerCategory$Database$Transaction } from "@tsonic/efcore/Microsoft.EntityFrameworkCore.js";
26
29
  import * as Microsoft_EntityFrameworkCore_Storage_Internal from "@tsonic/efcore/Microsoft.EntityFrameworkCore.Storage.js";
27
- import type { BoolTypeMapping, ByteArrayTypeMapping, ByteTypeMapping, DateOnlyTypeMapping, DateTimeOffsetTypeMapping, DateTimeTypeMapping, DecimalTypeMapping, DoubleTypeMapping, ExecutionResult, ExecutionStrategyDependencies, FloatTypeMapping, IDatabaseCreator, IDbContextTransaction, IDbContextTransactionManager, IExceptionDetector, IExecutionStrategy, IExecutionStrategyFactory, IRawSqlCommandBuilder, IRelationalConnection, IRelationalDatabaseCreator, IRelationalTransactionFactory, IRelationalTransactionManager, IRelationalTypeMappingSource, ISqlGenerationHelper, ITransactionEnlistmentManager, ITypeMappingSource, JsonTypeMapping, LongTypeMapping, RelationalConnection, RelationalConnectionDependencies, RelationalDatabaseCreator, RelationalDatabaseCreatorDependencies, RelationalExecutionStrategyFactory, RelationalSqlGenerationHelper, RelationalSqlGenerationHelperDependencies, RelationalTransaction, RelationalTransactionFactoryDependencies, RelationalTypeMapping, RelationalTypeMappingSource, RelationalTypeMappingSourceDependencies, ShortTypeMapping, StoreTypePostfix, StringTypeMapping, TimeOnlyTypeMapping, TimeSpanTypeMapping, TypeMappingSourceDependencies } from "@tsonic/efcore/Microsoft.EntityFrameworkCore.Storage.js";
30
+ import type { BoolTypeMapping, ByteArrayTypeMapping, ByteTypeMapping, CoreTypeMapping, DateOnlyTypeMapping, DateTimeOffsetTypeMapping, DateTimeTypeMapping, DecimalTypeMapping, DoubleTypeMapping, ExecutionResult, ExecutionStrategyDependencies, FloatTypeMapping, IDatabaseCreator, IDbContextTransaction, IDbContextTransactionManager, IExceptionDetector, IExecutionStrategy, IExecutionStrategyFactory, IRawSqlCommandBuilder, IRelationalConnection, IRelationalDatabaseCreator, IRelationalTransactionFactory, IRelationalTransactionManager, IRelationalTypeMappingSource, ISqlGenerationHelper, ITransactionEnlistmentManager, ITypeMappingSource, JsonTypeMapping, LongTypeMapping, RelationalConnection, RelationalConnectionDependencies, RelationalDatabaseCreator, RelationalDatabaseCreatorDependencies, RelationalExecutionStrategyFactory, RelationalSqlGenerationHelper, RelationalSqlGenerationHelperDependencies, RelationalTransaction, RelationalTransactionFactoryDependencies, RelationalTypeMapping, RelationalTypeMappingInfo, RelationalTypeMappingSource, RelationalTypeMappingSourceDependencies, ShortTypeMapping, StoreTypePostfix, StringTypeMapping, TimeOnlyTypeMapping, TimeSpanTypeMapping, TypeMappingSourceDependencies } from "@tsonic/efcore/Microsoft.EntityFrameworkCore.Storage.js";
28
31
  import type { ValueConverter } from "@tsonic/efcore/Microsoft.EntityFrameworkCore.Storage.ValueConversion.js";
29
32
 
30
33
  export interface ISqlServerConnection$instance extends IRelationalConnection, IRelationalTransactionManager, IDbContextTransactionManager, IResettableService, IDisposable, IAsyncDisposable {
@@ -35,43 +38,74 @@ export interface ISqlServerConnection$instance extends IRelationalConnection, IR
35
38
 
36
39
  export type ISqlServerConnection = ISqlServerConnection$instance;
37
40
 
38
- export interface SqlServerBoolTypeMapping$instance extends BoolTypeMapping {
41
+ export abstract class SqlServerBoolTypeMapping$protected {
42
+ protected Clone(parameters: RelationalTypeMapping_RelationalTypeMappingParameters): RelationalTypeMapping;
43
+ protected GenerateNonNullSqlLiteral(value: unknown): string;
44
+ }
45
+
46
+
47
+ export interface SqlServerBoolTypeMapping$instance extends SqlServerBoolTypeMapping$protected, BoolTypeMapping {
39
48
  }
40
49
 
41
50
 
42
51
  export const SqlServerBoolTypeMapping: {
43
52
  new(storeType: string, dbType: Nullable<DbType>): SqlServerBoolTypeMapping;
53
+ new(parameters: RelationalTypeMapping_RelationalTypeMappingParameters): SqlServerBoolTypeMapping;
44
54
  readonly Default: SqlServerBoolTypeMapping;
45
55
  };
46
56
 
47
57
 
48
58
  export type SqlServerBoolTypeMapping = SqlServerBoolTypeMapping$instance;
49
59
 
50
- export interface SqlServerByteArrayTypeMapping$instance extends ByteArrayTypeMapping {
60
+ export abstract class SqlServerByteArrayTypeMapping$protected {
61
+ protected Clone(parameters: RelationalTypeMapping_RelationalTypeMappingParameters): RelationalTypeMapping;
62
+ protected ConfigureParameter(parameter: DbParameter): void;
63
+ protected GenerateNonNullSqlLiteral(value: unknown): string;
64
+ }
65
+
66
+
67
+ export interface SqlServerByteArrayTypeMapping$instance extends SqlServerByteArrayTypeMapping$protected, ByteArrayTypeMapping {
51
68
  }
52
69
 
53
70
 
54
71
  export const SqlServerByteArrayTypeMapping: {
55
72
  new(storeType: string, size: Nullable<System_Internal.Int32>, fixedLength: boolean, comparer: ValueComparer, sqlDbType: Nullable<SqlDbType>, storeTypePostfix: Nullable<StoreTypePostfix>): SqlServerByteArrayTypeMapping;
73
+ new(parameters: RelationalTypeMapping_RelationalTypeMappingParameters, sqlDbType: Nullable<SqlDbType>): SqlServerByteArrayTypeMapping;
56
74
  readonly Default: SqlServerByteArrayTypeMapping;
57
75
  };
58
76
 
59
77
 
60
78
  export type SqlServerByteArrayTypeMapping = SqlServerByteArrayTypeMapping$instance;
61
79
 
62
- export interface SqlServerByteTypeMapping$instance extends ByteTypeMapping {
80
+ export abstract class SqlServerByteTypeMapping$protected {
81
+ protected Clone(parameters: RelationalTypeMapping_RelationalTypeMappingParameters): RelationalTypeMapping;
82
+ protected GenerateNonNullSqlLiteral(value: unknown): string;
83
+ }
84
+
85
+
86
+ export interface SqlServerByteTypeMapping$instance extends SqlServerByteTypeMapping$protected, ByteTypeMapping {
63
87
  }
64
88
 
65
89
 
66
90
  export const SqlServerByteTypeMapping: {
67
91
  new(storeType: string, dbType: Nullable<DbType>): SqlServerByteTypeMapping;
92
+ new(parameters: RelationalTypeMapping_RelationalTypeMappingParameters): SqlServerByteTypeMapping;
68
93
  readonly Default: SqlServerByteTypeMapping;
69
94
  };
70
95
 
71
96
 
72
97
  export type SqlServerByteTypeMapping = SqlServerByteTypeMapping$instance;
73
98
 
74
- export interface SqlServerConnection$instance extends RelationalConnection {
99
+ export abstract class SqlServerConnection$protected {
100
+ protected readonly SupportsAmbientTransactions: boolean;
101
+ protected CreateDbConnection(): DbConnection;
102
+ protected ModifyConnectionString(userProvidedConnectionString: string): string;
103
+ protected OpenDbConnection(errorsExpected: boolean): void;
104
+ protected OpenDbConnectionAsync(errorsExpected: boolean, cancellationToken: CancellationToken): Task;
105
+ }
106
+
107
+
108
+ export interface SqlServerConnection$instance extends SqlServerConnection$protected, RelationalConnection {
75
109
  get ConnectionString(): string | undefined;
76
110
  set ConnectionString(value: string);
77
111
  readonly IsMultipleActiveResultSetsEnabled: boolean;
@@ -114,57 +148,94 @@ export const SqlServerDatabaseCreator: {
114
148
 
115
149
  export type SqlServerDatabaseCreator = SqlServerDatabaseCreator$instance;
116
150
 
117
- export interface SqlServerDateOnlyTypeMapping$instance extends DateOnlyTypeMapping {
151
+ export abstract class SqlServerDateOnlyTypeMapping$protected {
152
+ protected readonly SqlLiteralFormatString: string;
153
+ protected Clone(parameters: RelationalTypeMapping_RelationalTypeMappingParameters): RelationalTypeMapping;
154
+ protected ConfigureParameter(parameter: DbParameter): void;
155
+ }
156
+
157
+
158
+ export interface SqlServerDateOnlyTypeMapping$instance extends SqlServerDateOnlyTypeMapping$protected, DateOnlyTypeMapping {
118
159
  }
119
160
 
120
161
 
121
162
  export const SqlServerDateOnlyTypeMapping: {
122
- new(): SqlServerDateOnlyTypeMapping;
163
+ new(parameters: RelationalTypeMapping_RelationalTypeMappingParameters): SqlServerDateOnlyTypeMapping;
123
164
  readonly Default: SqlServerDateOnlyTypeMapping;
124
165
  };
125
166
 
126
167
 
127
168
  export type SqlServerDateOnlyTypeMapping = SqlServerDateOnlyTypeMapping$instance;
128
169
 
129
- export interface SqlServerDateTimeOffsetTypeMapping$instance extends DateTimeOffsetTypeMapping {
170
+ export abstract class SqlServerDateTimeOffsetTypeMapping$protected {
171
+ protected readonly SqlLiteralFormatString: string;
172
+ protected Clone(parameters: RelationalTypeMapping_RelationalTypeMappingParameters): RelationalTypeMapping;
173
+ protected ConfigureParameter(parameter: DbParameter): void;
174
+ }
175
+
176
+
177
+ export interface SqlServerDateTimeOffsetTypeMapping$instance extends SqlServerDateTimeOffsetTypeMapping$protected, DateTimeOffsetTypeMapping {
130
178
  }
131
179
 
132
180
 
133
181
  export const SqlServerDateTimeOffsetTypeMapping: {
134
182
  new(storeType: string, dbType: Nullable<DbType>, storeTypePostfix: StoreTypePostfix): SqlServerDateTimeOffsetTypeMapping;
183
+ new(parameters: RelationalTypeMapping_RelationalTypeMappingParameters): SqlServerDateTimeOffsetTypeMapping;
135
184
  readonly Default: SqlServerDateTimeOffsetTypeMapping;
136
185
  };
137
186
 
138
187
 
139
188
  export type SqlServerDateTimeOffsetTypeMapping = SqlServerDateTimeOffsetTypeMapping$instance;
140
189
 
141
- export interface SqlServerDateTimeTypeMapping$instance extends DateTimeTypeMapping {
190
+ export abstract class SqlServerDateTimeTypeMapping$protected {
191
+ protected readonly SqlLiteralFormatString: string;
192
+ protected Clone(parameters: RelationalTypeMapping_RelationalTypeMappingParameters): RelationalTypeMapping;
193
+ protected ConfigureParameter(parameter: DbParameter): void;
194
+ }
195
+
196
+
197
+ export interface SqlServerDateTimeTypeMapping$instance extends SqlServerDateTimeTypeMapping$protected, DateTimeTypeMapping {
142
198
  readonly SqlType: Nullable<SqlDbType>;
143
199
  }
144
200
 
145
201
 
146
202
  export const SqlServerDateTimeTypeMapping: {
147
203
  new(storeType: string, dbType: Nullable<DbType>, sqlDbType: Nullable<SqlDbType>, storeTypePostfix: StoreTypePostfix): SqlServerDateTimeTypeMapping;
204
+ new(parameters: RelationalTypeMapping_RelationalTypeMappingParameters, sqlDbType: Nullable<SqlDbType>): SqlServerDateTimeTypeMapping;
148
205
  readonly Default: SqlServerDateTimeTypeMapping;
149
206
  };
150
207
 
151
208
 
152
209
  export type SqlServerDateTimeTypeMapping = SqlServerDateTimeTypeMapping$instance;
153
210
 
154
- export interface SqlServerDecimalTypeMapping$instance extends DecimalTypeMapping {
211
+ export abstract class SqlServerDecimalTypeMapping$protected {
212
+ protected Clone(parameters: RelationalTypeMapping_RelationalTypeMappingParameters): RelationalTypeMapping;
213
+ protected ConfigureParameter(parameter: DbParameter): void;
214
+ }
215
+
216
+
217
+ export interface SqlServerDecimalTypeMapping$instance extends SqlServerDecimalTypeMapping$protected, DecimalTypeMapping {
155
218
  readonly SqlType: Nullable<SqlDbType>;
156
219
  }
157
220
 
158
221
 
159
222
  export const SqlServerDecimalTypeMapping: {
160
223
  new(storeType: string, dbType: Nullable<DbType>, precision: Nullable<System_Internal.Int32>, scale: Nullable<System_Internal.Int32>, sqlDbType: Nullable<SqlDbType>, storeTypePostfix: StoreTypePostfix): SqlServerDecimalTypeMapping;
224
+ new(parameters: RelationalTypeMapping_RelationalTypeMappingParameters, sqlDbType: Nullable<SqlDbType>): SqlServerDecimalTypeMapping;
161
225
  readonly Default: SqlServerDecimalTypeMapping;
162
226
  };
163
227
 
164
228
 
165
229
  export type SqlServerDecimalTypeMapping = SqlServerDecimalTypeMapping$instance;
166
230
 
167
- export interface SqlServerDoubleTypeMapping$instance extends DoubleTypeMapping {
231
+ export abstract class SqlServerDoubleTypeMapping$protected {
232
+ protected Clone(parameters: RelationalTypeMapping_RelationalTypeMappingParameters): RelationalTypeMapping;
233
+ protected ConfigureParameter(parameter: DbParameter): void;
234
+ protected GenerateNonNullSqlLiteral(value: unknown): string;
235
+ }
236
+
237
+
238
+ export interface SqlServerDoubleTypeMapping$instance extends SqlServerDoubleTypeMapping$protected, DoubleTypeMapping {
168
239
  CustomizeDataReaderExpression(expression: Expression): Expression;
169
240
  GetDataReaderMethod(): MethodInfo;
170
241
  }
@@ -172,6 +243,7 @@ export interface SqlServerDoubleTypeMapping$instance extends DoubleTypeMapping {
172
243
 
173
244
  export const SqlServerDoubleTypeMapping: {
174
245
  new(storeType: string, dbType: Nullable<DbType>, storeTypePostfix: StoreTypePostfix): SqlServerDoubleTypeMapping;
246
+ new(parameters: RelationalTypeMapping_RelationalTypeMappingParameters): SqlServerDoubleTypeMapping;
175
247
  readonly Default: SqlServerDoubleTypeMapping;
176
248
  };
177
249
 
@@ -190,7 +262,12 @@ export const SqlServerExceptionDetector: {
190
262
 
191
263
  export type SqlServerExceptionDetector = SqlServerExceptionDetector$instance;
192
264
 
193
- export interface SqlServerExecutionStrategy$instance {
265
+ export abstract class SqlServerExecutionStrategy$protected {
266
+ protected readonly Dependencies: ExecutionStrategyDependencies;
267
+ }
268
+
269
+
270
+ export interface SqlServerExecutionStrategy$instance extends SqlServerExecutionStrategy$protected {
194
271
  readonly RetriesOnFailure: boolean;
195
272
  Execute<TState, TResult>(state: TState, operation: Func<DbContext, TState, TResult>, verifySucceeded: Func<DbContext, TState, ExecutionResult<TResult>>): TResult;
196
273
  ExecuteAsync<TState, TResult>(state: TState, operation: Func<DbContext, TState, CancellationToken, Task<TResult>>, verifySucceeded: Func<DbContext, TState, CancellationToken, Task<ExecutionResult<TResult>>>, cancellationToken: CancellationToken): Task<TResult>;
@@ -204,7 +281,12 @@ export const SqlServerExecutionStrategy: {
204
281
 
205
282
  export type SqlServerExecutionStrategy = SqlServerExecutionStrategy$instance;
206
283
 
207
- export interface SqlServerExecutionStrategyFactory$instance extends RelationalExecutionStrategyFactory {
284
+ export abstract class SqlServerExecutionStrategyFactory$protected {
285
+ protected CreateDefaultStrategy(dependencies: ExecutionStrategyDependencies): IExecutionStrategy;
286
+ }
287
+
288
+
289
+ export interface SqlServerExecutionStrategyFactory$instance extends SqlServerExecutionStrategyFactory$protected, RelationalExecutionStrategyFactory {
208
290
  }
209
291
 
210
292
 
@@ -215,36 +297,58 @@ export const SqlServerExecutionStrategyFactory: {
215
297
 
216
298
  export type SqlServerExecutionStrategyFactory = SqlServerExecutionStrategyFactory$instance;
217
299
 
218
- export interface SqlServerFloatTypeMapping$instance extends FloatTypeMapping {
300
+ export abstract class SqlServerFloatTypeMapping$protected {
301
+ protected Clone(parameters: RelationalTypeMapping_RelationalTypeMappingParameters): RelationalTypeMapping;
302
+ protected ConfigureParameter(parameter: DbParameter): void;
303
+ protected GenerateNonNullSqlLiteral(value: unknown): string;
304
+ }
305
+
306
+
307
+ export interface SqlServerFloatTypeMapping$instance extends SqlServerFloatTypeMapping$protected, FloatTypeMapping {
219
308
  }
220
309
 
221
310
 
222
311
  export const SqlServerFloatTypeMapping: {
223
312
  new(storeType: string, dbType: Nullable<DbType>, storeTypePostfix: StoreTypePostfix): SqlServerFloatTypeMapping;
313
+ new(parameters: RelationalTypeMapping_RelationalTypeMappingParameters): SqlServerFloatTypeMapping;
224
314
  readonly Default: SqlServerFloatTypeMapping;
225
315
  };
226
316
 
227
317
 
228
318
  export type SqlServerFloatTypeMapping = SqlServerFloatTypeMapping$instance;
229
319
 
230
- export interface SqlServerLongTypeMapping$instance extends LongTypeMapping {
320
+ export abstract class SqlServerLongTypeMapping$protected {
321
+ protected Clone(parameters: RelationalTypeMapping_RelationalTypeMappingParameters): RelationalTypeMapping;
322
+ protected GenerateNonNullSqlLiteral(value: unknown): string;
323
+ }
324
+
325
+
326
+ export interface SqlServerLongTypeMapping$instance extends SqlServerLongTypeMapping$protected, LongTypeMapping {
231
327
  }
232
328
 
233
329
 
234
330
  export const SqlServerLongTypeMapping: {
235
331
  new(storeType: string, converter: ValueConverter, comparer: ValueComparer, providerValueComparer: ValueComparer, dbType: Nullable<DbType>): SqlServerLongTypeMapping;
332
+ new(parameters: RelationalTypeMapping_RelationalTypeMappingParameters): SqlServerLongTypeMapping;
236
333
  readonly Default: SqlServerLongTypeMapping;
237
334
  };
238
335
 
239
336
 
240
337
  export type SqlServerLongTypeMapping = SqlServerLongTypeMapping$instance;
241
338
 
242
- export interface SqlServerShortTypeMapping$instance extends ShortTypeMapping {
339
+ export abstract class SqlServerShortTypeMapping$protected {
340
+ protected Clone(parameters: RelationalTypeMapping_RelationalTypeMappingParameters): RelationalTypeMapping;
341
+ protected GenerateNonNullSqlLiteral(value: unknown): string;
342
+ }
343
+
344
+
345
+ export interface SqlServerShortTypeMapping$instance extends SqlServerShortTypeMapping$protected, ShortTypeMapping {
243
346
  }
244
347
 
245
348
 
246
349
  export const SqlServerShortTypeMapping: {
247
350
  new(storeType: string, dbType: Nullable<DbType>): SqlServerShortTypeMapping;
351
+ new(parameters: RelationalTypeMapping_RelationalTypeMappingParameters): SqlServerShortTypeMapping;
248
352
  readonly Default: SqlServerShortTypeMapping;
249
353
  };
250
354
 
@@ -272,24 +376,38 @@ export const SqlServerSqlGenerationHelper: {
272
376
 
273
377
  export type SqlServerSqlGenerationHelper = SqlServerSqlGenerationHelper$instance;
274
378
 
275
- export interface SqlServerSqlVariantTypeMapping$instance extends RelationalTypeMapping {
379
+ export abstract class SqlServerSqlVariantTypeMapping$protected {
380
+ protected Clone(parameters: RelationalTypeMapping_RelationalTypeMappingParameters): RelationalTypeMapping;
381
+ }
382
+
383
+
384
+ export interface SqlServerSqlVariantTypeMapping$instance extends SqlServerSqlVariantTypeMapping$protected, RelationalTypeMapping {
276
385
  }
277
386
 
278
387
 
279
388
  export const SqlServerSqlVariantTypeMapping: {
280
389
  new(storeType: string): SqlServerSqlVariantTypeMapping;
390
+ new(parameters: RelationalTypeMapping_RelationalTypeMappingParameters): SqlServerSqlVariantTypeMapping;
281
391
  readonly Default: SqlServerSqlVariantTypeMapping;
282
392
  };
283
393
 
284
394
 
285
395
  export type SqlServerSqlVariantTypeMapping = SqlServerSqlVariantTypeMapping$instance;
286
396
 
287
- export interface SqlServerStringTypeMapping$instance extends StringTypeMapping {
397
+ export abstract class SqlServerStringTypeMapping$protected {
398
+ protected Clone(parameters: RelationalTypeMapping_RelationalTypeMappingParameters): RelationalTypeMapping;
399
+ protected ConfigureParameter(parameter: DbParameter): void;
400
+ protected GenerateNonNullSqlLiteral(value: unknown): string;
401
+ }
402
+
403
+
404
+ export interface SqlServerStringTypeMapping$instance extends SqlServerStringTypeMapping$protected, StringTypeMapping {
288
405
  }
289
406
 
290
407
 
291
408
  export const SqlServerStringTypeMapping: {
292
409
  new(storeType: string, unicode: boolean, size: Nullable<System_Internal.Int32>, fixedLength: boolean, sqlDbType: Nullable<SqlDbType>, storeTypePostfix: Nullable<StoreTypePostfix>, useKeyComparison: boolean): SqlServerStringTypeMapping;
410
+ new(parameters: RelationalTypeMapping_RelationalTypeMappingParameters, sqlDbType: Nullable<SqlDbType>): SqlServerStringTypeMapping;
293
411
  readonly Default: SqlServerStringTypeMapping;
294
412
  readonly JsonTypeDefault: SqlServerStringTypeMapping;
295
413
  readonly UnicodeDefault: SqlServerStringTypeMapping;
@@ -298,7 +416,15 @@ export const SqlServerStringTypeMapping: {
298
416
 
299
417
  export type SqlServerStringTypeMapping = SqlServerStringTypeMapping$instance;
300
418
 
301
- export interface SqlServerStructuralJsonTypeMapping$instance extends JsonTypeMapping {
419
+ export abstract class SqlServerStructuralJsonTypeMapping$protected {
420
+ protected Clone(parameters: RelationalTypeMapping_RelationalTypeMappingParameters): RelationalTypeMapping;
421
+ protected ConfigureParameter(parameter: DbParameter): void;
422
+ protected EscapeSqlLiteral(literal: string): string;
423
+ protected GenerateNonNullSqlLiteral(value: unknown): string;
424
+ }
425
+
426
+
427
+ export interface SqlServerStructuralJsonTypeMapping$instance extends SqlServerStructuralJsonTypeMapping$protected, JsonTypeMapping {
302
428
  CustomizeDataReaderExpression(expression: Expression): Expression;
303
429
  GetDataReaderMethod(): MethodInfo;
304
430
  }
@@ -306,6 +432,7 @@ export interface SqlServerStructuralJsonTypeMapping$instance extends JsonTypeMap
306
432
 
307
433
  export const SqlServerStructuralJsonTypeMapping: {
308
434
  new(storeType: string): SqlServerStructuralJsonTypeMapping;
435
+ new(parameters: RelationalTypeMapping_RelationalTypeMappingParameters): SqlServerStructuralJsonTypeMapping;
309
436
  readonly Default: SqlServerStructuralJsonTypeMapping;
310
437
  readonly JsonTypeDefault: SqlServerStructuralJsonTypeMapping;
311
438
  readonly NvarcharMaxDefault: SqlServerStructuralJsonTypeMapping;
@@ -315,24 +442,41 @@ export const SqlServerStructuralJsonTypeMapping: {
315
442
 
316
443
  export type SqlServerStructuralJsonTypeMapping = SqlServerStructuralJsonTypeMapping$instance;
317
444
 
318
- export interface SqlServerTimeOnlyTypeMapping$instance extends TimeOnlyTypeMapping {
445
+ export abstract class SqlServerTimeOnlyTypeMapping$protected {
446
+ protected readonly SqlLiteralFormatString: string;
447
+ protected Clone(parameters: RelationalTypeMapping_RelationalTypeMappingParameters): RelationalTypeMapping;
448
+ protected ConfigureParameter(parameter: DbParameter): void;
449
+ protected GenerateNonNullSqlLiteral(value: unknown): string;
450
+ }
451
+
452
+
453
+ export interface SqlServerTimeOnlyTypeMapping$instance extends SqlServerTimeOnlyTypeMapping$protected, TimeOnlyTypeMapping {
319
454
  }
320
455
 
321
456
 
322
457
  export const SqlServerTimeOnlyTypeMapping: {
323
- new(): SqlServerTimeOnlyTypeMapping;
458
+ new(parameters: RelationalTypeMapping_RelationalTypeMappingParameters): SqlServerTimeOnlyTypeMapping;
324
459
  readonly Default: SqlServerTimeOnlyTypeMapping;
325
460
  };
326
461
 
327
462
 
328
463
  export type SqlServerTimeOnlyTypeMapping = SqlServerTimeOnlyTypeMapping$instance;
329
464
 
330
- export interface SqlServerTimeSpanTypeMapping$instance extends TimeSpanTypeMapping {
465
+ export abstract class SqlServerTimeSpanTypeMapping$protected {
466
+ protected readonly SqlLiteralFormatString: string;
467
+ protected Clone(parameters: RelationalTypeMapping_RelationalTypeMappingParameters): RelationalTypeMapping;
468
+ protected ConfigureParameter(parameter: DbParameter): void;
469
+ protected GenerateNonNullSqlLiteral(value: unknown): string;
470
+ }
471
+
472
+
473
+ export interface SqlServerTimeSpanTypeMapping$instance extends SqlServerTimeSpanTypeMapping$protected, TimeSpanTypeMapping {
331
474
  }
332
475
 
333
476
 
334
477
  export const SqlServerTimeSpanTypeMapping: {
335
478
  new(storeType: string, dbType: Nullable<DbType>, storeTypePostfix: StoreTypePostfix): SqlServerTimeSpanTypeMapping;
479
+ new(parameters: RelationalTypeMapping_RelationalTypeMappingParameters): SqlServerTimeSpanTypeMapping;
336
480
  readonly Default: SqlServerTimeSpanTypeMapping;
337
481
  };
338
482
 
@@ -353,7 +497,12 @@ export const SqlServerTransaction: {
353
497
 
354
498
  export type SqlServerTransaction = SqlServerTransaction$instance;
355
499
 
356
- export interface SqlServerTransactionFactory$instance {
500
+ export abstract class SqlServerTransactionFactory$protected {
501
+ protected readonly Dependencies: RelationalTransactionFactoryDependencies;
502
+ }
503
+
504
+
505
+ export interface SqlServerTransactionFactory$instance extends SqlServerTransactionFactory$protected {
357
506
  Create(connection: IRelationalConnection, transaction: DbTransaction, transactionId: Guid, logger: IDiagnosticsLogger<DbLoggerCategory$Database$Transaction>, transactionOwned: boolean): RelationalTransaction;
358
507
  }
359
508
 
@@ -365,7 +514,14 @@ export const SqlServerTransactionFactory: {
365
514
 
366
515
  export type SqlServerTransactionFactory = SqlServerTransactionFactory$instance;
367
516
 
368
- export interface SqlServerTypeMappingSource$instance extends RelationalTypeMappingSource {
517
+ export abstract class SqlServerTypeMappingSource$protected {
518
+ protected FindCollectionMapping(info: RelationalTypeMappingInfo, modelType: Type, providerType: Type, elementMapping: CoreTypeMapping): RelationalTypeMapping | undefined;
519
+ protected FindMapping(mappingInfo: RelationalTypeMappingInfo): RelationalTypeMapping | undefined;
520
+ protected ParseStoreTypeName(storeTypeName: string, unicode: Nullable<System_Internal.Boolean>, size: Nullable<System_Internal.Int32>, precision: Nullable<System_Internal.Int32>, scale: Nullable<System_Internal.Int32>): string | undefined;
521
+ }
522
+
523
+
524
+ export interface SqlServerTypeMappingSource$instance extends SqlServerTypeMappingSource$protected, RelationalTypeMappingSource {
369
525
  }
370
526
 
371
527
 
@@ -376,7 +532,13 @@ export const SqlServerTypeMappingSource: {
376
532
 
377
533
  export type SqlServerTypeMappingSource = SqlServerTypeMappingSource$instance;
378
534
 
379
- export interface SqlServerUdtTypeMapping$instance extends RelationalTypeMapping {
535
+ export abstract class SqlServerUdtTypeMapping$protected {
536
+ protected Clone(parameters: RelationalTypeMapping_RelationalTypeMappingParameters): RelationalTypeMapping;
537
+ protected ConfigureParameter(parameter: DbParameter): void;
538
+ }
539
+
540
+
541
+ export interface SqlServerUdtTypeMapping$instance extends SqlServerUdtTypeMapping$protected, RelationalTypeMapping {
380
542
  readonly LiteralGenerator: Func<unknown, Expression>;
381
543
  readonly UdtTypeName: string;
382
544
  GenerateCodeLiteral(value: unknown): Expression;
@@ -385,17 +547,25 @@ export interface SqlServerUdtTypeMapping$instance extends RelationalTypeMapping
385
547
 
386
548
  export const SqlServerUdtTypeMapping: {
387
549
  new(clrType: Type, storeType: string, literalGenerator: Func<unknown, Expression>, storeTypePostfix: StoreTypePostfix, udtTypeName: string, converter: ValueConverter, comparer: ValueComparer, keyComparer: ValueComparer, dbType: Nullable<DbType>, unicode: boolean, size: Nullable<System_Internal.Int32>, fixedLength: boolean, precision: Nullable<System_Internal.Int32>, scale: Nullable<System_Internal.Int32>): SqlServerUdtTypeMapping;
550
+ new(parameters: RelationalTypeMapping_RelationalTypeMappingParameters, literalGenerator: Func<unknown, Expression>, udtTypeName: string): SqlServerUdtTypeMapping;
388
551
  };
389
552
 
390
553
 
391
554
  export type SqlServerUdtTypeMapping = SqlServerUdtTypeMapping$instance;
392
555
 
393
- export interface SqlServerVectorTypeMapping$instance extends RelationalTypeMapping {
556
+ export abstract class SqlServerVectorTypeMapping$protected {
557
+ protected Clone(parameters: RelationalTypeMapping_RelationalTypeMappingParameters): RelationalTypeMapping;
558
+ protected GenerateNonNullSqlLiteral(value: unknown): string;
559
+ }
560
+
561
+
562
+ export interface SqlServerVectorTypeMapping$instance extends SqlServerVectorTypeMapping$protected, RelationalTypeMapping {
394
563
  }
395
564
 
396
565
 
397
566
  export const SqlServerVectorTypeMapping: {
398
567
  new(dimensions: Nullable<System_Internal.Int32>): SqlServerVectorTypeMapping;
568
+ new(parameters: RelationalTypeMapping_RelationalTypeMappingParameters): SqlServerVectorTypeMapping;
399
569
  readonly Default: SqlServerVectorTypeMapping;
400
570
  };
401
571
 
@@ -7,7 +7,7 @@ import * as Internal from './Microsoft.EntityFrameworkCore.SqlServer.Storage.Int
7
7
 
8
8
  // Cross-namespace type imports for constraints
9
9
  import type { ISqlServerSingletonOptions } from './Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal/internal/index.js';
10
- import type { DbTransaction } from '@tsonic/dotnet/System.Data.Common.js';
10
+ import type { DbConnection, DbParameter, DbTransaction } from '@tsonic/dotnet/System.Data.Common.js';
11
11
  import type { DbType, SqlDbType } from '@tsonic/dotnet/System.Data.js';
12
12
  import type { MemoryStream } from '@tsonic/dotnet/System.IO.js';
13
13
  import type { Boolean as ClrBoolean, Exception, Func, Guid, IAsyncDisposable, IDisposable, Int32, Nullable, Object as ClrObject, String as ClrString, TimeSpan, Type, Void } from '@tsonic/dotnet/System.js';
@@ -20,7 +20,7 @@ import type { ValueComparer } from '@tsonic/efcore/Microsoft.EntityFrameworkCore
20
20
  import type { IDiagnosticsLogger } from '@tsonic/efcore/Microsoft.EntityFrameworkCore.Diagnostics.js';
21
21
  import type { IInfrastructure, IResettableService } from '@tsonic/efcore/Microsoft.EntityFrameworkCore.Infrastructure.js';
22
22
  import type { DbContext, DbLoggerCategory$Database$Transaction } from '@tsonic/efcore/Microsoft.EntityFrameworkCore.js';
23
- import type { BoolTypeMapping, ByteArrayTypeMapping, ByteTypeMapping, DateOnlyTypeMapping, DateTimeOffsetTypeMapping, DateTimeTypeMapping, DecimalTypeMapping, DoubleTypeMapping, ExecutionResult, ExecutionStrategyDependencies, FloatTypeMapping, IDatabaseCreator, IDbContextTransaction, IDbContextTransactionManager, IExceptionDetector, IExecutionStrategy, IExecutionStrategyFactory, IRawSqlCommandBuilder, IRelationalConnection, IRelationalDatabaseCreator, IRelationalTransactionFactory, IRelationalTransactionManager, IRelationalTypeMappingSource, ISqlGenerationHelper, ITransactionEnlistmentManager, ITypeMappingSource, JsonTypeMapping, LongTypeMapping, RelationalConnection, RelationalConnectionDependencies, RelationalDatabaseCreator, RelationalDatabaseCreatorDependencies, RelationalExecutionStrategyFactory, RelationalSqlGenerationHelper, RelationalSqlGenerationHelperDependencies, RelationalTransaction, RelationalTransactionFactoryDependencies, RelationalTypeMapping, RelationalTypeMappingSource, RelationalTypeMappingSourceDependencies, ShortTypeMapping, StoreTypePostfix, StringTypeMapping, TimeOnlyTypeMapping, TimeSpanTypeMapping, TypeMappingSourceDependencies } from '@tsonic/efcore/Microsoft.EntityFrameworkCore.Storage.js';
23
+ import type { BoolTypeMapping, ByteArrayTypeMapping, ByteTypeMapping, CoreTypeMapping, DateOnlyTypeMapping, DateTimeOffsetTypeMapping, DateTimeTypeMapping, DecimalTypeMapping, DoubleTypeMapping, ExecutionResult, ExecutionStrategyDependencies, FloatTypeMapping, IDatabaseCreator, IDbContextTransaction, IDbContextTransactionManager, IExceptionDetector, IExecutionStrategy, IExecutionStrategyFactory, IRawSqlCommandBuilder, IRelationalConnection, IRelationalDatabaseCreator, IRelationalTransactionFactory, IRelationalTransactionManager, IRelationalTypeMappingSource, ISqlGenerationHelper, ITransactionEnlistmentManager, ITypeMappingSource, JsonTypeMapping, LongTypeMapping, RelationalConnection, RelationalConnectionDependencies, RelationalDatabaseCreator, RelationalDatabaseCreatorDependencies, RelationalExecutionStrategyFactory, RelationalSqlGenerationHelper, RelationalSqlGenerationHelperDependencies, RelationalTransaction, RelationalTransactionFactoryDependencies, RelationalTypeMapping, RelationalTypeMappingInfo, RelationalTypeMappingSource, RelationalTypeMappingSourceDependencies, ShortTypeMapping, StoreTypePostfix, StringTypeMapping, TimeOnlyTypeMapping, TimeSpanTypeMapping, TypeMappingSourceDependencies } from '@tsonic/efcore/Microsoft.EntityFrameworkCore.Storage.js';
24
24
  import type { ValueConverter } from '@tsonic/efcore/Microsoft.EntityFrameworkCore.Storage.ValueConversion.js';
25
25
 
26
26
  // Public API exports (curated - no internal $instance/$views leakage)