@tsonic/efcore-sqlite 10.0.2 → 10.0.5

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 (24) hide show
  1. package/Microsoft.Data.Sqlite/internal/index.d.ts +69 -56
  2. package/Microsoft.EntityFrameworkCore.Infrastructure/internal/index.d.ts +2 -0
  3. package/Microsoft.EntityFrameworkCore.Metadata.Conventions/internal/index.d.ts +27 -21
  4. package/Microsoft.EntityFrameworkCore.Migrations/internal/index.d.ts +29 -31
  5. package/Microsoft.EntityFrameworkCore.Migrations.d.ts +3 -0
  6. package/Microsoft.EntityFrameworkCore.Sqlite.Design.Internal/internal/index.d.ts +5 -5
  7. package/Microsoft.EntityFrameworkCore.Sqlite.Infrastructure.Internal/internal/index.d.ts +11 -16
  8. package/Microsoft.EntityFrameworkCore.Sqlite.Internal.d.ts +3 -0
  9. package/Microsoft.EntityFrameworkCore.Sqlite.Metadata.Internal/internal/index.d.ts +2 -0
  10. package/Microsoft.EntityFrameworkCore.Sqlite.Migrations.Internal/internal/index.d.ts +9 -7
  11. package/Microsoft.EntityFrameworkCore.Sqlite.Query.Internal/internal/index.d.ts +120 -115
  12. package/Microsoft.EntityFrameworkCore.Sqlite.Scaffolding.Internal/internal/index.d.ts +5 -5
  13. package/Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal/internal/index.d.ts +55 -92
  14. package/Microsoft.EntityFrameworkCore.Sqlite.Storage.Json.Internal/internal/index.d.ts +0 -5
  15. package/Microsoft.EntityFrameworkCore.Sqlite.Update.Internal/internal/index.d.ts +16 -18
  16. package/Microsoft.EntityFrameworkCore.d.ts +3 -0
  17. package/Microsoft.Extensions.DependencyInjection.d.ts +3 -0
  18. package/Microsoft.Extensions.DependencyModel/internal/index.d.ts +13 -8
  19. package/Microsoft.Extensions.DependencyModel.Resolution/internal/index.d.ts +10 -0
  20. package/SQLitePCL/internal/index.d.ts +29 -37
  21. package/SQLitePCL.d.ts +3 -0
  22. package/System.Collections.Generic.d.ts +3 -0
  23. package/__internal/extensions/index.d.ts +305 -13
  24. package/package.json +1 -1
@@ -77,6 +77,8 @@ export type strdelegate_update = (user_data: unknown, type: int, database: strin
77
77
 
78
78
 
79
79
  export interface IGetFunctionPointer$instance {
80
+ readonly __tsonic_iface_SQLitePCL_IGetFunctionPointer: never;
81
+
80
82
  GetFunctionPointer(name: string): nint;
81
83
  }
82
84
 
@@ -84,6 +86,8 @@ export interface IGetFunctionPointer$instance {
84
86
  export type IGetFunctionPointer = IGetFunctionPointer$instance;
85
87
 
86
88
  export interface ISQLite3Provider$instance {
89
+ readonly __tsonic_iface_SQLitePCL_ISQLite3Provider: never;
90
+
87
91
  GetNativeLibraryName(): string;
88
92
  sqlite3__vfs__delete(vfs: utf8z, pathname: utf8z, syncDir: int): int;
89
93
  sqlite3_backup_init(destDb: sqlite3, destName: utf8z, sourceDb: sqlite3, sourceName: utf8z): sqlite3_backup;
@@ -284,6 +288,8 @@ export const function_hook_info: {
284
288
  export type function_hook_info = function_hook_info$instance;
285
289
 
286
290
  export interface hook_handle$instance extends SafeGCHandle {
291
+ readonly __tsonic_iface_System_IDisposable: never;
292
+
287
293
  ForDispose(): IDisposable;
288
294
  }
289
295
 
@@ -296,6 +302,8 @@ export const hook_handle: {
296
302
  export type hook_handle = hook_handle$instance;
297
303
 
298
304
  export interface hook_handles$instance {
305
+ readonly __tsonic_iface_System_IDisposable: never;
306
+
299
307
  update: IDisposable;
300
308
  rollback: IDisposable;
301
309
  commit: IDisposable;
@@ -396,13 +404,11 @@ export const rollback_hook_info: {
396
404
 
397
405
  export type rollback_hook_info = rollback_hook_info$instance;
398
406
 
399
- export abstract class SafeGCHandle$protected {
400
- protected ReleaseHandle(): boolean;
401
- }
407
+ export interface SafeGCHandle$instance extends SafeHandle {
408
+ readonly __tsonic_iface_System_IDisposable: never;
402
409
 
403
-
404
- export interface SafeGCHandle$instance extends SafeGCHandle$protected, SafeHandle {
405
410
  readonly IsInvalid: boolean;
411
+ ReleaseHandle(): boolean;
406
412
  }
407
413
 
408
414
 
@@ -413,59 +419,50 @@ export const SafeGCHandle: {
413
419
 
414
420
  export type SafeGCHandle = SafeGCHandle$instance;
415
421
 
416
- export abstract class sqlite3$protected {
417
- protected ReleaseHandle(): boolean;
418
- }
419
-
422
+ export interface sqlite3$instance extends SafeHandle {
423
+ readonly __tsonic_iface_System_IDisposable: never;
420
424
 
421
- export interface sqlite3$instance extends sqlite3$protected, SafeHandle {
422
425
  readonly IsInvalid: boolean;
423
426
  enable_sqlite3_next_stmt(enabled: boolean): void;
424
427
  GetOrCreateExtra<T extends IDisposable>(f: Func<T>): T;
425
428
  manual_close(): int;
426
429
  manual_close_v2(): int;
430
+ ReleaseHandle(): boolean;
427
431
  }
428
432
 
429
433
 
430
434
  export const sqlite3: {
431
- new(): sqlite3;
432
435
  };
433
436
 
434
437
 
435
438
  export type sqlite3 = sqlite3$instance;
436
439
 
437
- export abstract class sqlite3_backup$protected {
438
- protected ReleaseHandle(): boolean;
439
- }
440
+ export interface sqlite3_backup$instance extends SafeHandle {
441
+ readonly __tsonic_iface_System_IDisposable: never;
440
442
 
441
-
442
- export interface sqlite3_backup$instance extends sqlite3_backup$protected, SafeHandle {
443
443
  readonly IsInvalid: boolean;
444
444
  manual_close(): int;
445
+ ReleaseHandle(): boolean;
445
446
  }
446
447
 
447
448
 
448
449
  export const sqlite3_backup: {
449
- new(): sqlite3_backup;
450
450
  From(p: nint): sqlite3_backup;
451
451
  };
452
452
 
453
453
 
454
454
  export type sqlite3_backup = sqlite3_backup$instance;
455
455
 
456
- export abstract class sqlite3_blob$protected {
457
- protected ReleaseHandle(): boolean;
458
- }
459
-
456
+ export interface sqlite3_blob$instance extends SafeHandle {
457
+ readonly __tsonic_iface_System_IDisposable: never;
460
458
 
461
- export interface sqlite3_blob$instance extends sqlite3_blob$protected, SafeHandle {
462
459
  readonly IsInvalid: boolean;
463
460
  manual_close(): int;
461
+ ReleaseHandle(): boolean;
464
462
  }
465
463
 
466
464
 
467
465
  export const sqlite3_blob: {
468
- new(): sqlite3_blob;
469
466
  };
470
467
 
471
468
 
@@ -476,44 +473,37 @@ export interface sqlite3_context$instance {
476
473
  }
477
474
 
478
475
 
479
- export const sqlite3_context: {
480
- new(user_data: unknown): sqlite3_context;
476
+ export const sqlite3_context: (abstract new(user_data: unknown) => sqlite3_context) & {
481
477
  };
482
478
 
483
479
 
484
480
  export type sqlite3_context = sqlite3_context$instance;
485
481
 
486
- export abstract class sqlite3_snapshot$protected {
487
- protected ReleaseHandle(): boolean;
488
- }
489
-
482
+ export interface sqlite3_snapshot$instance extends SafeHandle {
483
+ readonly __tsonic_iface_System_IDisposable: never;
490
484
 
491
- export interface sqlite3_snapshot$instance extends sqlite3_snapshot$protected, SafeHandle {
492
485
  readonly IsInvalid: boolean;
493
486
  manual_close(): void;
487
+ ReleaseHandle(): boolean;
494
488
  }
495
489
 
496
490
 
497
491
  export const sqlite3_snapshot: {
498
- new(): sqlite3_snapshot;
499
492
  };
500
493
 
501
494
 
502
495
  export type sqlite3_snapshot = sqlite3_snapshot$instance;
503
496
 
504
- export abstract class sqlite3_stmt$protected {
505
- protected ReleaseHandle(): boolean;
506
- }
507
-
497
+ export interface sqlite3_stmt$instance extends SafeHandle {
498
+ readonly __tsonic_iface_System_IDisposable: never;
508
499
 
509
- export interface sqlite3_stmt$instance extends sqlite3_stmt$protected, SafeHandle {
510
500
  readonly IsInvalid: boolean;
511
501
  manual_close(): int;
502
+ ReleaseHandle(): boolean;
512
503
  }
513
504
 
514
505
 
515
506
  export const sqlite3_stmt: {
516
- new(): sqlite3_stmt;
517
507
  };
518
508
 
519
509
 
@@ -531,6 +521,8 @@ export const sqlite3_value: {
531
521
  export type sqlite3_value = sqlite3_value$instance;
532
522
 
533
523
  export interface SQLite3Provider_e_sqlite3$instance {
524
+ readonly __tsonic_iface_SQLitePCL_ISQLite3Provider: never;
525
+
534
526
  }
535
527
 
536
528
 
package/SQLitePCL.d.ts CHANGED
@@ -62,3 +62,6 @@ export { authorizer_hook_info as authorizer_hook_info } from './SQLitePCL/intern
62
62
  export { EntryPointAttribute as EntryPointAttribute } from './SQLitePCL/internal/index.js';
63
63
  export type IGetFunctionPointer = Internal.IGetFunctionPointer;
64
64
  export { SQLite3Provider_e_sqlite3 as SQLite3Provider_e_sqlite3 } from './SQLitePCL/internal/index.js';
65
+ // Extension methods (C# using semantics)
66
+ export type { ExtensionMethods_SQLitePCL as ExtensionMethods } from './__internal/extensions/index.js';
67
+
@@ -12,3 +12,6 @@ import type { Object as ClrObject, String as ClrString } from '@tsonic/dotnet/Sy
12
12
 
13
13
  // Public API exports (curated - no internal $instance/$views leakage)
14
14
  export { CollectionExtensions$instance as CollectionExtensions } from './System.Collections.Generic/internal/index.js';
15
+ // Extension methods (C# using semantics)
16
+ export type { ExtensionMethods_System_Collections_Generic as ExtensionMethods } from './__internal/extensions/index.js';
17
+
@@ -4,35 +4,310 @@
4
4
  // For each namespace with extension methods, this file exports an ExtensionMethods_<Namespace> helper.
5
5
 
6
6
  // Import namespace modules for cross-namespace type references
7
+ import * as Microsoft_EntityFrameworkCore from "../../Microsoft.EntityFrameworkCore/internal/index.js";
8
+ import * as Microsoft_EntityFrameworkCore_Diagnostics from "../../Microsoft.EntityFrameworkCore.Diagnostics/internal/index.js";
9
+ import * as Microsoft_EntityFrameworkCore_Infrastructure from "../../Microsoft.EntityFrameworkCore.Infrastructure/internal/index.js";
10
+ import * as Microsoft_EntityFrameworkCore_Metadata from "../../Microsoft.EntityFrameworkCore.Metadata/internal/index.js";
11
+ import * as Microsoft_EntityFrameworkCore_Metadata_Builders from "@tsonic/efcore/Microsoft.EntityFrameworkCore.Metadata.Builders/internal/index.js";
12
+ import * as Microsoft_EntityFrameworkCore_Migrations from "../../Microsoft.EntityFrameworkCore.Migrations/internal/index.js";
13
+ import * as Microsoft_Extensions_DependencyInjection from "../../Microsoft.Extensions.DependencyInjection/internal/index.js";
7
14
  import * as Microsoft_Extensions_DependencyModel from "../../Microsoft.Extensions.DependencyModel/internal/index.js";
15
+ import * as System from "@tsonic/dotnet/System/internal/index.js";
16
+ import * as System_Collections_Generic from "../../System.Collections.Generic/internal/index.js";
17
+ import * as System_Data_Common from "@tsonic/dotnet/System.Data.Common/internal/index.js";
18
+ import * as System_Reflection from "@tsonic/dotnet/System.Reflection/internal/index.js";
8
19
 
9
20
  // Import primitive type aliases
10
21
  import type { sbyte, byte, short, ushort, int, uint, long, ulong, int128, uint128, half, float, double, decimal, nint, nuint, char } from '@tsonic/core/types.js';
11
22
 
12
23
  // Import CLR type aliases for generic type arguments
13
- import * as System_Internal from "../../System/internal/index.js";
24
+ import * as System_Internal from "@tsonic/dotnet/System/internal/index.js";
14
25
 
15
26
  // Import unsafe type markers
16
27
  import type { ptr } from '@tsonic/core/types.js';
17
28
 
29
+ export interface __Ext_Microsoft_EntityFrameworkCore_DbContextOptionsBuilder {
30
+ UseSqlite(sqliteOptionsAction?: System.Action_1<Microsoft_EntityFrameworkCore_Infrastructure.SqliteDbContextOptionsBuilder>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>;
31
+ UseSqlite(connectionString: string, sqliteOptionsAction?: System.Action_1<Microsoft_EntityFrameworkCore_Infrastructure.SqliteDbContextOptionsBuilder>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>;
32
+ UseSqlite(connection: System_Data_Common.DbConnection, sqliteOptionsAction?: System.Action_1<Microsoft_EntityFrameworkCore_Infrastructure.SqliteDbContextOptionsBuilder>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>;
33
+ UseSqlite(connection: System_Data_Common.DbConnection, contextOwnsConnection: boolean, sqliteOptionsAction?: System.Action_1<Microsoft_EntityFrameworkCore_Infrastructure.SqliteDbContextOptionsBuilder>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>;
34
+ }
35
+
36
+ export interface __Ext_Microsoft_EntityFrameworkCore_DbContextOptionsBuilder_1<T> {
37
+ UseSqlite(sqliteOptionsAction?: System.Action_1<Microsoft_EntityFrameworkCore_Infrastructure.SqliteDbContextOptionsBuilder>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore.DbContextOptionsBuilder_1<T>>;
38
+ UseSqlite(connectionString: string, sqliteOptionsAction?: System.Action_1<Microsoft_EntityFrameworkCore_Infrastructure.SqliteDbContextOptionsBuilder>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore.DbContextOptionsBuilder_1<T>>;
39
+ UseSqlite(connection: System_Data_Common.DbConnection, sqliteOptionsAction?: System.Action_1<Microsoft_EntityFrameworkCore_Infrastructure.SqliteDbContextOptionsBuilder>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore.DbContextOptionsBuilder_1<T>>;
40
+ UseSqlite(connection: System_Data_Common.DbConnection, contextOwnsConnection: boolean, sqliteOptionsAction?: System.Action_1<Microsoft_EntityFrameworkCore_Infrastructure.SqliteDbContextOptionsBuilder>): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore.DbContextOptionsBuilder_1<T>>;
41
+ }
42
+
43
+ export interface __Ext_Microsoft_EntityFrameworkCore_DbFunctions {
44
+ Glob(matchExpression: string, pattern: string): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
45
+ Hex(bytes: byte[]): ExtensionMethods_Microsoft_EntityFrameworkCore<string>;
46
+ Unhex(value: string): ExtensionMethods_Microsoft_EntityFrameworkCore<byte[] | undefined>;
47
+ Unhex(value: string, ignoreChars: string): ExtensionMethods_Microsoft_EntityFrameworkCore<byte[] | undefined>;
48
+ Substr(bytes: byte[], startIndex: int): ExtensionMethods_Microsoft_EntityFrameworkCore<byte[]>;
49
+ Substr(bytes: byte[], startIndex: int, length: int): ExtensionMethods_Microsoft_EntityFrameworkCore<byte[]>;
50
+ }
51
+
52
+ export interface __Ext_Microsoft_EntityFrameworkCore_DatabaseFacade {
53
+ IsSqlite(): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
54
+ }
55
+
56
+ export interface __Ext_Microsoft_EntityFrameworkCore_ColumnBuilder {
57
+ UseAutoincrement(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ColumnBuilder>;
58
+ }
59
+
60
+ export interface __Ext_Microsoft_EntityFrameworkCore_ComplexTypePropertyBuilder {
61
+ UseAutoincrement(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder>;
62
+ HasSrid(srid: int): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder>;
63
+ }
64
+
65
+ export interface __Ext_Microsoft_EntityFrameworkCore_ComplexTypePropertyBuilder_1<T> {
66
+ UseAutoincrement(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<T>>;
67
+ HasSrid(srid: int): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<T>>;
68
+ }
69
+
70
+ export interface __Ext_Microsoft_EntityFrameworkCore_IConventionEntityTypeBuilder {
71
+ UseSqlReturningClause(useSqlReturningClause: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder | undefined>;
72
+ UseSqlReturningClause(useSqlReturningClause: System.Nullable_1<System_Internal.Boolean>, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder | undefined>;
73
+ CanUseSqlReturningClause(useSqlReturningClause: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
74
+ CanUseSqlReturningClause(useSqlReturningClause: System.Nullable_1<System_Internal.Boolean>, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
75
+ }
76
+
77
+ export interface __Ext_Microsoft_EntityFrameworkCore_IConventionPropertyBuilder {
78
+ HasValueGenerationStrategy(strategy: System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.SqliteValueGenerationStrategy>, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder | undefined>;
79
+ CanSetValueGenerationStrategy(strategy: System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.SqliteValueGenerationStrategy>, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
80
+ HasSrid(srid: System.Nullable_1<System_Internal.Int32>, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder | undefined>;
81
+ CanSetSrid(srid: System.Nullable_1<System_Internal.Int32>, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
82
+ }
83
+
84
+ export interface __Ext_Microsoft_EntityFrameworkCore_OwnedNavigationTableBuilder {
85
+ UseSqlReturningClause(useSqlReturningClause?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationTableBuilder>;
86
+ }
87
+
88
+ export interface __Ext_Microsoft_EntityFrameworkCore_OwnedNavigationTableBuilder_2<T1, T2> {
89
+ UseSqlReturningClause(useSqlReturningClause?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationTableBuilder_2<T1, T2>>;
90
+ }
91
+
92
+ export interface __Ext_Microsoft_EntityFrameworkCore_PropertyBuilder {
93
+ UseAutoincrement(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
94
+ HasSrid(srid: int): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
95
+ }
96
+
97
+ export interface __Ext_Microsoft_EntityFrameworkCore_PropertyBuilder_1<T> {
98
+ UseAutoincrement(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<T>>;
99
+ HasSrid(srid: int): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<T>>;
100
+ }
101
+
102
+ export interface __Ext_Microsoft_EntityFrameworkCore_SplitTableBuilder {
103
+ UseSqlReturningClause(useSqlReturningClause?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.SplitTableBuilder>;
104
+ }
105
+
106
+ export interface __Ext_Microsoft_EntityFrameworkCore_SplitTableBuilder_1<T> {
107
+ UseSqlReturningClause(useSqlReturningClause?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.SplitTableBuilder_1<T>>;
108
+ }
109
+
110
+ export interface __Ext_Microsoft_EntityFrameworkCore_TableBuilder {
111
+ UseSqlReturningClause(useSqlReturningClause?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.TableBuilder>;
112
+ }
113
+
114
+ export interface __Ext_Microsoft_EntityFrameworkCore_TableBuilder_1<T> {
115
+ UseSqlReturningClause(useSqlReturningClause?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata_Builders.TableBuilder_1<T>>;
116
+ }
117
+
118
+ export interface __Ext_Microsoft_EntityFrameworkCore_IConventionEntityType {
119
+ UseSqlReturningClause(useSqlReturningClause: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Boolean>>;
120
+ GetUseSqlReturningClauseConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
121
+ GetUseSqlReturningClauseConfigurationSource(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
122
+ UseSqlReturningClause(useSqlReturningClause: System.Nullable_1<System_Internal.Boolean>, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Boolean>>;
123
+ }
124
+
125
+ export interface __Ext_Microsoft_EntityFrameworkCore_IConventionEntityTypeMappingFragment {
126
+ UseSqlReturningClause(useSqlReturningClause: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Boolean>>;
127
+ GetUseSqlReturningClauseConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
128
+ }
129
+
130
+ export interface __Ext_Microsoft_EntityFrameworkCore_IConventionProperty {
131
+ SetValueGenerationStrategy(value: System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.SqliteValueGenerationStrategy>, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.SqliteValueGenerationStrategy>>;
132
+ SetValueGenerationStrategy(value: System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.SqliteValueGenerationStrategy>, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.SqliteValueGenerationStrategy>>;
133
+ GetValueGenerationStrategyConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
134
+ GetValueGenerationStrategyConfigurationSource(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
135
+ SetSrid(value: System.Nullable_1<System_Internal.Int32>, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Int32>>;
136
+ GetSridConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
137
+ }
138
+
139
+ export interface __Ext_Microsoft_EntityFrameworkCore_IConventionRelationalPropertyOverrides {
140
+ SetValueGenerationStrategy(value: System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.SqliteValueGenerationStrategy>, fromDataAnnotation?: boolean): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.SqliteValueGenerationStrategy>>;
141
+ GetValueGenerationStrategyConfigurationSource(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
142
+ }
143
+
144
+ export interface __Ext_Microsoft_EntityFrameworkCore_IMutableEntityType {
145
+ UseSqlReturningClause(useSqlReturningClause: System.Nullable_1<System_Internal.Boolean>): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
146
+ UseSqlReturningClause(useSqlReturningClause: System.Nullable_1<System_Internal.Boolean>, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
147
+ }
148
+
149
+ export interface __Ext_Microsoft_EntityFrameworkCore_IMutableEntityTypeMappingFragment {
150
+ UseSqlReturningClause(useSqlReturningClause: System.Nullable_1<System_Internal.Boolean>): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
151
+ }
152
+
153
+ export interface __Ext_Microsoft_EntityFrameworkCore_IMutableProperty {
154
+ SetValueGenerationStrategy(value: System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.SqliteValueGenerationStrategy>): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
155
+ SetValueGenerationStrategy(value: System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.SqliteValueGenerationStrategy>, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
156
+ SetSrid(value: System.Nullable_1<System_Internal.Int32>): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
157
+ }
158
+
159
+ export interface __Ext_Microsoft_EntityFrameworkCore_IMutableRelationalPropertyOverrides {
160
+ SetValueGenerationStrategy(value: System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.SqliteValueGenerationStrategy>): ExtensionMethods_Microsoft_EntityFrameworkCore<void>;
161
+ }
162
+
163
+ export interface __Ext_Microsoft_EntityFrameworkCore_IReadOnlyEntityType {
164
+ IsSqlReturningClauseUsed(): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
165
+ IsSqlReturningClauseUsed(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
166
+ }
167
+
168
+ export interface __Ext_Microsoft_EntityFrameworkCore_IReadOnlyEntityTypeMappingFragment {
169
+ IsSqlReturningClauseUsed(): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
170
+ }
171
+
172
+ export interface __Ext_Microsoft_EntityFrameworkCore_IReadOnlyProperty {
173
+ GetValueGenerationStrategy(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.SqliteValueGenerationStrategy>;
174
+ GetValueGenerationStrategy(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.SqliteValueGenerationStrategy>;
175
+ GetDefaultValueGenerationStrategy(): ExtensionMethods_Microsoft_EntityFrameworkCore<Microsoft_EntityFrameworkCore_Metadata.SqliteValueGenerationStrategy>;
176
+ GetSrid(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Int32>>;
177
+ GetSrid(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<System_Internal.Int32>>;
178
+ }
179
+
180
+ export interface __Ext_Microsoft_EntityFrameworkCore_IReadOnlyRelationalPropertyOverrides {
181
+ GetValueGenerationStrategy(): ExtensionMethods_Microsoft_EntityFrameworkCore<System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.SqliteValueGenerationStrategy>>;
182
+ }
183
+
184
+ export interface __Ext_Microsoft_EntityFrameworkCore_ITable {
185
+ IsSqlReturningClauseUsed(): ExtensionMethods_Microsoft_EntityFrameworkCore<boolean>;
186
+ }
187
+
188
+ export interface __Ext_Microsoft_EntityFrameworkCore_Migrations_MigrationBuilder {
189
+ IsSqlite(): ExtensionMethods_Microsoft_EntityFrameworkCore_Migrations<boolean>;
190
+ }
191
+
192
+ export interface __Ext_Microsoft_EntityFrameworkCore_Sqlite_Internal_IDiagnosticsLogger_1<T> {
193
+ SchemaConfiguredWarning(entityType: Microsoft_EntityFrameworkCore_Metadata.IEntityType, schema: string): ExtensionMethods_Microsoft_EntityFrameworkCore_Sqlite_Internal<void>;
194
+ SequenceConfiguredWarning(sequence: Microsoft_EntityFrameworkCore_Metadata.IReadOnlySequence): ExtensionMethods_Microsoft_EntityFrameworkCore_Sqlite_Internal<void>;
195
+ ColumnFound(tableName: string, columnName: string, dataTypeName: string, notNull: boolean, defaultValue: string): ExtensionMethods_Microsoft_EntityFrameworkCore_Sqlite_Internal<void>;
196
+ SchemasNotSupportedWarning(): ExtensionMethods_Microsoft_EntityFrameworkCore_Sqlite_Internal<void>;
197
+ ForeignKeyReferencesMissingTableWarning(id: string, tableName: string, principalTableName: string): ExtensionMethods_Microsoft_EntityFrameworkCore_Sqlite_Internal<void>;
198
+ TableFound(tableName: string): ExtensionMethods_Microsoft_EntityFrameworkCore_Sqlite_Internal<void>;
199
+ MissingTableWarning(tableName: string): ExtensionMethods_Microsoft_EntityFrameworkCore_Sqlite_Internal<void>;
200
+ ForeignKeyPrincipalColumnMissingWarning(foreignKeyName: string, tableName: string, principalColumnName: string, principalTableName: string): ExtensionMethods_Microsoft_EntityFrameworkCore_Sqlite_Internal<void>;
201
+ IndexFound(indexName: string, tableName: string, unique: System.Nullable_1<System_Internal.Boolean>): ExtensionMethods_Microsoft_EntityFrameworkCore_Sqlite_Internal<void>;
202
+ ForeignKeyFound(tableName: string, id: long, principalTableName: string, deleteAction: string): ExtensionMethods_Microsoft_EntityFrameworkCore_Sqlite_Internal<void>;
203
+ PrimaryKeyFound(primaryKeyName: string, tableName: string): ExtensionMethods_Microsoft_EntityFrameworkCore_Sqlite_Internal<void>;
204
+ UniqueConstraintFound(uniqueConstraintName: string, tableName: string): ExtensionMethods_Microsoft_EntityFrameworkCore_Sqlite_Internal<void>;
205
+ UnexpectedConnectionTypeWarning(connectionType: System.Type): ExtensionMethods_Microsoft_EntityFrameworkCore_Sqlite_Internal<void>;
206
+ TableRebuildPendingWarning(operationType: System.Type, tableName: string): ExtensionMethods_Microsoft_EntityFrameworkCore_Sqlite_Internal<void>;
207
+ CompositeKeyWithValueGeneration(key: Microsoft_EntityFrameworkCore_Metadata.IKey): ExtensionMethods_Microsoft_EntityFrameworkCore_Sqlite_Internal<void>;
208
+ ConflictingValueGenerationStrategiesWarning(sqliteValueGenerationStrategy: Microsoft_EntityFrameworkCore_Metadata.SqliteValueGenerationStrategy, otherValueGenerationStrategy: string, property: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty): ExtensionMethods_Microsoft_EntityFrameworkCore_Sqlite_Internal<void>;
209
+ InferringTypes(tableName: string): ExtensionMethods_Microsoft_EntityFrameworkCore_Sqlite_Internal<void>;
210
+ OutOfRangeWarning(columnName: string, tableName: string, type: string): ExtensionMethods_Microsoft_EntityFrameworkCore_Sqlite_Internal<void>;
211
+ FormatWarning(columnName: string, tableName: string, type: string): ExtensionMethods_Microsoft_EntityFrameworkCore_Sqlite_Internal<void>;
212
+ }
213
+
214
+ export interface __Ext_Microsoft_Extensions_DependencyInjection_IServiceCollection {
215
+ AddSqlite<TContext>(connectionString: string, sqliteOptionsAction?: System.Action_1<Microsoft_EntityFrameworkCore_Infrastructure.SqliteDbContextOptionsBuilder>, optionsAction?: System.Action_1<Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>): ExtensionMethods_Microsoft_Extensions_DependencyInjection<Microsoft_Extensions_DependencyInjection.IServiceCollection>;
216
+ AddEntityFrameworkSqlite(): ExtensionMethods_Microsoft_Extensions_DependencyInjection<Microsoft_Extensions_DependencyInjection.IServiceCollection>;
217
+ }
218
+
18
219
  export interface __Ext_Microsoft_Extensions_DependencyModel_DependencyContext {
19
- GetDefaultNativeAssets(): ExtensionMethods_Microsoft_Extensions_DependencyModel<IEnumerable_1<System_Internal.String>>;
20
- GetDefaultNativeRuntimeFileAssets(): ExtensionMethods_Microsoft_Extensions_DependencyModel<IEnumerable_1<Microsoft_Extensions_DependencyModel.RuntimeFile>>;
21
- GetRuntimeNativeAssets(runtimeIdentifier: string): ExtensionMethods_Microsoft_Extensions_DependencyModel<IEnumerable_1<System_Internal.String>>;
22
- GetRuntimeNativeRuntimeFileAssets(runtimeIdentifier: string): ExtensionMethods_Microsoft_Extensions_DependencyModel<IEnumerable_1<Microsoft_Extensions_DependencyModel.RuntimeFile>>;
23
- GetDefaultAssemblyNames(): ExtensionMethods_Microsoft_Extensions_DependencyModel<IEnumerable_1<AssemblyName>>;
24
- GetRuntimeAssemblyNames(runtimeIdentifier: string): ExtensionMethods_Microsoft_Extensions_DependencyModel<IEnumerable_1<AssemblyName>>;
220
+ GetDefaultNativeAssets(): ExtensionMethods_Microsoft_Extensions_DependencyModel<System_Collections_Generic.IEnumerable_1<System_Internal.String>>;
221
+ GetDefaultNativeRuntimeFileAssets(): ExtensionMethods_Microsoft_Extensions_DependencyModel<System_Collections_Generic.IEnumerable_1<Microsoft_Extensions_DependencyModel.RuntimeFile>>;
222
+ GetRuntimeNativeAssets(runtimeIdentifier: string): ExtensionMethods_Microsoft_Extensions_DependencyModel<System_Collections_Generic.IEnumerable_1<System_Internal.String>>;
223
+ GetRuntimeNativeRuntimeFileAssets(runtimeIdentifier: string): ExtensionMethods_Microsoft_Extensions_DependencyModel<System_Collections_Generic.IEnumerable_1<Microsoft_Extensions_DependencyModel.RuntimeFile>>;
224
+ GetDefaultAssemblyNames(): ExtensionMethods_Microsoft_Extensions_DependencyModel<System_Collections_Generic.IEnumerable_1<System_Reflection.AssemblyName>>;
225
+ GetRuntimeAssemblyNames(runtimeIdentifier: string): ExtensionMethods_Microsoft_Extensions_DependencyModel<System_Collections_Generic.IEnumerable_1<System_Reflection.AssemblyName>>;
25
226
  }
26
227
 
27
228
  export interface __Ext_Microsoft_Extensions_DependencyModel_RuntimeLibrary {
28
- GetDefaultNativeAssets(context: Microsoft_Extensions_DependencyModel.DependencyContext): ExtensionMethods_Microsoft_Extensions_DependencyModel<IEnumerable_1<System_Internal.String>>;
29
- GetDefaultNativeRuntimeFileAssets(context: Microsoft_Extensions_DependencyModel.DependencyContext): ExtensionMethods_Microsoft_Extensions_DependencyModel<IEnumerable_1<Microsoft_Extensions_DependencyModel.RuntimeFile>>;
30
- GetRuntimeNativeAssets(context: Microsoft_Extensions_DependencyModel.DependencyContext, runtimeIdentifier: string): ExtensionMethods_Microsoft_Extensions_DependencyModel<IEnumerable_1<System_Internal.String>>;
31
- GetRuntimeNativeRuntimeFileAssets(context: Microsoft_Extensions_DependencyModel.DependencyContext, runtimeIdentifier: string): ExtensionMethods_Microsoft_Extensions_DependencyModel<IEnumerable_1<Microsoft_Extensions_DependencyModel.RuntimeFile>>;
32
- GetDefaultAssemblyNames(context: Microsoft_Extensions_DependencyModel.DependencyContext): ExtensionMethods_Microsoft_Extensions_DependencyModel<IEnumerable_1<AssemblyName>>;
33
- GetRuntimeAssemblyNames(context: Microsoft_Extensions_DependencyModel.DependencyContext, runtimeIdentifier: string): ExtensionMethods_Microsoft_Extensions_DependencyModel<IEnumerable_1<AssemblyName>>;
229
+ GetDefaultNativeAssets(context: Microsoft_Extensions_DependencyModel.DependencyContext): ExtensionMethods_Microsoft_Extensions_DependencyModel<System_Collections_Generic.IEnumerable_1<System_Internal.String>>;
230
+ GetDefaultNativeRuntimeFileAssets(context: Microsoft_Extensions_DependencyModel.DependencyContext): ExtensionMethods_Microsoft_Extensions_DependencyModel<System_Collections_Generic.IEnumerable_1<Microsoft_Extensions_DependencyModel.RuntimeFile>>;
231
+ GetRuntimeNativeAssets(context: Microsoft_Extensions_DependencyModel.DependencyContext, runtimeIdentifier: string): ExtensionMethods_Microsoft_Extensions_DependencyModel<System_Collections_Generic.IEnumerable_1<System_Internal.String>>;
232
+ GetRuntimeNativeRuntimeFileAssets(context: Microsoft_Extensions_DependencyModel.DependencyContext, runtimeIdentifier: string): ExtensionMethods_Microsoft_Extensions_DependencyModel<System_Collections_Generic.IEnumerable_1<Microsoft_Extensions_DependencyModel.RuntimeFile>>;
233
+ GetDefaultAssemblyNames(context: Microsoft_Extensions_DependencyModel.DependencyContext): ExtensionMethods_Microsoft_Extensions_DependencyModel<System_Collections_Generic.IEnumerable_1<System_Reflection.AssemblyName>>;
234
+ GetRuntimeAssemblyNames(context: Microsoft_Extensions_DependencyModel.DependencyContext, runtimeIdentifier: string): ExtensionMethods_Microsoft_Extensions_DependencyModel<System_Collections_Generic.IEnumerable_1<System_Reflection.AssemblyName>>;
235
+ }
236
+
237
+ export interface __Ext_SQLitePCL_ReadOnlySpan_1<T> {
238
+ utf8_span_to_string(): ExtensionMethods_SQLitePCL<string>;
239
+ }
240
+
241
+ export interface __Ext_System_Collections_Generic_IEnumerable_1<T> {
242
+ GetDefaultGroup(): ExtensionMethods_System_Collections_Generic<Microsoft_Extensions_DependencyModel.RuntimeAssetGroup | undefined>;
243
+ GetRuntimeGroup(runtime: string): ExtensionMethods_System_Collections_Generic<Microsoft_Extensions_DependencyModel.RuntimeAssetGroup | undefined>;
244
+ GetDefaultAssets(): ExtensionMethods_System_Collections_Generic<System_Collections_Generic.IEnumerable_1<System_Internal.String>>;
245
+ GetRuntimeAssets(runtime: string): ExtensionMethods_System_Collections_Generic<System_Collections_Generic.IEnumerable_1<System_Internal.String>>;
246
+ GetDefaultRuntimeFileAssets(): ExtensionMethods_System_Collections_Generic<System_Collections_Generic.IEnumerable_1<Microsoft_Extensions_DependencyModel.RuntimeFile>>;
247
+ GetRuntimeFileAssets(runtime: string): ExtensionMethods_System_Collections_Generic<System_Collections_Generic.IEnumerable_1<Microsoft_Extensions_DependencyModel.RuntimeFile>>;
34
248
  }
35
249
 
250
+ // Generic helper type for extension methods in namespace: Microsoft.EntityFrameworkCore
251
+ export type ExtensionMethods_Microsoft_EntityFrameworkCore<TShape> =
252
+ TShape extends null | undefined ? TShape
253
+ : TShape extends void ? void
254
+ : TShape & (
255
+ (TShape extends Microsoft_EntityFrameworkCore.DbContextOptionsBuilder ? __Ext_Microsoft_EntityFrameworkCore_DbContextOptionsBuilder : {}) &
256
+ (TShape extends Microsoft_EntityFrameworkCore.DbContextOptionsBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_DbContextOptionsBuilder_1<T0> : {}) &
257
+ (TShape extends Microsoft_EntityFrameworkCore.DbFunctions ? __Ext_Microsoft_EntityFrameworkCore_DbFunctions : {}) &
258
+ (TShape extends Microsoft_EntityFrameworkCore_Infrastructure.DatabaseFacade ? __Ext_Microsoft_EntityFrameworkCore_DatabaseFacade : {}) &
259
+ (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType ? __Ext_Microsoft_EntityFrameworkCore_IConventionEntityType : {}) &
260
+ (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionEntityTypeMappingFragment ? __Ext_Microsoft_EntityFrameworkCore_IConventionEntityTypeMappingFragment : {}) &
261
+ (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionProperty ? __Ext_Microsoft_EntityFrameworkCore_IConventionProperty : {}) &
262
+ (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionRelationalPropertyOverrides ? __Ext_Microsoft_EntityFrameworkCore_IConventionRelationalPropertyOverrides : {}) &
263
+ (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableEntityType ? __Ext_Microsoft_EntityFrameworkCore_IMutableEntityType : {}) &
264
+ (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableEntityTypeMappingFragment ? __Ext_Microsoft_EntityFrameworkCore_IMutableEntityTypeMappingFragment : {}) &
265
+ (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableProperty ? __Ext_Microsoft_EntityFrameworkCore_IMutableProperty : {}) &
266
+ (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableRelationalPropertyOverrides ? __Ext_Microsoft_EntityFrameworkCore_IMutableRelationalPropertyOverrides : {}) &
267
+ (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType ? __Ext_Microsoft_EntityFrameworkCore_IReadOnlyEntityType : {}) &
268
+ (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityTypeMappingFragment ? __Ext_Microsoft_EntityFrameworkCore_IReadOnlyEntityTypeMappingFragment : {}) &
269
+ (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty ? __Ext_Microsoft_EntityFrameworkCore_IReadOnlyProperty : {}) &
270
+ (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyRelationalPropertyOverrides ? __Ext_Microsoft_EntityFrameworkCore_IReadOnlyRelationalPropertyOverrides : {}) &
271
+ (TShape extends Microsoft_EntityFrameworkCore_Metadata.ITable ? __Ext_Microsoft_EntityFrameworkCore_ITable : {}) &
272
+ (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ColumnBuilder ? __Ext_Microsoft_EntityFrameworkCore_ColumnBuilder : {}) &
273
+ (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder ? __Ext_Microsoft_EntityFrameworkCore_ComplexTypePropertyBuilder : {}) &
274
+ (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_ComplexTypePropertyBuilder_1<T0> : {}) &
275
+ (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionEntityTypeBuilder : {}) &
276
+ (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionPropertyBuilder : {}) &
277
+ (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationTableBuilder ? __Ext_Microsoft_EntityFrameworkCore_OwnedNavigationTableBuilder : {}) &
278
+ (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationTableBuilder_2<infer T0, infer T1> ? __Ext_Microsoft_EntityFrameworkCore_OwnedNavigationTableBuilder_2<T0, T1> : {}) &
279
+ (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder ? __Ext_Microsoft_EntityFrameworkCore_PropertyBuilder : {}) &
280
+ (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_PropertyBuilder_1<T0> : {}) &
281
+ (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.SplitTableBuilder ? __Ext_Microsoft_EntityFrameworkCore_SplitTableBuilder : {}) &
282
+ (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.SplitTableBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_SplitTableBuilder_1<T0> : {}) &
283
+ (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.TableBuilder ? __Ext_Microsoft_EntityFrameworkCore_TableBuilder : {}) &
284
+ (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.TableBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_TableBuilder_1<T0> : {})
285
+ );
286
+
287
+ // Generic helper type for extension methods in namespace: Microsoft.EntityFrameworkCore.Migrations
288
+ export type ExtensionMethods_Microsoft_EntityFrameworkCore_Migrations<TShape> =
289
+ TShape extends null | undefined ? TShape
290
+ : TShape extends void ? void
291
+ : TShape & (
292
+ (TShape extends Microsoft_EntityFrameworkCore_Migrations.MigrationBuilder ? __Ext_Microsoft_EntityFrameworkCore_Migrations_MigrationBuilder : {})
293
+ );
294
+
295
+ // Generic helper type for extension methods in namespace: Microsoft.EntityFrameworkCore.Sqlite.Internal
296
+ export type ExtensionMethods_Microsoft_EntityFrameworkCore_Sqlite_Internal<TShape> =
297
+ TShape extends null | undefined ? TShape
298
+ : TShape extends void ? void
299
+ : TShape & (
300
+ (TShape extends Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_Sqlite_Internal_IDiagnosticsLogger_1<T0> : {})
301
+ );
302
+
303
+ // Generic helper type for extension methods in namespace: Microsoft.Extensions.DependencyInjection
304
+ export type ExtensionMethods_Microsoft_Extensions_DependencyInjection<TShape> =
305
+ TShape extends null | undefined ? TShape
306
+ : TShape extends void ? void
307
+ : TShape & (
308
+ (TShape extends Microsoft_Extensions_DependencyInjection.IServiceCollection ? __Ext_Microsoft_Extensions_DependencyInjection_IServiceCollection : {})
309
+ );
310
+
36
311
  // Generic helper type for extension methods in namespace: Microsoft.Extensions.DependencyModel
37
312
  export type ExtensionMethods_Microsoft_Extensions_DependencyModel<TShape> =
38
313
  TShape extends null | undefined ? TShape
@@ -42,3 +317,20 @@ export type ExtensionMethods_Microsoft_Extensions_DependencyModel<TShape> =
42
317
  (TShape extends Microsoft_Extensions_DependencyModel.RuntimeLibrary ? __Ext_Microsoft_Extensions_DependencyModel_RuntimeLibrary : {})
43
318
  );
44
319
 
320
+ // Generic helper type for extension methods in namespace: SQLitePCL
321
+ export type ExtensionMethods_SQLitePCL<TShape> =
322
+ TShape extends null | undefined ? TShape
323
+ : TShape extends void ? void
324
+ : TShape & (
325
+ (TShape extends System.ReadOnlySpan_1<infer T0> ? __Ext_SQLitePCL_ReadOnlySpan_1<T0> : {})
326
+ );
327
+
328
+ // Generic helper type for extension methods in namespace: System.Collections.Generic
329
+ export type ExtensionMethods_System_Collections_Generic<TShape> =
330
+ TShape extends null | undefined ? TShape
331
+ : TShape extends void ? void
332
+ : TShape & (
333
+ (TShape extends System_Collections_Generic.IEnumerable_1<infer T0> ? __Ext_System_Collections_Generic_IEnumerable_1<T0> : {}) &
334
+ (TShape extends (infer T)[] ? __Ext_System_Collections_Generic_IEnumerable_1<T> : {})
335
+ );
336
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tsonic/efcore-sqlite",
3
- "version": "10.0.2",
3
+ "version": "10.0.5",
4
4
  "description": "TypeScript type definitions for Microsoft.EntityFrameworkCore.Sqlite (+ dependencies) for .NET 10",
5
5
  "type": "module",
6
6
  "keywords": [