@tsonic/efcore-sqlite 10.0.1 → 10.0.3
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.
- package/Microsoft.Data.Sqlite/bindings.json +948 -1
- package/Microsoft.Data.Sqlite/internal/index.d.ts +31 -11
- package/Microsoft.DotNet.PlatformAbstractions/bindings.json +10 -0
- package/Microsoft.EntityFrameworkCore/bindings.json +113 -0
- package/Microsoft.EntityFrameworkCore.Diagnostics/bindings.json +31 -0
- package/Microsoft.EntityFrameworkCore.Infrastructure/bindings.json +21 -0
- package/Microsoft.EntityFrameworkCore.Metadata/bindings.json +25 -0
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions/bindings.json +197 -2
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions/internal/index.d.ts +10 -2
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.d.ts +3 -2
- package/Microsoft.EntityFrameworkCore.Migrations/bindings.json +557 -0
- package/Microsoft.EntityFrameworkCore.Migrations/internal/index.d.ts +30 -3
- package/Microsoft.EntityFrameworkCore.Migrations.d.ts +3 -3
- package/Microsoft.EntityFrameworkCore.Sqlite.Design.Internal/bindings.json +52 -0
- package/Microsoft.EntityFrameworkCore.Sqlite.Design.Internal/internal/index.d.ts +2 -1
- package/Microsoft.EntityFrameworkCore.Sqlite.Design.Internal.d.ts +1 -1
- package/Microsoft.EntityFrameworkCore.Sqlite.Diagnostics.Internal/bindings.json +37 -0
- package/Microsoft.EntityFrameworkCore.Sqlite.Infrastructure.Internal/bindings.json +190 -0
- package/Microsoft.EntityFrameworkCore.Sqlite.Infrastructure.Internal/internal/index.d.ts +13 -2
- package/Microsoft.EntityFrameworkCore.Sqlite.Infrastructure.Internal.d.ts +3 -2
- package/Microsoft.EntityFrameworkCore.Sqlite.Internal/bindings.json +62 -0
- package/Microsoft.EntityFrameworkCore.Sqlite.Metadata.Internal/bindings.json +26 -0
- package/Microsoft.EntityFrameworkCore.Sqlite.Migrations.Internal/bindings.json +98 -0
- package/Microsoft.EntityFrameworkCore.Sqlite.Migrations.Internal/internal/index.d.ts +4 -1
- package/Microsoft.EntityFrameworkCore.Sqlite.Migrations.Internal.d.ts +1 -1
- package/Microsoft.EntityFrameworkCore.Sqlite.Query.Internal/bindings.json +1541 -79
- package/Microsoft.EntityFrameworkCore.Sqlite.Query.Internal/internal/index.d.ts +55 -4
- package/Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.d.ts +5 -4
- package/Microsoft.EntityFrameworkCore.Sqlite.Scaffolding.Internal/bindings.json +45 -0
- package/Microsoft.EntityFrameworkCore.Sqlite.Scaffolding.Internal/internal/index.d.ts +3 -2
- package/Microsoft.EntityFrameworkCore.Sqlite.Scaffolding.Internal.d.ts +2 -2
- package/Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal/bindings.json +749 -9
- package/Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal/internal/index.d.ts +28 -2
- package/Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.d.ts +3 -2
- package/Microsoft.EntityFrameworkCore.Sqlite.Storage.Json.Internal/bindings.json +55 -0
- package/Microsoft.EntityFrameworkCore.Sqlite.Storage.Json.Internal/internal/index.d.ts +0 -5
- package/Microsoft.EntityFrameworkCore.Sqlite.Update.Internal/bindings.json +194 -2
- package/Microsoft.EntityFrameworkCore.Sqlite.Update.Internal/internal/index.d.ts +9 -2
- package/Microsoft.EntityFrameworkCore.Sqlite.Update.Internal.d.ts +3 -2
- package/Microsoft.Extensions.DependencyInjection/bindings.json +6 -0
- package/Microsoft.Extensions.DependencyModel/bindings.json +213 -0
- package/Microsoft.Extensions.DependencyModel/internal/index.d.ts +4 -3
- package/Microsoft.Extensions.DependencyModel.Resolution/bindings.json +63 -0
- package/SQLitePCL/bindings.json +1398 -9
- package/SQLitePCL/internal/index.d.ts +10 -10
- package/System.Collections.Generic/bindings.json +10 -0
- package/package.json +1 -1
|
@@ -57,6 +57,7 @@ export interface SqliteBlob$instance extends Stream {
|
|
|
57
57
|
readonly CanWrite: boolean;
|
|
58
58
|
readonly Length: long;
|
|
59
59
|
Position: long;
|
|
60
|
+
Dispose(disposing: boolean): void;
|
|
60
61
|
Flush(): void;
|
|
61
62
|
Read(buffer: byte[], offset: int, count: int): int;
|
|
62
63
|
Read(buffer: Span<System_Internal.Byte>): int;
|
|
@@ -80,14 +81,25 @@ export interface SqliteCommand$instance extends DbCommand {
|
|
|
80
81
|
CommandTimeout: int;
|
|
81
82
|
CommandType: CommandType;
|
|
82
83
|
get Connection(): SqliteConnection | undefined;
|
|
83
|
-
set Connection(value: SqliteConnection);
|
|
84
|
+
set Connection(value: SqliteConnection | undefined);
|
|
85
|
+
get DataReader(): SqliteDataReader | undefined;
|
|
86
|
+
set DataReader(value: SqliteDataReader | undefined);
|
|
87
|
+
get DbConnection(): DbConnection | undefined;
|
|
88
|
+
set DbConnection(value: DbConnection | undefined);
|
|
89
|
+
readonly DbParameterCollection: DbParameterCollection;
|
|
90
|
+
get DbTransaction(): DbTransaction | undefined;
|
|
91
|
+
set DbTransaction(value: DbTransaction | undefined);
|
|
84
92
|
DesignTimeVisible: boolean;
|
|
85
93
|
readonly Parameters: SqliteParameterCollection;
|
|
86
94
|
get Transaction(): SqliteTransaction | undefined;
|
|
87
|
-
set Transaction(value: SqliteTransaction);
|
|
95
|
+
set Transaction(value: SqliteTransaction | undefined);
|
|
88
96
|
UpdatedRowSource: UpdateRowSource;
|
|
89
97
|
Cancel(): void;
|
|
98
|
+
CreateDbParameter(): DbParameter;
|
|
90
99
|
CreateParameter(): SqliteParameter;
|
|
100
|
+
Dispose(disposing: boolean): void;
|
|
101
|
+
ExecuteDbDataReader(behavior: CommandBehavior): DbDataReader;
|
|
102
|
+
ExecuteDbDataReaderAsync(behavior: CommandBehavior, cancellationToken: CancellationToken): Task<DbDataReader>;
|
|
91
103
|
ExecuteNonQuery(): int;
|
|
92
104
|
ExecuteReader(): SqliteDataReader;
|
|
93
105
|
ExecuteReader(behavior: CommandBehavior): SqliteDataReader;
|
|
@@ -114,12 +126,16 @@ export interface SqliteConnection$instance extends DbConnection {
|
|
|
114
126
|
ConnectionString: string;
|
|
115
127
|
readonly Database: string;
|
|
116
128
|
readonly DataSource: string;
|
|
129
|
+
readonly DbProviderFactory: DbProviderFactory;
|
|
117
130
|
DefaultTimeout: int;
|
|
118
131
|
readonly Handle: sqlite3 | undefined;
|
|
119
132
|
readonly ServerVersion: string;
|
|
120
133
|
readonly State: ConnectionState;
|
|
134
|
+
get Transaction(): SqliteTransaction | undefined;
|
|
135
|
+
set Transaction(value: SqliteTransaction | undefined);
|
|
121
136
|
BackupDatabase(destination: SqliteConnection): void;
|
|
122
137
|
BackupDatabase(destination: SqliteConnection, destinationName: string, sourceName: string): void;
|
|
138
|
+
BeginDbTransaction(isolationLevel: IsolationLevel): DbTransaction;
|
|
123
139
|
BeginTransaction(): SqliteTransaction;
|
|
124
140
|
BeginTransaction(deferred: boolean): SqliteTransaction;
|
|
125
141
|
BeginTransaction(isolationLevel: IsolationLevel): SqliteTransaction;
|
|
@@ -177,6 +193,7 @@ export interface SqliteConnection$instance extends DbConnection {
|
|
|
177
193
|
CreateCollation(name: string, comparison: Comparison<System_Internal.String>): void;
|
|
178
194
|
CreateCollation<T>(name: string, state: T, comparison: Func<T, System_Internal.String, System_Internal.String, System_Internal.Int32>): void;
|
|
179
195
|
CreateCommand(): SqliteCommand;
|
|
196
|
+
CreateDbCommand(): DbCommand;
|
|
180
197
|
CreateFunction<TResult>(name: string, function_: Func<TResult>, isDeterministic?: boolean): void;
|
|
181
198
|
CreateFunction<T1, TResult>(name: string, function_: Func<T1, TResult>, isDeterministic?: boolean): void;
|
|
182
199
|
CreateFunction<T1, T2, TResult>(name: string, function_: Func<T1, T2, TResult>, isDeterministic?: boolean): void;
|
|
@@ -210,6 +227,7 @@ export interface SqliteConnection$instance extends DbConnection {
|
|
|
210
227
|
CreateFunction<TState, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, TResult>(name: string, state: TState, function_: Func<TState, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, TResult>, isDeterministic?: boolean): void;
|
|
211
228
|
CreateFunction<TState, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, TResult>(name: string, state: TState, function_: Func<TState, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, TResult>, isDeterministic?: boolean): void;
|
|
212
229
|
CreateFunction<TState, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, TResult>(name: string, state: TState, function_: Func<TState, T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, T12, T13, T14, T15, TResult>, isDeterministic?: boolean): void;
|
|
230
|
+
Dispose(disposing: boolean): void;
|
|
213
231
|
EnableExtensions(enable?: boolean): void;
|
|
214
232
|
GetSchema(): DataTable;
|
|
215
233
|
GetSchema(collectionName: string): DataTable;
|
|
@@ -234,8 +252,7 @@ export interface SqliteConnectionStringBuilder$instance extends DbConnectionStri
|
|
|
234
252
|
DataSource: string;
|
|
235
253
|
DefaultTimeout: int;
|
|
236
254
|
ForeignKeys: Nullable<System_Internal.Boolean>;
|
|
237
|
-
|
|
238
|
-
set Item(value: unknown);
|
|
255
|
+
[keyword: string]: unknown | undefined;
|
|
239
256
|
readonly Keys: ICollection;
|
|
240
257
|
Mode: SqliteOpenMode;
|
|
241
258
|
Password: string;
|
|
@@ -243,7 +260,7 @@ export interface SqliteConnectionStringBuilder$instance extends DbConnectionStri
|
|
|
243
260
|
RecursiveTriggers: boolean;
|
|
244
261
|
readonly Values: ICollection;
|
|
245
262
|
get Vfs(): string | undefined;
|
|
246
|
-
set Vfs(value: string);
|
|
263
|
+
set Vfs(value: string | undefined);
|
|
247
264
|
Clear(): void;
|
|
248
265
|
ContainsKey(keyword: string): boolean;
|
|
249
266
|
Remove(keyword: string): boolean;
|
|
@@ -268,6 +285,7 @@ export interface SqliteDataReader$instance extends DbDataReader {
|
|
|
268
285
|
readonly IsClosed: boolean;
|
|
269
286
|
readonly RecordsAffected: int;
|
|
270
287
|
Close(): void;
|
|
288
|
+
Dispose(disposing: boolean): void;
|
|
271
289
|
get_Item(name: string): unknown;
|
|
272
290
|
get_Item(ordinal: int): unknown;
|
|
273
291
|
GetBoolean(ordinal: int): boolean;
|
|
@@ -304,7 +322,6 @@ export interface SqliteDataReader$instance extends DbDataReader {
|
|
|
304
322
|
|
|
305
323
|
|
|
306
324
|
export const SqliteDataReader: {
|
|
307
|
-
new(): SqliteDataReader;
|
|
308
325
|
};
|
|
309
326
|
|
|
310
327
|
|
|
@@ -334,7 +351,6 @@ export interface SqliteFactory$instance extends DbProviderFactory {
|
|
|
334
351
|
|
|
335
352
|
|
|
336
353
|
export const SqliteFactory: {
|
|
337
|
-
new(): SqliteFactory;
|
|
338
354
|
readonly Instance: SqliteFactory;
|
|
339
355
|
};
|
|
340
356
|
|
|
@@ -351,7 +367,7 @@ export interface SqliteParameter$instance extends DbParameter {
|
|
|
351
367
|
SourceColumnNullMapping: boolean;
|
|
352
368
|
SqliteType: SqliteType;
|
|
353
369
|
get Value(): unknown | undefined;
|
|
354
|
-
set Value(value: unknown);
|
|
370
|
+
set Value(value: unknown | undefined);
|
|
355
371
|
ResetDbType(): void;
|
|
356
372
|
ResetSqliteType(): void;
|
|
357
373
|
}
|
|
@@ -388,6 +404,8 @@ export interface SqliteParameterCollection$instance extends DbParameterCollectio
|
|
|
388
404
|
get_Item(index: int): SqliteParameter;
|
|
389
405
|
get_Item(parameterName: string): SqliteParameter;
|
|
390
406
|
GetEnumerator(): IEnumerator;
|
|
407
|
+
GetParameter(index: int): DbParameter;
|
|
408
|
+
GetParameter(parameterName: string): DbParameter;
|
|
391
409
|
IndexOf(value: unknown): int;
|
|
392
410
|
IndexOf(value: SqliteParameter): int;
|
|
393
411
|
IndexOf(parameterName: string): int;
|
|
@@ -399,11 +417,12 @@ export interface SqliteParameterCollection$instance extends DbParameterCollectio
|
|
|
399
417
|
RemoveAt(parameterName: string): void;
|
|
400
418
|
set_Item(index: int, value: SqliteParameter): void;
|
|
401
419
|
set_Item(parameterName: string, value: SqliteParameter): void;
|
|
420
|
+
SetParameter(index: int, value: DbParameter): void;
|
|
421
|
+
SetParameter(parameterName: string, value: DbParameter): void;
|
|
402
422
|
}
|
|
403
423
|
|
|
404
424
|
|
|
405
|
-
export const SqliteParameterCollection: {
|
|
406
|
-
new(): SqliteParameterCollection;
|
|
425
|
+
export const SqliteParameterCollection: (abstract new() => SqliteParameterCollection) & {
|
|
407
426
|
};
|
|
408
427
|
|
|
409
428
|
|
|
@@ -411,9 +430,11 @@ export type SqliteParameterCollection = SqliteParameterCollection$instance;
|
|
|
411
430
|
|
|
412
431
|
export interface SqliteTransaction$instance extends DbTransaction {
|
|
413
432
|
readonly Connection: SqliteConnection | undefined;
|
|
433
|
+
readonly DbConnection: DbConnection | undefined;
|
|
414
434
|
readonly IsolationLevel: IsolationLevel;
|
|
415
435
|
readonly SupportsSavepoints: boolean;
|
|
416
436
|
Commit(): void;
|
|
437
|
+
Dispose(disposing: boolean): void;
|
|
417
438
|
Release(savepointName: string): void;
|
|
418
439
|
Rollback(): void;
|
|
419
440
|
Rollback(savepointName: string): void;
|
|
@@ -422,7 +443,6 @@ export interface SqliteTransaction$instance extends DbTransaction {
|
|
|
422
443
|
|
|
423
444
|
|
|
424
445
|
export const SqliteTransaction: {
|
|
425
|
-
new(): SqliteTransaction;
|
|
426
446
|
};
|
|
427
447
|
|
|
428
448
|
|
|
@@ -15,6 +15,10 @@
|
|
|
15
15
|
"isSealed": true,
|
|
16
16
|
"isStatic": false,
|
|
17
17
|
"arity": 0,
|
|
18
|
+
"baseType": {
|
|
19
|
+
"stableId": "System.Private.CoreLib:System.ValueType",
|
|
20
|
+
"clrName": "System.ValueType"
|
|
21
|
+
},
|
|
18
22
|
"methods": [
|
|
19
23
|
{
|
|
20
24
|
"stableId": "Microsoft.Extensions.DependencyModel:Microsoft.DotNet.PlatformAbstractions.HashCodeCombiner::Add(System.Int32):System.Void",
|
|
@@ -31,6 +35,7 @@
|
|
|
31
35
|
"isVirtual": false,
|
|
32
36
|
"isOverride": false,
|
|
33
37
|
"isSealed": false,
|
|
38
|
+
"visibility": "Public",
|
|
34
39
|
"declaringClrType": "Microsoft.DotNet.PlatformAbstractions.HashCodeCombiner",
|
|
35
40
|
"declaringAssemblyName": "Microsoft.Extensions.DependencyModel",
|
|
36
41
|
"isExtensionMethod": false
|
|
@@ -50,6 +55,7 @@
|
|
|
50
55
|
"isVirtual": false,
|
|
51
56
|
"isOverride": false,
|
|
52
57
|
"isSealed": false,
|
|
58
|
+
"visibility": "Public",
|
|
53
59
|
"declaringClrType": "Microsoft.DotNet.PlatformAbstractions.HashCodeCombiner",
|
|
54
60
|
"declaringAssemblyName": "Microsoft.Extensions.DependencyModel",
|
|
55
61
|
"isExtensionMethod": false
|
|
@@ -69,6 +75,7 @@
|
|
|
69
75
|
"isVirtual": false,
|
|
70
76
|
"isOverride": false,
|
|
71
77
|
"isSealed": false,
|
|
78
|
+
"visibility": "Public",
|
|
72
79
|
"declaringClrType": "Microsoft.DotNet.PlatformAbstractions.HashCodeCombiner",
|
|
73
80
|
"declaringAssemblyName": "Microsoft.Extensions.DependencyModel",
|
|
74
81
|
"isExtensionMethod": false
|
|
@@ -88,6 +95,7 @@
|
|
|
88
95
|
"isVirtual": false,
|
|
89
96
|
"isOverride": false,
|
|
90
97
|
"isSealed": false,
|
|
98
|
+
"visibility": "Public",
|
|
91
99
|
"declaringClrType": "Microsoft.DotNet.PlatformAbstractions.HashCodeCombiner",
|
|
92
100
|
"declaringAssemblyName": "Microsoft.Extensions.DependencyModel",
|
|
93
101
|
"isExtensionMethod": false
|
|
@@ -107,6 +115,7 @@
|
|
|
107
115
|
"isVirtual": false,
|
|
108
116
|
"isOverride": false,
|
|
109
117
|
"isSealed": false,
|
|
118
|
+
"visibility": "Public",
|
|
110
119
|
"declaringClrType": "Microsoft.DotNet.PlatformAbstractions.HashCodeCombiner",
|
|
111
120
|
"declaringAssemblyName": "Microsoft.Extensions.DependencyModel",
|
|
112
121
|
"isExtensionMethod": false
|
|
@@ -128,6 +137,7 @@
|
|
|
128
137
|
"isAbstract": false,
|
|
129
138
|
"isVirtual": false,
|
|
130
139
|
"isOverride": false,
|
|
140
|
+
"visibility": "Public",
|
|
131
141
|
"declaringClrType": "Microsoft.DotNet.PlatformAbstractions.HashCodeCombiner",
|
|
132
142
|
"declaringAssemblyName": "Microsoft.Extensions.DependencyModel"
|
|
133
143
|
}
|