@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
@@ -203,6 +203,7 @@ export interface SqlAuthenticationInitializer$instance {
203
203
 
204
204
 
205
205
  export const SqlAuthenticationInitializer: {
206
+ new(): SqlAuthenticationInitializer;
206
207
  };
207
208
 
208
209
 
@@ -222,7 +223,7 @@ export interface SqlAuthenticationParameters$instance {
222
223
 
223
224
 
224
225
  export const SqlAuthenticationParameters: {
225
- new(): SqlAuthenticationParameters;
226
+ new(authenticationMethod: SqlAuthenticationMethod, serverName: string, databaseName: string, resource: string, authority: string, userId: string, password: string, connectionId: Guid, connectionTimeout: int): SqlAuthenticationParameters;
226
227
  };
227
228
 
228
229
 
@@ -237,6 +238,7 @@ export interface SqlAuthenticationProvider$instance {
237
238
 
238
239
 
239
240
  export const SqlAuthenticationProvider: {
241
+ new(): SqlAuthenticationProvider;
240
242
  GetProvider(authenticationMethod: SqlAuthenticationMethod): SqlAuthenticationProvider;
241
243
  SetProvider(authenticationMethod: SqlAuthenticationMethod, provider: SqlAuthenticationProvider): boolean;
242
244
  };
@@ -257,7 +259,17 @@ export const SqlAuthenticationToken: {
257
259
 
258
260
  export type SqlAuthenticationToken = SqlAuthenticationToken$instance;
259
261
 
260
- export interface SqlBatch$instance extends DbBatch {
262
+ export abstract class SqlBatch$protected {
263
+ protected readonly DbBatchCommands: DbBatchCommandCollection;
264
+ protected DbConnection: DbConnection;
265
+ protected DbTransaction: DbTransaction;
266
+ protected CreateDbBatchCommand(): DbBatchCommand;
267
+ protected ExecuteDbDataReader(behavior: CommandBehavior): DbDataReader;
268
+ protected ExecuteDbDataReaderAsync(behavior: CommandBehavior, cancellationToken: CancellationToken): Task<DbDataReader>;
269
+ }
270
+
271
+
272
+ export interface SqlBatch$instance extends SqlBatch$protected, DbBatch {
261
273
  readonly BatchCommands: SqlBatchCommandCollection;
262
274
  readonly Commands: List<SqlBatchCommand>;
263
275
  Connection: SqlConnection;
@@ -284,7 +296,12 @@ export const SqlBatch: {
284
296
 
285
297
  export type SqlBatch = SqlBatch$instance;
286
298
 
287
- export interface SqlBatchCommand$instance extends DbBatchCommand {
299
+ export abstract class SqlBatchCommand$protected {
300
+ protected readonly DbParameterCollection: DbParameterCollection;
301
+ }
302
+
303
+
304
+ export interface SqlBatchCommand$instance extends SqlBatchCommand$protected, DbBatchCommand {
288
305
  ColumnEncryptionSetting: SqlCommandColumnEncryptionSetting;
289
306
  CommandBehavior: CommandBehavior;
290
307
  CommandText: string;
@@ -302,7 +319,13 @@ export const SqlBatchCommand: {
302
319
 
303
320
  export type SqlBatchCommand = SqlBatchCommand$instance;
304
321
 
305
- export interface SqlBatchCommandCollection$instance extends DbBatchCommandCollection {
322
+ export abstract class SqlBatchCommandCollection$protected {
323
+ protected GetBatchCommand(index: int): DbBatchCommand;
324
+ protected SetBatchCommand(index: int, batchCommand: DbBatchCommand): void;
325
+ }
326
+
327
+
328
+ export interface SqlBatchCommandCollection$instance extends SqlBatchCommandCollection$protected, DbBatchCommandCollection {
306
329
  readonly Count: int;
307
330
  readonly IsReadOnly: boolean;
308
331
  Item: SqlBatchCommand;
@@ -543,12 +566,24 @@ export interface SqlColumnEncryptionKeyStoreProvider$instance {
543
566
 
544
567
 
545
568
  export const SqlColumnEncryptionKeyStoreProvider: {
569
+ new(): SqlColumnEncryptionKeyStoreProvider;
546
570
  };
547
571
 
548
572
 
549
573
  export type SqlColumnEncryptionKeyStoreProvider = SqlColumnEncryptionKeyStoreProvider$instance;
550
574
 
551
- export interface SqlCommand$instance extends DbCommand {
575
+ export abstract class SqlCommand$protected {
576
+ protected DbConnection: DbConnection;
577
+ protected readonly DbParameterCollection: DbParameterCollection;
578
+ protected DbTransaction: DbTransaction;
579
+ protected CreateDbParameter(): DbParameter;
580
+ protected Dispose(disposing: boolean): void;
581
+ protected ExecuteDbDataReader(behavior: CommandBehavior): DbDataReader;
582
+ protected ExecuteDbDataReaderAsync(behavior: CommandBehavior, cancellationToken: CancellationToken): Task<DbDataReader>;
583
+ }
584
+
585
+
586
+ export interface SqlCommand$instance extends SqlCommand$protected, DbCommand {
552
587
  readonly ColumnEncryptionSetting: SqlCommandColumnEncryptionSetting;
553
588
  CommandText: string;
554
589
  CommandTimeout: int;
@@ -605,7 +640,18 @@ export const SqlCommand: {
605
640
 
606
641
  export type SqlCommand = SqlCommand$instance;
607
642
 
608
- export interface SqlCommandBuilder$instance extends DbCommandBuilder {
643
+ export abstract class SqlCommandBuilder$protected {
644
+ protected ApplyParameterInfo(parameter: DbParameter, datarow: DataRow, statementType: StatementType, whereClause: boolean): void;
645
+ protected GetParameterName(parameterOrdinal: int): string;
646
+ protected GetParameterName(parameterName: string): string;
647
+ protected GetParameterPlaceholder(parameterOrdinal: int): string;
648
+ protected GetSchemaTable(srcCommand: DbCommand): DataTable;
649
+ protected InitializeCommand(command: DbCommand): DbCommand;
650
+ protected SetRowUpdatingHandler(adapter: DbDataAdapter): void;
651
+ }
652
+
653
+
654
+ export interface SqlCommandBuilder$instance extends SqlCommandBuilder$protected, DbCommandBuilder {
609
655
  CatalogLocation: CatalogLocation;
610
656
  CatalogSeparator: string;
611
657
  DataAdapter: SqlDataAdapter;
@@ -647,7 +693,15 @@ export const SqlConfigurableRetryFactory: {
647
693
 
648
694
  export type SqlConfigurableRetryFactory = SqlConfigurableRetryFactory$instance;
649
695
 
650
- export interface SqlConnection$instance extends DbConnection {
696
+ export abstract class SqlConnection$protected {
697
+ protected BeginDbTransaction(isolationLevel: IsolationLevel): DbTransaction;
698
+ protected CreateDbBatch(): DbBatch;
699
+ protected CreateDbCommand(): DbCommand;
700
+ protected Dispose(disposing: boolean): void;
701
+ }
702
+
703
+
704
+ export interface SqlConnection$instance extends SqlConnection$protected, DbConnection {
651
705
  AccessToken: string;
652
706
  AccessTokenCallback: Func<SqlAuthenticationParameters, CancellationToken, Task<SqlAuthenticationToken>>;
653
707
  readonly CanCreateBatch: boolean;
@@ -798,7 +852,13 @@ export const SqlCredential: {
798
852
 
799
853
  export type SqlCredential = SqlCredential$instance;
800
854
 
801
- export interface SqlDataAdapter$instance extends DbDataAdapter {
855
+ export abstract class SqlDataAdapter$protected {
856
+ protected OnRowUpdated(value: RowUpdatedEventArgs): void;
857
+ protected OnRowUpdating(value: RowUpdatingEventArgs): void;
858
+ }
859
+
860
+
861
+ export interface SqlDataAdapter$instance extends SqlDataAdapter$protected, DbDataAdapter {
802
862
  DeleteCommand: SqlCommand;
803
863
  InsertCommand: SqlCommand;
804
864
  SelectCommand: SqlCommand;
@@ -953,7 +1013,12 @@ export const SqlErrorCollection: {
953
1013
 
954
1014
  export type SqlErrorCollection = SqlErrorCollection$instance;
955
1015
 
956
- export interface SqlException$instance extends DbException {
1016
+ export abstract class SqlException$protected {
1017
+ protected readonly DbBatchCommand: DbBatchCommand;
1018
+ }
1019
+
1020
+
1021
+ export interface SqlException$instance extends SqlException$protected, DbException {
957
1022
  readonly BatchCommand: SqlBatchCommand;
958
1023
  readonly Class: byte;
959
1024
  readonly ClientConnectionId: Guid;
@@ -1047,7 +1112,15 @@ export const SqlParameter: {
1047
1112
 
1048
1113
  export type SqlParameter = SqlParameter$instance;
1049
1114
 
1050
- export interface SqlParameterCollection$instance extends DbParameterCollection {
1115
+ export abstract class SqlParameterCollection$protected {
1116
+ protected GetParameter(index: int): DbParameter;
1117
+ protected GetParameter(parameterName: string): DbParameter;
1118
+ protected SetParameter(index: int, value: DbParameter): void;
1119
+ protected SetParameter(parameterName: string, value: DbParameter): void;
1120
+ }
1121
+
1122
+
1123
+ export interface SqlParameterCollection$instance extends SqlParameterCollection$protected, DbParameterCollection {
1051
1124
  readonly Count: int;
1052
1125
  readonly IsFixedSize: boolean;
1053
1126
  readonly IsReadOnly: boolean;
@@ -1105,11 +1178,17 @@ export const SqlRetryingEventArgs: {
1105
1178
 
1106
1179
  export type SqlRetryingEventArgs = SqlRetryingEventArgs$instance;
1107
1180
 
1108
- export interface SqlRetryIntervalBaseEnumerator$instance {
1109
- readonly Current: TimeSpan;
1110
- readonly GapTimeInterval: TimeSpan;
1111
- readonly MaxTimeInterval: TimeSpan;
1112
- readonly MinTimeInterval: TimeSpan;
1181
+ export abstract class SqlRetryIntervalBaseEnumerator$protected {
1182
+ protected abstract GetNextInterval(): TimeSpan;
1183
+ protected Validate(timeInterval: TimeSpan, maxTimeInterval: TimeSpan, minTimeInterval: TimeSpan): void;
1184
+ }
1185
+
1186
+
1187
+ export interface SqlRetryIntervalBaseEnumerator$instance extends SqlRetryIntervalBaseEnumerator$protected {
1188
+ Current: TimeSpan;
1189
+ GapTimeInterval: TimeSpan;
1190
+ MaxTimeInterval: TimeSpan;
1191
+ MinTimeInterval: TimeSpan;
1113
1192
  Clone(): unknown;
1114
1193
  Dispose(): void;
1115
1194
  MoveNext(): boolean;
@@ -1126,10 +1205,10 @@ export const SqlRetryIntervalBaseEnumerator: {
1126
1205
  export type SqlRetryIntervalBaseEnumerator = SqlRetryIntervalBaseEnumerator$instance;
1127
1206
 
1128
1207
  export interface SqlRetryLogicBase$instance {
1129
- readonly Current: int;
1130
- readonly NumberOfTries: int;
1131
- readonly RetryIntervalEnumerator: SqlRetryIntervalBaseEnumerator;
1132
- readonly TransientPredicate: Predicate<Exception>;
1208
+ Current: int;
1209
+ NumberOfTries: int;
1210
+ RetryIntervalEnumerator: SqlRetryIntervalBaseEnumerator;
1211
+ TransientPredicate: Predicate<Exception>;
1133
1212
  Clone(): unknown;
1134
1213
  Reset(): void;
1135
1214
  RetryCondition(sender: unknown): boolean;
@@ -1138,6 +1217,7 @@ export interface SqlRetryLogicBase$instance {
1138
1217
 
1139
1218
 
1140
1219
  export const SqlRetryLogicBase: {
1220
+ new(): SqlRetryLogicBase;
1141
1221
  };
1142
1222
 
1143
1223
 
@@ -1145,7 +1225,7 @@ export type SqlRetryLogicBase = SqlRetryLogicBase$instance;
1145
1225
 
1146
1226
  export interface SqlRetryLogicBaseProvider$instance {
1147
1227
  Retrying: EventHandler<SqlRetryingEventArgs>;
1148
- readonly RetryLogic: SqlRetryLogicBase;
1228
+ RetryLogic: SqlRetryLogicBase;
1149
1229
  Execute<TResult>(sender: unknown, function_: Func<TResult>): TResult;
1150
1230
  ExecuteAsync(sender: unknown, function_: Func<Task>, cancellationToken?: CancellationToken): Task;
1151
1231
  ExecuteAsync<TResult>(sender: unknown, function_: Func<Task<TResult>>, cancellationToken?: CancellationToken): Task<TResult>;
@@ -1153,6 +1233,7 @@ export interface SqlRetryLogicBaseProvider$instance {
1153
1233
 
1154
1234
 
1155
1235
  export const SqlRetryLogicBaseProvider: {
1236
+ new(): SqlRetryLogicBaseProvider;
1156
1237
  };
1157
1238
 
1158
1239
 
@@ -1200,7 +1281,12 @@ export const SqlRowUpdatedEventArgs: {
1200
1281
 
1201
1282
  export type SqlRowUpdatedEventArgs = SqlRowUpdatedEventArgs$instance;
1202
1283
 
1203
- export interface SqlRowUpdatingEventArgs$instance extends RowUpdatingEventArgs {
1284
+ export abstract class SqlRowUpdatingEventArgs$protected {
1285
+ protected BaseCommand: IDbCommand;
1286
+ }
1287
+
1288
+
1289
+ export interface SqlRowUpdatingEventArgs$instance extends SqlRowUpdatingEventArgs$protected, RowUpdatingEventArgs {
1204
1290
  Command: SqlCommand;
1205
1291
  }
1206
1292
 
@@ -1212,7 +1298,13 @@ export const SqlRowUpdatingEventArgs: {
1212
1298
 
1213
1299
  export type SqlRowUpdatingEventArgs = SqlRowUpdatingEventArgs$instance;
1214
1300
 
1215
- export interface SqlTransaction$instance extends DbTransaction {
1301
+ export abstract class SqlTransaction$protected {
1302
+ protected readonly DbConnection: DbConnection;
1303
+ protected Dispose(disposing: boolean): void;
1304
+ }
1305
+
1306
+
1307
+ export interface SqlTransaction$instance extends SqlTransaction$protected, DbTransaction {
1216
1308
  readonly Connection: SqlConnection;
1217
1309
  readonly IsolationLevel: IsolationLevel;
1218
1310
  Commit(): void;
@@ -15,6 +15,28 @@
15
15
  "isSealed": true,
16
16
  "isStatic": false,
17
17
  "arity": 0,
18
+ "baseType": {
19
+ "stableId": "System.Private.CoreLib:System.Enum",
20
+ "clrName": "System.Enum"
21
+ },
22
+ "interfaces": [
23
+ {
24
+ "stableId": "System.Private.CoreLib:System.IComparable",
25
+ "clrName": "System.IComparable"
26
+ },
27
+ {
28
+ "stableId": "System.Private.CoreLib:System.ISpanFormattable",
29
+ "clrName": "System.ISpanFormattable"
30
+ },
31
+ {
32
+ "stableId": "System.Private.CoreLib:System.IFormattable",
33
+ "clrName": "System.IFormattable"
34
+ },
35
+ {
36
+ "stableId": "System.Private.CoreLib:System.IConvertible",
37
+ "clrName": "System.IConvertible"
38
+ }
39
+ ],
18
40
  "methods": [],
19
41
  "properties": [],
20
42
  "fields": [
@@ -26,6 +48,7 @@
26
48
  "isStatic": false,
27
49
  "isReadOnly": false,
28
50
  "isLiteral": false,
51
+ "visibility": "Public",
29
52
  "declaringClrType": "Microsoft.Data.SqlClient.DataClassification.SensitivityRank",
30
53
  "declaringAssemblyName": "Microsoft.Data.SqlClient"
31
54
  },
@@ -37,6 +60,7 @@
37
60
  "isStatic": true,
38
61
  "isReadOnly": false,
39
62
  "isLiteral": true,
63
+ "visibility": "Public",
40
64
  "declaringClrType": "Microsoft.Data.SqlClient.DataClassification.SensitivityRank",
41
65
  "declaringAssemblyName": "Microsoft.Data.SqlClient"
42
66
  },
@@ -48,6 +72,7 @@
48
72
  "isStatic": true,
49
73
  "isReadOnly": false,
50
74
  "isLiteral": true,
75
+ "visibility": "Public",
51
76
  "declaringClrType": "Microsoft.Data.SqlClient.DataClassification.SensitivityRank",
52
77
  "declaringAssemblyName": "Microsoft.Data.SqlClient"
53
78
  },
@@ -59,6 +84,7 @@
59
84
  "isStatic": true,
60
85
  "isReadOnly": false,
61
86
  "isLiteral": true,
87
+ "visibility": "Public",
62
88
  "declaringClrType": "Microsoft.Data.SqlClient.DataClassification.SensitivityRank",
63
89
  "declaringAssemblyName": "Microsoft.Data.SqlClient"
64
90
  },
@@ -70,6 +96,7 @@
70
96
  "isStatic": true,
71
97
  "isReadOnly": false,
72
98
  "isLiteral": true,
99
+ "visibility": "Public",
73
100
  "declaringClrType": "Microsoft.Data.SqlClient.DataClassification.SensitivityRank",
74
101
  "declaringAssemblyName": "Microsoft.Data.SqlClient"
75
102
  },
@@ -81,6 +108,7 @@
81
108
  "isStatic": true,
82
109
  "isReadOnly": false,
83
110
  "isLiteral": true,
111
+ "visibility": "Public",
84
112
  "declaringClrType": "Microsoft.Data.SqlClient.DataClassification.SensitivityRank",
85
113
  "declaringAssemblyName": "Microsoft.Data.SqlClient"
86
114
  },
@@ -92,6 +120,7 @@
92
120
  "isStatic": true,
93
121
  "isReadOnly": false,
94
122
  "isLiteral": true,
123
+ "visibility": "Public",
95
124
  "declaringClrType": "Microsoft.Data.SqlClient.DataClassification.SensitivityRank",
96
125
  "declaringAssemblyName": "Microsoft.Data.SqlClient"
97
126
  }
@@ -110,6 +139,10 @@
110
139
  "isSealed": false,
111
140
  "isStatic": false,
112
141
  "arity": 0,
142
+ "baseType": {
143
+ "stableId": "System.Private.CoreLib:System.Object",
144
+ "clrName": "System.Object"
145
+ },
113
146
  "methods": [],
114
147
  "properties": [
115
148
  {
@@ -127,6 +160,7 @@
127
160
  "isAbstract": false,
128
161
  "isVirtual": false,
129
162
  "isOverride": false,
163
+ "visibility": "Public",
130
164
  "declaringClrType": "Microsoft.Data.SqlClient.DataClassification.ColumnSensitivity",
131
165
  "declaringAssemblyName": "Microsoft.Data.SqlClient"
132
166
  }
@@ -141,6 +175,7 @@
141
175
  "normalizedSignature": "constructor|(System.Collections.Generic.IList_1[[Microsoft.Data.SqlClient.DataClassification.SensitivityProperty,Microsoft.Data.SqlClient,Version=6.0.0.0,Culture=neutral,PublicKeyToken=23ec7fc2d6eaa4a5]]):void|static=false",
142
176
  "isStatic": false,
143
177
  "parameterCount": 1,
178
+ "visibility": "Public",
144
179
  "declaringClrType": "Microsoft.Data.SqlClient.DataClassification.ColumnSensitivity",
145
180
  "declaringAssemblyName": "Microsoft.Data.SqlClient"
146
181
  }
@@ -157,6 +192,10 @@
157
192
  "isSealed": false,
158
193
  "isStatic": false,
159
194
  "arity": 0,
195
+ "baseType": {
196
+ "stableId": "System.Private.CoreLib:System.Object",
197
+ "clrName": "System.Object"
198
+ },
160
199
  "methods": [],
161
200
  "properties": [
162
201
  {
@@ -174,6 +213,7 @@
174
213
  "isAbstract": false,
175
214
  "isVirtual": false,
176
215
  "isOverride": false,
216
+ "visibility": "Public",
177
217
  "declaringClrType": "Microsoft.Data.SqlClient.DataClassification.InformationType",
178
218
  "declaringAssemblyName": "Microsoft.Data.SqlClient"
179
219
  },
@@ -192,6 +232,7 @@
192
232
  "isAbstract": false,
193
233
  "isVirtual": false,
194
234
  "isOverride": false,
235
+ "visibility": "Public",
195
236
  "declaringClrType": "Microsoft.Data.SqlClient.DataClassification.InformationType",
196
237
  "declaringAssemblyName": "Microsoft.Data.SqlClient"
197
238
  }
@@ -206,6 +247,7 @@
206
247
  "normalizedSignature": "constructor|(System.String,System.String):void|static=false",
207
248
  "isStatic": false,
208
249
  "parameterCount": 2,
250
+ "visibility": "Public",
209
251
  "declaringClrType": "Microsoft.Data.SqlClient.DataClassification.InformationType",
210
252
  "declaringAssemblyName": "Microsoft.Data.SqlClient"
211
253
  }
@@ -222,6 +264,10 @@
222
264
  "isSealed": false,
223
265
  "isStatic": false,
224
266
  "arity": 0,
267
+ "baseType": {
268
+ "stableId": "System.Private.CoreLib:System.Object",
269
+ "clrName": "System.Object"
270
+ },
225
271
  "methods": [],
226
272
  "properties": [
227
273
  {
@@ -239,6 +285,7 @@
239
285
  "isAbstract": false,
240
286
  "isVirtual": false,
241
287
  "isOverride": false,
288
+ "visibility": "Public",
242
289
  "declaringClrType": "Microsoft.Data.SqlClient.DataClassification.Label",
243
290
  "declaringAssemblyName": "Microsoft.Data.SqlClient"
244
291
  },
@@ -257,6 +304,7 @@
257
304
  "isAbstract": false,
258
305
  "isVirtual": false,
259
306
  "isOverride": false,
307
+ "visibility": "Public",
260
308
  "declaringClrType": "Microsoft.Data.SqlClient.DataClassification.Label",
261
309
  "declaringAssemblyName": "Microsoft.Data.SqlClient"
262
310
  }
@@ -271,6 +319,7 @@
271
319
  "normalizedSignature": "constructor|(System.String,System.String):void|static=false",
272
320
  "isStatic": false,
273
321
  "parameterCount": 2,
322
+ "visibility": "Public",
274
323
  "declaringClrType": "Microsoft.Data.SqlClient.DataClassification.Label",
275
324
  "declaringAssemblyName": "Microsoft.Data.SqlClient"
276
325
  }
@@ -287,6 +336,10 @@
287
336
  "isSealed": false,
288
337
  "isStatic": false,
289
338
  "arity": 0,
339
+ "baseType": {
340
+ "stableId": "System.Private.CoreLib:System.Object",
341
+ "clrName": "System.Object"
342
+ },
290
343
  "methods": [],
291
344
  "properties": [
292
345
  {
@@ -304,6 +357,7 @@
304
357
  "isAbstract": false,
305
358
  "isVirtual": false,
306
359
  "isOverride": false,
360
+ "visibility": "Public",
307
361
  "declaringClrType": "Microsoft.Data.SqlClient.DataClassification.SensitivityClassification",
308
362
  "declaringAssemblyName": "Microsoft.Data.SqlClient"
309
363
  },
@@ -322,6 +376,7 @@
322
376
  "isAbstract": false,
323
377
  "isVirtual": false,
324
378
  "isOverride": false,
379
+ "visibility": "Public",
325
380
  "declaringClrType": "Microsoft.Data.SqlClient.DataClassification.SensitivityClassification",
326
381
  "declaringAssemblyName": "Microsoft.Data.SqlClient"
327
382
  },
@@ -340,6 +395,7 @@
340
395
  "isAbstract": false,
341
396
  "isVirtual": false,
342
397
  "isOverride": false,
398
+ "visibility": "Public",
343
399
  "declaringClrType": "Microsoft.Data.SqlClient.DataClassification.SensitivityClassification",
344
400
  "declaringAssemblyName": "Microsoft.Data.SqlClient"
345
401
  },
@@ -358,6 +414,7 @@
358
414
  "isAbstract": false,
359
415
  "isVirtual": false,
360
416
  "isOverride": false,
417
+ "visibility": "Public",
361
418
  "declaringClrType": "Microsoft.Data.SqlClient.DataClassification.SensitivityClassification",
362
419
  "declaringAssemblyName": "Microsoft.Data.SqlClient"
363
420
  }
@@ -372,6 +429,7 @@
372
429
  "normalizedSignature": "constructor|(System.Collections.Generic.IList_1[[Microsoft.Data.SqlClient.DataClassification.Label,Microsoft.Data.SqlClient,Version=6.0.0.0,Culture=neutral,PublicKeyToken=23ec7fc2d6eaa4a5]],System.Collections.Generic.IList_1[[Microsoft.Data.SqlClient.DataClassification.InformationType,Microsoft.Data.SqlClient,Version=6.0.0.0,Culture=neutral,PublicKeyToken=23ec7fc2d6eaa4a5]],System.Collections.Generic.IList_1[[Microsoft.Data.SqlClient.DataClassification.ColumnSensitivity,Microsoft.Data.SqlClient,Version=6.0.0.0,Culture=neutral,PublicKeyToken=23ec7fc2d6eaa4a5]],Microsoft.Data.SqlClient.DataClassification.SensitivityRank):void|static=false",
373
430
  "isStatic": false,
374
431
  "parameterCount": 4,
432
+ "visibility": "Public",
375
433
  "declaringClrType": "Microsoft.Data.SqlClient.DataClassification.SensitivityClassification",
376
434
  "declaringAssemblyName": "Microsoft.Data.SqlClient"
377
435
  }
@@ -388,6 +446,10 @@
388
446
  "isSealed": false,
389
447
  "isStatic": false,
390
448
  "arity": 0,
449
+ "baseType": {
450
+ "stableId": "System.Private.CoreLib:System.Object",
451
+ "clrName": "System.Object"
452
+ },
391
453
  "methods": [],
392
454
  "properties": [
393
455
  {
@@ -405,6 +467,7 @@
405
467
  "isAbstract": false,
406
468
  "isVirtual": false,
407
469
  "isOverride": false,
470
+ "visibility": "Public",
408
471
  "declaringClrType": "Microsoft.Data.SqlClient.DataClassification.SensitivityProperty",
409
472
  "declaringAssemblyName": "Microsoft.Data.SqlClient"
410
473
  },
@@ -423,6 +486,7 @@
423
486
  "isAbstract": false,
424
487
  "isVirtual": false,
425
488
  "isOverride": false,
489
+ "visibility": "Public",
426
490
  "declaringClrType": "Microsoft.Data.SqlClient.DataClassification.SensitivityProperty",
427
491
  "declaringAssemblyName": "Microsoft.Data.SqlClient"
428
492
  },
@@ -441,6 +505,7 @@
441
505
  "isAbstract": false,
442
506
  "isVirtual": false,
443
507
  "isOverride": false,
508
+ "visibility": "Public",
444
509
  "declaringClrType": "Microsoft.Data.SqlClient.DataClassification.SensitivityProperty",
445
510
  "declaringAssemblyName": "Microsoft.Data.SqlClient"
446
511
  }
@@ -455,6 +520,7 @@
455
520
  "normalizedSignature": "constructor|(Microsoft.Data.SqlClient.DataClassification.Label,Microsoft.Data.SqlClient.DataClassification.InformationType,Microsoft.Data.SqlClient.DataClassification.SensitivityRank):void|static=false",
456
521
  "isStatic": false,
457
522
  "parameterCount": 3,
523
+ "visibility": "Public",
458
524
  "declaringClrType": "Microsoft.Data.SqlClient.DataClassification.SensitivityProperty",
459
525
  "declaringAssemblyName": "Microsoft.Data.SqlClient"
460
526
  }