@tsonic/efcore-sqlite 10.0.33 → 10.0.35

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.
@@ -1,6 +1,6 @@
1
- // Generated by tsbindgen - Extension Method Buckets
2
- // This file contains bucket interfaces for C# extension methods.
3
- // Buckets are scoped by declaring namespace (C# using semantics).
1
+ // Generated by tsbindgen - Extension Method Tables
2
+ // This file contains method-table interfaces for C# extension methods.
3
+ // Tables are scoped by declaring namespace (C# using semantics).
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
@@ -29,341 +29,224 @@ import * as System_Internal from "@tsonic/dotnet/System/internal/index.js";
29
29
  // Import unsafe type markers
30
30
  import type { ptr } from '@tsonic/core/types.js';
31
31
 
32
- export interface __Ext_Microsoft_EntityFrameworkCore_DbContextOptionsBuilder {
33
- UseSqlite(sqliteOptionsAction?: System.Action_1<Microsoft_EntityFrameworkCore_Infrastructure.SqliteDbContextOptionsBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>;
34
- UseSqlite(connectionString: string, sqliteOptionsAction?: System.Action_1<Microsoft_EntityFrameworkCore_Infrastructure.SqliteDbContextOptionsBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>;
35
- UseSqlite(connection: System_Data_Common.DbConnection, sqliteOptionsAction?: System.Action_1<Microsoft_EntityFrameworkCore_Infrastructure.SqliteDbContextOptionsBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>;
36
- UseSqlite(connection: System_Data_Common.DbConnection, contextOwnsConnection: boolean, sqliteOptionsAction?: System.Action_1<Microsoft_EntityFrameworkCore_Infrastructure.SqliteDbContextOptionsBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>;
37
- }
38
-
39
- export interface __Ext_Microsoft_EntityFrameworkCore_DbContextOptionsBuilder_1<T> {
40
- UseSqlite(sqliteOptionsAction?: System.Action_1<Microsoft_EntityFrameworkCore_Infrastructure.SqliteDbContextOptionsBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore.DbContextOptionsBuilder_1<T>>;
41
- UseSqlite(connectionString: string, sqliteOptionsAction?: System.Action_1<Microsoft_EntityFrameworkCore_Infrastructure.SqliteDbContextOptionsBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore.DbContextOptionsBuilder_1<T>>;
42
- UseSqlite(connection: System_Data_Common.DbConnection, sqliteOptionsAction?: System.Action_1<Microsoft_EntityFrameworkCore_Infrastructure.SqliteDbContextOptionsBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore.DbContextOptionsBuilder_1<T>>;
43
- UseSqlite(connection: System_Data_Common.DbConnection, contextOwnsConnection: boolean, sqliteOptionsAction?: System.Action_1<Microsoft_EntityFrameworkCore_Infrastructure.SqliteDbContextOptionsBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore.DbContextOptionsBuilder_1<T>>;
44
- }
45
-
46
- export interface __Ext_Microsoft_EntityFrameworkCore_DbFunctions {
47
- Glob(matchExpression: string, pattern: string): Rewrap<this, boolean>;
48
- Hex(bytes: byte[]): Rewrap<this, string>;
49
- Unhex(value: string): Rewrap<this, byte[] | undefined>;
50
- Unhex(value: string, ignoreChars: string): Rewrap<this, byte[] | undefined>;
51
- Substr(bytes: byte[], startIndex: int): Rewrap<this, byte[]>;
52
- Substr(bytes: byte[], startIndex: int, length: int): Rewrap<this, byte[]>;
53
- }
54
-
55
- export interface __Ext_Microsoft_EntityFrameworkCore_DatabaseFacade {
56
- IsSqlite(): Rewrap<this, boolean>;
57
- }
58
-
59
- export interface __Ext_Microsoft_EntityFrameworkCore_ColumnBuilder {
60
- UseAutoincrement(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ColumnBuilder>;
61
- }
62
-
63
- export interface __Ext_Microsoft_EntityFrameworkCore_ComplexTypePropertyBuilder {
64
- UseAutoincrement(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder>;
65
- HasSrid(srid: int): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder>;
66
- }
67
-
68
- export interface __Ext_Microsoft_EntityFrameworkCore_ComplexTypePropertyBuilder_1<T> {
69
- UseAutoincrement(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<T>>;
70
- HasSrid(srid: int): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<T>>;
71
- }
72
-
73
- export interface __Ext_Microsoft_EntityFrameworkCore_IConventionEntityTypeBuilder {
74
- UseSqlReturningClause(useSqlReturningClause: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder | undefined>;
75
- UseSqlReturningClause(useSqlReturningClause: System.Nullable_1<System_Internal.Boolean>, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder | undefined>;
76
- CanUseSqlReturningClause(useSqlReturningClause: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
77
- CanUseSqlReturningClause(useSqlReturningClause: System.Nullable_1<System_Internal.Boolean>, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
78
- }
79
-
80
- export interface __Ext_Microsoft_EntityFrameworkCore_IConventionPropertyBuilder {
81
- HasValueGenerationStrategy(strategy: System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.SqliteValueGenerationStrategy>, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder | undefined>;
82
- CanSetValueGenerationStrategy(strategy: System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.SqliteValueGenerationStrategy>, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
83
- HasSrid(srid: System.Nullable_1<System_Internal.Int32>, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder | undefined>;
84
- CanSetSrid(srid: System.Nullable_1<System_Internal.Int32>, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
85
- }
86
-
87
- export interface __Ext_Microsoft_EntityFrameworkCore_OwnedNavigationTableBuilder {
88
- UseSqlReturningClause(useSqlReturningClause?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationTableBuilder>;
89
- }
90
-
91
- export interface __Ext_Microsoft_EntityFrameworkCore_OwnedNavigationTableBuilder_2<T1, T2> {
92
- UseSqlReturningClause(useSqlReturningClause?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationTableBuilder_2<T1, T2>>;
93
- }
94
-
95
- export interface __Ext_Microsoft_EntityFrameworkCore_PropertyBuilder {
96
- UseAutoincrement(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
97
- HasSrid(srid: int): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
98
- }
99
-
100
- export interface __Ext_Microsoft_EntityFrameworkCore_PropertyBuilder_1<T> {
101
- UseAutoincrement(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<T>>;
102
- HasSrid(srid: int): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<T>>;
103
- }
104
-
105
- export interface __Ext_Microsoft_EntityFrameworkCore_SplitTableBuilder {
106
- UseSqlReturningClause(useSqlReturningClause?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.SplitTableBuilder>;
107
- }
108
-
109
- export interface __Ext_Microsoft_EntityFrameworkCore_SplitTableBuilder_1<T> {
110
- UseSqlReturningClause(useSqlReturningClause?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.SplitTableBuilder_1<T>>;
111
- }
112
-
113
- export interface __Ext_Microsoft_EntityFrameworkCore_TableBuilder {
114
- UseSqlReturningClause(useSqlReturningClause?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.TableBuilder>;
115
- }
116
-
117
- export interface __Ext_Microsoft_EntityFrameworkCore_TableBuilder_1<T> {
118
- UseSqlReturningClause(useSqlReturningClause?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.TableBuilder_1<T>>;
119
- }
120
-
121
- export interface __Ext_Microsoft_EntityFrameworkCore_IConventionEntityType {
122
- UseSqlReturningClause(useSqlReturningClause: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
123
- GetUseSqlReturningClauseConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
124
- GetUseSqlReturningClauseConfigurationSource(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
125
- UseSqlReturningClause(useSqlReturningClause: System.Nullable_1<System_Internal.Boolean>, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, fromDataAnnotation?: boolean): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
126
- }
127
-
128
- export interface __Ext_Microsoft_EntityFrameworkCore_IConventionEntityTypeMappingFragment {
129
- UseSqlReturningClause(useSqlReturningClause: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
130
- GetUseSqlReturningClauseConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
131
- }
132
-
133
- export interface __Ext_Microsoft_EntityFrameworkCore_IConventionProperty {
134
- SetValueGenerationStrategy(value: System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.SqliteValueGenerationStrategy>, fromDataAnnotation?: boolean): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.SqliteValueGenerationStrategy>>;
135
- SetValueGenerationStrategy(value: System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.SqliteValueGenerationStrategy>, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, fromDataAnnotation?: boolean): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.SqliteValueGenerationStrategy>>;
136
- GetValueGenerationStrategyConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
137
- GetValueGenerationStrategyConfigurationSource(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
138
- SetSrid(value: System.Nullable_1<System_Internal.Int32>, fromDataAnnotation?: boolean): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
139
- GetSridConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
140
- }
141
-
142
- export interface __Ext_Microsoft_EntityFrameworkCore_IConventionRelationalPropertyOverrides {
143
- SetValueGenerationStrategy(value: System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.SqliteValueGenerationStrategy>, fromDataAnnotation?: boolean): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.SqliteValueGenerationStrategy>>;
144
- GetValueGenerationStrategyConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
145
- }
146
-
147
- export interface __Ext_Microsoft_EntityFrameworkCore_IMutableEntityType {
148
- UseSqlReturningClause(useSqlReturningClause: System.Nullable_1<System_Internal.Boolean>): Rewrap<this, void>;
149
- UseSqlReturningClause(useSqlReturningClause: System.Nullable_1<System_Internal.Boolean>, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, void>;
150
- }
151
-
152
- export interface __Ext_Microsoft_EntityFrameworkCore_IMutableEntityTypeMappingFragment {
153
- UseSqlReturningClause(useSqlReturningClause: System.Nullable_1<System_Internal.Boolean>): Rewrap<this, void>;
154
- }
155
-
156
- export interface __Ext_Microsoft_EntityFrameworkCore_IMutableProperty {
157
- SetValueGenerationStrategy(value: System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.SqliteValueGenerationStrategy>): Rewrap<this, void>;
158
- SetValueGenerationStrategy(value: System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.SqliteValueGenerationStrategy>, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, void>;
159
- SetSrid(value: System.Nullable_1<System_Internal.Int32>): Rewrap<this, void>;
160
- }
161
-
162
- export interface __Ext_Microsoft_EntityFrameworkCore_IMutableRelationalPropertyOverrides {
163
- SetValueGenerationStrategy(value: System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.SqliteValueGenerationStrategy>): Rewrap<this, void>;
164
- }
165
-
166
- export interface __Ext_Microsoft_EntityFrameworkCore_IReadOnlyEntityType {
167
- IsSqlReturningClauseUsed(): Rewrap<this, boolean>;
168
- IsSqlReturningClauseUsed(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, boolean>;
169
- }
170
-
171
- export interface __Ext_Microsoft_EntityFrameworkCore_IReadOnlyEntityTypeMappingFragment {
172
- IsSqlReturningClauseUsed(): Rewrap<this, boolean>;
173
- }
174
-
175
- export interface __Ext_Microsoft_EntityFrameworkCore_IReadOnlyProperty {
176
- GetValueGenerationStrategy(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.SqliteValueGenerationStrategy>;
177
- GetValueGenerationStrategy(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.SqliteValueGenerationStrategy>;
178
- GetDefaultValueGenerationStrategy(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.SqliteValueGenerationStrategy>;
179
- GetSrid(): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
180
- GetSrid(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
181
- }
182
-
183
- export interface __Ext_Microsoft_EntityFrameworkCore_IReadOnlyRelationalPropertyOverrides {
184
- GetValueGenerationStrategy(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.SqliteValueGenerationStrategy>>;
185
- }
186
-
187
- export interface __Ext_Microsoft_EntityFrameworkCore_ITable {
188
- IsSqlReturningClauseUsed(): Rewrap<this, boolean>;
189
- }
190
-
191
- export interface __Ext_Microsoft_EntityFrameworkCore_Migrations_MigrationBuilder {
192
- IsSqlite(): Rewrap<this, boolean>;
193
- }
194
-
195
- export interface __Ext_Microsoft_EntityFrameworkCore_Sqlite_Internal_IDiagnosticsLogger_1<T> {
196
- SchemaConfiguredWarning(entityType: Microsoft_EntityFrameworkCore_Metadata.IEntityType, schema: string): Rewrap<this, void>;
197
- SequenceConfiguredWarning(sequence: Microsoft_EntityFrameworkCore_Metadata.IReadOnlySequence): Rewrap<this, void>;
198
- ColumnFound(tableName: string, columnName: string, dataTypeName: string, notNull: boolean, defaultValue: string): Rewrap<this, void>;
199
- SchemasNotSupportedWarning(): Rewrap<this, void>;
200
- ForeignKeyReferencesMissingTableWarning(id: string, tableName: string, principalTableName: string): Rewrap<this, void>;
201
- TableFound(tableName: string): Rewrap<this, void>;
202
- MissingTableWarning(tableName: string): Rewrap<this, void>;
203
- ForeignKeyPrincipalColumnMissingWarning(foreignKeyName: string, tableName: string, principalColumnName: string, principalTableName: string): Rewrap<this, void>;
204
- IndexFound(indexName: string, tableName: string, unique: System.Nullable_1<System_Internal.Boolean>): Rewrap<this, void>;
205
- ForeignKeyFound(tableName: string, id: long, principalTableName: string, deleteAction: string): Rewrap<this, void>;
206
- PrimaryKeyFound(primaryKeyName: string, tableName: string): Rewrap<this, void>;
207
- UniqueConstraintFound(uniqueConstraintName: string, tableName: string): Rewrap<this, void>;
208
- UnexpectedConnectionTypeWarning(connectionType: System.Type): Rewrap<this, void>;
209
- TableRebuildPendingWarning(operationType: System.Type, tableName: string): Rewrap<this, void>;
210
- CompositeKeyWithValueGeneration(key: Microsoft_EntityFrameworkCore_Metadata.IKey): Rewrap<this, void>;
211
- ConflictingValueGenerationStrategiesWarning(sqliteValueGenerationStrategy: Microsoft_EntityFrameworkCore_Metadata.SqliteValueGenerationStrategy, otherValueGenerationStrategy: string, property: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty): Rewrap<this, void>;
212
- InferringTypes(tableName: string): Rewrap<this, void>;
213
- OutOfRangeWarning(columnName: string, tableName: string, type: string): Rewrap<this, void>;
214
- FormatWarning(columnName: string, tableName: string, type: string): Rewrap<this, void>;
215
- }
216
-
217
- export interface __Ext_Microsoft_Extensions_DependencyInjection_IServiceCollection {
218
- AddSqlite<TContext>(connectionString: string, sqliteOptionsAction?: System.Action_1<Microsoft_EntityFrameworkCore_Infrastructure.SqliteDbContextOptionsBuilder>, optionsAction?: System.Action_1<Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
219
- AddEntityFrameworkSqlite(): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
220
- }
221
-
222
- export interface __Ext_Microsoft_Extensions_DependencyModel_DependencyContext {
223
- GetDefaultNativeAssets(): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Internal.String>>;
224
- GetDefaultNativeRuntimeFileAssets(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_Extensions_DependencyModel.RuntimeFile>>;
225
- GetRuntimeNativeAssets(runtimeIdentifier: string): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Internal.String>>;
226
- GetRuntimeNativeRuntimeFileAssets(runtimeIdentifier: string): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_Extensions_DependencyModel.RuntimeFile>>;
227
- GetDefaultAssemblyNames(): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Reflection.AssemblyName>>;
228
- GetRuntimeAssemblyNames(runtimeIdentifier: string): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Reflection.AssemblyName>>;
229
- }
230
-
231
- export interface __Ext_Microsoft_Extensions_DependencyModel_RuntimeLibrary {
232
- GetDefaultNativeAssets(context: Microsoft_Extensions_DependencyModel.DependencyContext): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Internal.String>>;
233
- GetDefaultNativeRuntimeFileAssets(context: Microsoft_Extensions_DependencyModel.DependencyContext): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_Extensions_DependencyModel.RuntimeFile>>;
234
- GetRuntimeNativeAssets(context: Microsoft_Extensions_DependencyModel.DependencyContext, runtimeIdentifier: string): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Internal.String>>;
235
- GetRuntimeNativeRuntimeFileAssets(context: Microsoft_Extensions_DependencyModel.DependencyContext, runtimeIdentifier: string): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_Extensions_DependencyModel.RuntimeFile>>;
236
- GetDefaultAssemblyNames(context: Microsoft_Extensions_DependencyModel.DependencyContext): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Reflection.AssemblyName>>;
237
- GetRuntimeAssemblyNames(context: Microsoft_Extensions_DependencyModel.DependencyContext, runtimeIdentifier: string): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Reflection.AssemblyName>>;
238
- }
239
-
240
- export interface __Ext_SQLitePCL_ReadOnlySpan_1<T> {
241
- utf8_span_to_string(): Rewrap<this, string>;
242
- }
243
-
244
- export interface __Ext_System_Collections_Generic_IEnumerable_1<T> {
245
- GetDefaultGroup(): Rewrap<this, Microsoft_Extensions_DependencyModel.RuntimeAssetGroup | undefined>;
246
- GetRuntimeGroup(runtime: string): Rewrap<this, Microsoft_Extensions_DependencyModel.RuntimeAssetGroup | undefined>;
247
- GetDefaultAssets(): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Internal.String>>;
248
- GetRuntimeAssets(runtime: string): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Internal.String>>;
249
- GetDefaultRuntimeFileAssets(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_Extensions_DependencyModel.RuntimeFile>>;
250
- GetRuntimeFileAssets(runtime: string): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_Extensions_DependencyModel.RuntimeFile>>;
251
- }
252
-
253
32
  // Internal helper types for sticky extension scopes
254
33
  type __TsonicExtMapOf<T> = T extends { __tsonic_ext?: infer M } ? M : {};
255
34
  type __TsonicMergeExtMaps<A, B> = A & B;
256
35
  type __TsonicWithExt<TShape, K extends string, TApplier> = { __tsonic_ext?: __TsonicMergeExtMaps<__TsonicExtMapOf<TShape>, { [P in K]: TApplier }> };
257
36
 
258
- // Generic helper type for extension methods in namespace: Microsoft.EntityFrameworkCore
259
- type __TsonicExtSurface_Microsoft_EntityFrameworkCore<TShape> =
260
- (
261
- (TShape extends Microsoft_EntityFrameworkCore.DbContextOptionsBuilder ? __Ext_Microsoft_EntityFrameworkCore_DbContextOptionsBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore.DbContextOptionsBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_DbContextOptionsBuilder_1<T0> : {}) & (TShape extends Microsoft_EntityFrameworkCore.DbFunctions ? __Ext_Microsoft_EntityFrameworkCore_DbFunctions : {}) & (TShape extends Microsoft_EntityFrameworkCore_Infrastructure.DatabaseFacade ? __Ext_Microsoft_EntityFrameworkCore_DatabaseFacade : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType ? __Ext_Microsoft_EntityFrameworkCore_IConventionEntityType : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionEntityTypeMappingFragment ? __Ext_Microsoft_EntityFrameworkCore_IConventionEntityTypeMappingFragment : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionProperty ? __Ext_Microsoft_EntityFrameworkCore_IConventionProperty : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionRelationalPropertyOverrides ? __Ext_Microsoft_EntityFrameworkCore_IConventionRelationalPropertyOverrides : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableEntityType ? __Ext_Microsoft_EntityFrameworkCore_IMutableEntityType : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableEntityTypeMappingFragment ? __Ext_Microsoft_EntityFrameworkCore_IMutableEntityTypeMappingFragment : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableProperty ? __Ext_Microsoft_EntityFrameworkCore_IMutableProperty : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableRelationalPropertyOverrides ? __Ext_Microsoft_EntityFrameworkCore_IMutableRelationalPropertyOverrides : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType ? __Ext_Microsoft_EntityFrameworkCore_IReadOnlyEntityType : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityTypeMappingFragment ? __Ext_Microsoft_EntityFrameworkCore_IReadOnlyEntityTypeMappingFragment : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty ? __Ext_Microsoft_EntityFrameworkCore_IReadOnlyProperty : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyRelationalPropertyOverrides ? __Ext_Microsoft_EntityFrameworkCore_IReadOnlyRelationalPropertyOverrides : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.ITable ? __Ext_Microsoft_EntityFrameworkCore_ITable : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ColumnBuilder ? __Ext_Microsoft_EntityFrameworkCore_ColumnBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder ? __Ext_Microsoft_EntityFrameworkCore_ComplexTypePropertyBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_ComplexTypePropertyBuilder_1<T0> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionEntityTypeBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionPropertyBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationTableBuilder ? __Ext_Microsoft_EntityFrameworkCore_OwnedNavigationTableBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationTableBuilder_2<infer T0, infer T1> ? __Ext_Microsoft_EntityFrameworkCore_OwnedNavigationTableBuilder_2<T0, T1> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder ? __Ext_Microsoft_EntityFrameworkCore_PropertyBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_PropertyBuilder_1<T0> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.SplitTableBuilder ? __Ext_Microsoft_EntityFrameworkCore_SplitTableBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.SplitTableBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_SplitTableBuilder_1<T0> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.TableBuilder ? __Ext_Microsoft_EntityFrameworkCore_TableBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.TableBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_TableBuilder_1<T0> : {})
262
- );
37
+ // Extension method table for namespace: Microsoft.EntityFrameworkCore
38
+ interface __TsonicExtMethods_Microsoft_EntityFrameworkCore {
39
+ CanSetSrid(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder, srid: System.Nullable_1<System_Internal.Int32>, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
40
+ CanSetValueGenerationStrategy(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder, strategy: System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.SqliteValueGenerationStrategy>, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
41
+ CanUseSqlReturningClause(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder, useSqlReturningClause: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
42
+ CanUseSqlReturningClause(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder, useSqlReturningClause: System.Nullable_1<System_Internal.Boolean>, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
43
+ GetDefaultValueGenerationStrategy(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.SqliteValueGenerationStrategy>;
44
+ GetSrid(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
45
+ GetSrid(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
46
+ GetSridConfigurationSource(this: Microsoft_EntityFrameworkCore_Metadata.IConventionProperty): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
47
+ GetUseSqlReturningClauseConfigurationSource(this: Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
48
+ GetUseSqlReturningClauseConfigurationSource(this: Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
49
+ GetUseSqlReturningClauseConfigurationSource(this: Microsoft_EntityFrameworkCore_Metadata.IConventionEntityTypeMappingFragment): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
50
+ GetValueGenerationStrategy(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.SqliteValueGenerationStrategy>;
51
+ GetValueGenerationStrategy(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.SqliteValueGenerationStrategy>;
52
+ GetValueGenerationStrategy(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyRelationalPropertyOverrides): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.SqliteValueGenerationStrategy>>;
53
+ GetValueGenerationStrategyConfigurationSource(this: Microsoft_EntityFrameworkCore_Metadata.IConventionProperty): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
54
+ GetValueGenerationStrategyConfigurationSource(this: Microsoft_EntityFrameworkCore_Metadata.IConventionProperty, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
55
+ GetValueGenerationStrategyConfigurationSource(this: Microsoft_EntityFrameworkCore_Metadata.IConventionRelationalPropertyOverrides): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
56
+ Glob(this: Microsoft_EntityFrameworkCore.DbFunctions, matchExpression: string, pattern: string): Rewrap<this, boolean>;
57
+ HasSrid(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder, srid: int): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder>;
58
+ HasSrid<TProperty>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>, srid: int): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>>;
59
+ HasSrid(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder, srid: System.Nullable_1<System_Internal.Int32>, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder | undefined>;
60
+ HasSrid(this: Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder, srid: int): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
61
+ HasSrid<TProperty>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>, srid: int): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>>;
62
+ HasValueGenerationStrategy(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder, strategy: System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.SqliteValueGenerationStrategy>, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder | undefined>;
63
+ Hex(this: Microsoft_EntityFrameworkCore.DbFunctions, bytes: byte[]): Rewrap<this, string>;
64
+ IsSqlReturningClauseUsed(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType): Rewrap<this, boolean>;
65
+ IsSqlReturningClauseUsed(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, boolean>;
66
+ IsSqlReturningClauseUsed(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityTypeMappingFragment): Rewrap<this, boolean>;
67
+ IsSqlReturningClauseUsed(this: Microsoft_EntityFrameworkCore_Metadata.ITable): Rewrap<this, boolean>;
68
+ IsSqlite(this: Microsoft_EntityFrameworkCore_Infrastructure.DatabaseFacade): Rewrap<this, boolean>;
69
+ SetSrid(this: Microsoft_EntityFrameworkCore_Metadata.IConventionProperty, value: System.Nullable_1<System_Internal.Int32>, fromDataAnnotation?: boolean): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
70
+ SetSrid(this: Microsoft_EntityFrameworkCore_Metadata.IMutableProperty, value: System.Nullable_1<System_Internal.Int32>): Rewrap<this, void>;
71
+ SetValueGenerationStrategy(this: Microsoft_EntityFrameworkCore_Metadata.IConventionProperty, value: System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.SqliteValueGenerationStrategy>, fromDataAnnotation?: boolean): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.SqliteValueGenerationStrategy>>;
72
+ SetValueGenerationStrategy(this: Microsoft_EntityFrameworkCore_Metadata.IConventionProperty, value: System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.SqliteValueGenerationStrategy>, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, fromDataAnnotation?: boolean): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.SqliteValueGenerationStrategy>>;
73
+ SetValueGenerationStrategy(this: Microsoft_EntityFrameworkCore_Metadata.IConventionRelationalPropertyOverrides, value: System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.SqliteValueGenerationStrategy>, fromDataAnnotation?: boolean): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.SqliteValueGenerationStrategy>>;
74
+ SetValueGenerationStrategy(this: Microsoft_EntityFrameworkCore_Metadata.IMutableProperty, value: System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.SqliteValueGenerationStrategy>): Rewrap<this, void>;
75
+ SetValueGenerationStrategy(this: Microsoft_EntityFrameworkCore_Metadata.IMutableProperty, value: System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.SqliteValueGenerationStrategy>, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, void>;
76
+ SetValueGenerationStrategy(this: Microsoft_EntityFrameworkCore_Metadata.IMutableRelationalPropertyOverrides, value: System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.SqliteValueGenerationStrategy>): Rewrap<this, void>;
77
+ Substr(this: Microsoft_EntityFrameworkCore.DbFunctions, bytes: byte[], startIndex: int): Rewrap<this, byte[]>;
78
+ Substr(this: Microsoft_EntityFrameworkCore.DbFunctions, bytes: byte[], startIndex: int, length: int): Rewrap<this, byte[]>;
79
+ Unhex(this: Microsoft_EntityFrameworkCore.DbFunctions, value: string): Rewrap<this, byte[] | undefined>;
80
+ Unhex(this: Microsoft_EntityFrameworkCore.DbFunctions, value: string, ignoreChars: string): Rewrap<this, byte[] | undefined>;
81
+ UseAutoincrement(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ColumnBuilder): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ColumnBuilder>;
82
+ UseAutoincrement(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder>;
83
+ UseAutoincrement<TProperty>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>>;
84
+ UseAutoincrement(this: Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
85
+ UseAutoincrement<TProperty>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>>;
86
+ UseSqlReturningClause(this: Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType, useSqlReturningClause: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
87
+ UseSqlReturningClause(this: Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType, useSqlReturningClause: System.Nullable_1<System_Internal.Boolean>, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, fromDataAnnotation?: boolean): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
88
+ UseSqlReturningClause(this: Microsoft_EntityFrameworkCore_Metadata.IConventionEntityTypeMappingFragment, useSqlReturningClause: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
89
+ UseSqlReturningClause(this: Microsoft_EntityFrameworkCore_Metadata.IMutableEntityType, useSqlReturningClause: System.Nullable_1<System_Internal.Boolean>): Rewrap<this, void>;
90
+ UseSqlReturningClause(this: Microsoft_EntityFrameworkCore_Metadata.IMutableEntityType, useSqlReturningClause: System.Nullable_1<System_Internal.Boolean>, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, void>;
91
+ UseSqlReturningClause(this: Microsoft_EntityFrameworkCore_Metadata.IMutableEntityTypeMappingFragment, useSqlReturningClause: System.Nullable_1<System_Internal.Boolean>): Rewrap<this, void>;
92
+ UseSqlReturningClause(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder, useSqlReturningClause: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder | undefined>;
93
+ UseSqlReturningClause(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder, useSqlReturningClause: System.Nullable_1<System_Internal.Boolean>, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder | undefined>;
94
+ UseSqlReturningClause(this: Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationTableBuilder, useSqlReturningClause?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationTableBuilder>;
95
+ UseSqlReturningClause<TOwnerEntity, TDependentEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationTableBuilder_2<TOwnerEntity, TDependentEntity>, useSqlReturningClause?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationTableBuilder_2<TOwnerEntity, TDependentEntity>>;
96
+ UseSqlReturningClause(this: Microsoft_EntityFrameworkCore_Metadata_Builders.SplitTableBuilder, useSqlReturningClause?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.SplitTableBuilder>;
97
+ UseSqlReturningClause<TEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.SplitTableBuilder_1<TEntity>, useSqlReturningClause?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.SplitTableBuilder_1<TEntity>>;
98
+ UseSqlReturningClause(this: Microsoft_EntityFrameworkCore_Metadata_Builders.TableBuilder, useSqlReturningClause?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.TableBuilder>;
99
+ UseSqlReturningClause<TEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.TableBuilder_1<TEntity>, useSqlReturningClause?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.TableBuilder_1<TEntity>>;
100
+ UseSqlite(this: Microsoft_EntityFrameworkCore.DbContextOptionsBuilder, sqliteOptionsAction?: System.Action_1<Microsoft_EntityFrameworkCore_Infrastructure.SqliteDbContextOptionsBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>;
101
+ UseSqlite(this: Microsoft_EntityFrameworkCore.DbContextOptionsBuilder, connectionString: string, sqliteOptionsAction?: System.Action_1<Microsoft_EntityFrameworkCore_Infrastructure.SqliteDbContextOptionsBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>;
102
+ UseSqlite(this: Microsoft_EntityFrameworkCore.DbContextOptionsBuilder, connection: System_Data_Common.DbConnection, sqliteOptionsAction?: System.Action_1<Microsoft_EntityFrameworkCore_Infrastructure.SqliteDbContextOptionsBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>;
103
+ UseSqlite(this: Microsoft_EntityFrameworkCore.DbContextOptionsBuilder, connection: System_Data_Common.DbConnection, contextOwnsConnection: boolean, sqliteOptionsAction?: System.Action_1<Microsoft_EntityFrameworkCore_Infrastructure.SqliteDbContextOptionsBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>;
104
+ UseSqlite<TContext>(this: Microsoft_EntityFrameworkCore.DbContextOptionsBuilder_1<TContext>, sqliteOptionsAction?: System.Action_1<Microsoft_EntityFrameworkCore_Infrastructure.SqliteDbContextOptionsBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore.DbContextOptionsBuilder_1<TContext>>;
105
+ UseSqlite<TContext>(this: Microsoft_EntityFrameworkCore.DbContextOptionsBuilder_1<TContext>, connectionString: string, sqliteOptionsAction?: System.Action_1<Microsoft_EntityFrameworkCore_Infrastructure.SqliteDbContextOptionsBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore.DbContextOptionsBuilder_1<TContext>>;
106
+ UseSqlite<TContext>(this: Microsoft_EntityFrameworkCore.DbContextOptionsBuilder_1<TContext>, connection: System_Data_Common.DbConnection, sqliteOptionsAction?: System.Action_1<Microsoft_EntityFrameworkCore_Infrastructure.SqliteDbContextOptionsBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore.DbContextOptionsBuilder_1<TContext>>;
107
+ UseSqlite<TContext>(this: Microsoft_EntityFrameworkCore.DbContextOptionsBuilder_1<TContext>, connection: System_Data_Common.DbConnection, contextOwnsConnection: boolean, sqliteOptionsAction?: System.Action_1<Microsoft_EntityFrameworkCore_Infrastructure.SqliteDbContextOptionsBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore.DbContextOptionsBuilder_1<TContext>>;
108
+ }
263
109
 
110
+ // Generic helper type for extension methods in namespace: Microsoft.EntityFrameworkCore
264
111
  interface __TsonicExtApplier_Microsoft_EntityFrameworkCore {
265
112
  __tsonic_shape: unknown;
266
- __tsonic_type: __TsonicExtSurface_Microsoft_EntityFrameworkCore<this["__tsonic_shape"]>;
113
+ __tsonic_type: __TsonicExtMethods_Microsoft_EntityFrameworkCore;
267
114
  }
268
115
 
269
116
  export type ExtensionMethods_Microsoft_EntityFrameworkCore<TShape> =
270
117
  TShape extends null | undefined ? TShape
271
118
  : TShape extends void ? void
272
- : TShape & __TsonicWithExt<TShape, "Microsoft.EntityFrameworkCore", __TsonicExtApplier_Microsoft_EntityFrameworkCore> & __TsonicExtSurface_Microsoft_EntityFrameworkCore<TShape>;
119
+ : TShape & __TsonicWithExt<TShape, "Microsoft.EntityFrameworkCore", __TsonicExtApplier_Microsoft_EntityFrameworkCore> & __TsonicExtMethods_Microsoft_EntityFrameworkCore;
273
120
 
274
- // Generic helper type for extension methods in namespace: Microsoft.EntityFrameworkCore.Migrations
275
- type __TsonicExtSurface_Microsoft_EntityFrameworkCore_Migrations<TShape> =
276
- (
277
- (TShape extends Microsoft_EntityFrameworkCore_Migrations.MigrationBuilder ? __Ext_Microsoft_EntityFrameworkCore_Migrations_MigrationBuilder : {})
278
- );
121
+ // Extension method table for namespace: Microsoft.EntityFrameworkCore.Migrations
122
+ interface __TsonicExtMethods_Microsoft_EntityFrameworkCore_Migrations {
123
+ IsSqlite(this: Microsoft_EntityFrameworkCore_Migrations.MigrationBuilder): Rewrap<this, boolean>;
124
+ }
279
125
 
126
+ // Generic helper type for extension methods in namespace: Microsoft.EntityFrameworkCore.Migrations
280
127
  interface __TsonicExtApplier_Microsoft_EntityFrameworkCore_Migrations {
281
128
  __tsonic_shape: unknown;
282
- __tsonic_type: __TsonicExtSurface_Microsoft_EntityFrameworkCore_Migrations<this["__tsonic_shape"]>;
129
+ __tsonic_type: __TsonicExtMethods_Microsoft_EntityFrameworkCore_Migrations;
283
130
  }
284
131
 
285
132
  export type ExtensionMethods_Microsoft_EntityFrameworkCore_Migrations<TShape> =
286
133
  TShape extends null | undefined ? TShape
287
134
  : TShape extends void ? void
288
- : TShape & __TsonicWithExt<TShape, "Microsoft.EntityFrameworkCore.Migrations", __TsonicExtApplier_Microsoft_EntityFrameworkCore_Migrations> & __TsonicExtSurface_Microsoft_EntityFrameworkCore_Migrations<TShape>;
135
+ : TShape & __TsonicWithExt<TShape, "Microsoft.EntityFrameworkCore.Migrations", __TsonicExtApplier_Microsoft_EntityFrameworkCore_Migrations> & __TsonicExtMethods_Microsoft_EntityFrameworkCore_Migrations;
136
+
137
+ // Extension method table for namespace: Microsoft.EntityFrameworkCore.Sqlite.Internal
138
+ interface __TsonicExtMethods_Microsoft_EntityFrameworkCore_Sqlite_Internal {
139
+ ColumnFound(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Scaffolding>, tableName: string, columnName: string, dataTypeName: string, notNull: boolean, defaultValue: string): Rewrap<this, void>;
140
+ CompositeKeyWithValueGeneration(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Model_Validation>, key: Microsoft_EntityFrameworkCore_Metadata.IKey): Rewrap<this, void>;
141
+ ConflictingValueGenerationStrategiesWarning(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Model_Validation>, sqliteValueGenerationStrategy: Microsoft_EntityFrameworkCore_Metadata.SqliteValueGenerationStrategy, otherValueGenerationStrategy: string, property: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty): Rewrap<this, void>;
142
+ ForeignKeyFound(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Scaffolding>, tableName: string, id: long, principalTableName: string, deleteAction: string): Rewrap<this, void>;
143
+ ForeignKeyPrincipalColumnMissingWarning(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Scaffolding>, foreignKeyName: string, tableName: string, principalColumnName: string, principalTableName: string): Rewrap<this, void>;
144
+ ForeignKeyReferencesMissingTableWarning(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Scaffolding>, id: string, tableName: string, principalTableName: string): Rewrap<this, void>;
145
+ FormatWarning(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Scaffolding>, columnName: string, tableName: string, type: string): Rewrap<this, void>;
146
+ IndexFound(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Scaffolding>, indexName: string, tableName: string, unique: System.Nullable_1<System_Internal.Boolean>): Rewrap<this, void>;
147
+ InferringTypes(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Scaffolding>, tableName: string): Rewrap<this, void>;
148
+ MissingTableWarning(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Scaffolding>, tableName: string): Rewrap<this, void>;
149
+ OutOfRangeWarning(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Scaffolding>, columnName: string, tableName: string, type: string): Rewrap<this, void>;
150
+ PrimaryKeyFound(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Scaffolding>, primaryKeyName: string, tableName: string): Rewrap<this, void>;
151
+ SchemaConfiguredWarning(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Model_Validation>, entityType: Microsoft_EntityFrameworkCore_Metadata.IEntityType, schema: string): Rewrap<this, void>;
152
+ SchemasNotSupportedWarning(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Scaffolding>): Rewrap<this, void>;
153
+ SequenceConfiguredWarning(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Model_Validation>, sequence: Microsoft_EntityFrameworkCore_Metadata.IReadOnlySequence): Rewrap<this, void>;
154
+ TableFound(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Scaffolding>, tableName: string): Rewrap<this, void>;
155
+ TableRebuildPendingWarning(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Migrations>, operationType: System.Type, tableName: string): Rewrap<this, void>;
156
+ UnexpectedConnectionTypeWarning(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Infrastructure>, connectionType: System.Type): Rewrap<this, void>;
157
+ UniqueConstraintFound(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Scaffolding>, uniqueConstraintName: string, tableName: string): Rewrap<this, void>;
158
+ }
289
159
 
290
160
  // Generic helper type for extension methods in namespace: Microsoft.EntityFrameworkCore.Sqlite.Internal
291
- type __TsonicExtSurface_Microsoft_EntityFrameworkCore_Sqlite_Internal<TShape> =
292
- (
293
- (TShape extends Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_Sqlite_Internal_IDiagnosticsLogger_1<T0> : {})
294
- );
295
-
296
161
  interface __TsonicExtApplier_Microsoft_EntityFrameworkCore_Sqlite_Internal {
297
162
  __tsonic_shape: unknown;
298
- __tsonic_type: __TsonicExtSurface_Microsoft_EntityFrameworkCore_Sqlite_Internal<this["__tsonic_shape"]>;
163
+ __tsonic_type: __TsonicExtMethods_Microsoft_EntityFrameworkCore_Sqlite_Internal;
299
164
  }
300
165
 
301
166
  export type ExtensionMethods_Microsoft_EntityFrameworkCore_Sqlite_Internal<TShape> =
302
167
  TShape extends null | undefined ? TShape
303
168
  : TShape extends void ? void
304
- : TShape & __TsonicWithExt<TShape, "Microsoft.EntityFrameworkCore.Sqlite.Internal", __TsonicExtApplier_Microsoft_EntityFrameworkCore_Sqlite_Internal> & __TsonicExtSurface_Microsoft_EntityFrameworkCore_Sqlite_Internal<TShape>;
169
+ : TShape & __TsonicWithExt<TShape, "Microsoft.EntityFrameworkCore.Sqlite.Internal", __TsonicExtApplier_Microsoft_EntityFrameworkCore_Sqlite_Internal> & __TsonicExtMethods_Microsoft_EntityFrameworkCore_Sqlite_Internal;
305
170
 
306
- // Generic helper type for extension methods in namespace: Microsoft.Extensions.DependencyInjection
307
- type __TsonicExtSurface_Microsoft_Extensions_DependencyInjection<TShape> =
308
- (
309
- (TShape extends Microsoft_Extensions_DependencyInjection.IServiceCollection ? __Ext_Microsoft_Extensions_DependencyInjection_IServiceCollection : {})
310
- );
171
+ // Extension method table for namespace: Microsoft.Extensions.DependencyInjection
172
+ interface __TsonicExtMethods_Microsoft_Extensions_DependencyInjection {
173
+ AddEntityFrameworkSqlite(this: Microsoft_Extensions_DependencyInjection.IServiceCollection): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
174
+ AddSqlite<TContext>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, connectionString: string, sqliteOptionsAction?: System.Action_1<Microsoft_EntityFrameworkCore_Infrastructure.SqliteDbContextOptionsBuilder>, optionsAction?: System.Action_1<Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
175
+ }
311
176
 
177
+ // Generic helper type for extension methods in namespace: Microsoft.Extensions.DependencyInjection
312
178
  interface __TsonicExtApplier_Microsoft_Extensions_DependencyInjection {
313
179
  __tsonic_shape: unknown;
314
- __tsonic_type: __TsonicExtSurface_Microsoft_Extensions_DependencyInjection<this["__tsonic_shape"]>;
180
+ __tsonic_type: __TsonicExtMethods_Microsoft_Extensions_DependencyInjection;
315
181
  }
316
182
 
317
183
  export type ExtensionMethods_Microsoft_Extensions_DependencyInjection<TShape> =
318
184
  TShape extends null | undefined ? TShape
319
185
  : TShape extends void ? void
320
- : TShape & __TsonicWithExt<TShape, "Microsoft.Extensions.DependencyInjection", __TsonicExtApplier_Microsoft_Extensions_DependencyInjection> & __TsonicExtSurface_Microsoft_Extensions_DependencyInjection<TShape>;
186
+ : TShape & __TsonicWithExt<TShape, "Microsoft.Extensions.DependencyInjection", __TsonicExtApplier_Microsoft_Extensions_DependencyInjection> & __TsonicExtMethods_Microsoft_Extensions_DependencyInjection;
187
+
188
+ // Extension method table for namespace: Microsoft.Extensions.DependencyModel
189
+ interface __TsonicExtMethods_Microsoft_Extensions_DependencyModel {
190
+ GetDefaultAssemblyNames(this: Microsoft_Extensions_DependencyModel.DependencyContext): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Reflection.AssemblyName>>;
191
+ GetDefaultAssemblyNames(this: Microsoft_Extensions_DependencyModel.RuntimeLibrary, context: Microsoft_Extensions_DependencyModel.DependencyContext): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Reflection.AssemblyName>>;
192
+ GetDefaultNativeAssets(this: Microsoft_Extensions_DependencyModel.DependencyContext): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Internal.String>>;
193
+ GetDefaultNativeAssets(this: Microsoft_Extensions_DependencyModel.RuntimeLibrary, context: Microsoft_Extensions_DependencyModel.DependencyContext): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Internal.String>>;
194
+ GetDefaultNativeRuntimeFileAssets(this: Microsoft_Extensions_DependencyModel.DependencyContext): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_Extensions_DependencyModel.RuntimeFile>>;
195
+ GetDefaultNativeRuntimeFileAssets(this: Microsoft_Extensions_DependencyModel.RuntimeLibrary, context: Microsoft_Extensions_DependencyModel.DependencyContext): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_Extensions_DependencyModel.RuntimeFile>>;
196
+ GetRuntimeAssemblyNames(this: Microsoft_Extensions_DependencyModel.DependencyContext, runtimeIdentifier: string): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Reflection.AssemblyName>>;
197
+ GetRuntimeAssemblyNames(this: Microsoft_Extensions_DependencyModel.RuntimeLibrary, context: Microsoft_Extensions_DependencyModel.DependencyContext, runtimeIdentifier: string): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Reflection.AssemblyName>>;
198
+ GetRuntimeNativeAssets(this: Microsoft_Extensions_DependencyModel.DependencyContext, runtimeIdentifier: string): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Internal.String>>;
199
+ GetRuntimeNativeAssets(this: Microsoft_Extensions_DependencyModel.RuntimeLibrary, context: Microsoft_Extensions_DependencyModel.DependencyContext, runtimeIdentifier: string): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Internal.String>>;
200
+ GetRuntimeNativeRuntimeFileAssets(this: Microsoft_Extensions_DependencyModel.DependencyContext, runtimeIdentifier: string): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_Extensions_DependencyModel.RuntimeFile>>;
201
+ GetRuntimeNativeRuntimeFileAssets(this: Microsoft_Extensions_DependencyModel.RuntimeLibrary, context: Microsoft_Extensions_DependencyModel.DependencyContext, runtimeIdentifier: string): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_Extensions_DependencyModel.RuntimeFile>>;
202
+ }
321
203
 
322
204
  // Generic helper type for extension methods in namespace: Microsoft.Extensions.DependencyModel
323
- type __TsonicExtSurface_Microsoft_Extensions_DependencyModel<TShape> =
324
- (
325
- (TShape extends Microsoft_Extensions_DependencyModel.DependencyContext ? __Ext_Microsoft_Extensions_DependencyModel_DependencyContext : {}) & (TShape extends Microsoft_Extensions_DependencyModel.RuntimeLibrary ? __Ext_Microsoft_Extensions_DependencyModel_RuntimeLibrary : {})
326
- );
327
-
328
205
  interface __TsonicExtApplier_Microsoft_Extensions_DependencyModel {
329
206
  __tsonic_shape: unknown;
330
- __tsonic_type: __TsonicExtSurface_Microsoft_Extensions_DependencyModel<this["__tsonic_shape"]>;
207
+ __tsonic_type: __TsonicExtMethods_Microsoft_Extensions_DependencyModel;
331
208
  }
332
209
 
333
210
  export type ExtensionMethods_Microsoft_Extensions_DependencyModel<TShape> =
334
211
  TShape extends null | undefined ? TShape
335
212
  : TShape extends void ? void
336
- : TShape & __TsonicWithExt<TShape, "Microsoft.Extensions.DependencyModel", __TsonicExtApplier_Microsoft_Extensions_DependencyModel> & __TsonicExtSurface_Microsoft_Extensions_DependencyModel<TShape>;
213
+ : TShape & __TsonicWithExt<TShape, "Microsoft.Extensions.DependencyModel", __TsonicExtApplier_Microsoft_Extensions_DependencyModel> & __TsonicExtMethods_Microsoft_Extensions_DependencyModel;
337
214
 
338
- // Generic helper type for extension methods in namespace: SQLitePCL
339
- type __TsonicExtSurface_SQLitePCL<TShape> =
340
- (
341
- (TShape extends System.ReadOnlySpan_1<infer T0> ? __Ext_SQLitePCL_ReadOnlySpan_1<T0> : {})
342
- );
215
+ // Extension method table for namespace: SQLitePCL
216
+ interface __TsonicExtMethods_SQLitePCL {
217
+ utf8_span_to_string(this: System.ReadOnlySpan_1<System_Internal.Byte>): Rewrap<this, string>;
218
+ }
343
219
 
220
+ // Generic helper type for extension methods in namespace: SQLitePCL
344
221
  interface __TsonicExtApplier_SQLitePCL {
345
222
  __tsonic_shape: unknown;
346
- __tsonic_type: __TsonicExtSurface_SQLitePCL<this["__tsonic_shape"]>;
223
+ __tsonic_type: __TsonicExtMethods_SQLitePCL;
347
224
  }
348
225
 
349
226
  export type ExtensionMethods_SQLitePCL<TShape> =
350
227
  TShape extends null | undefined ? TShape
351
228
  : TShape extends void ? void
352
- : TShape & __TsonicWithExt<TShape, "SQLitePCL", __TsonicExtApplier_SQLitePCL> & __TsonicExtSurface_SQLitePCL<TShape>;
229
+ : TShape & __TsonicWithExt<TShape, "SQLitePCL", __TsonicExtApplier_SQLitePCL> & __TsonicExtMethods_SQLitePCL;
353
230
 
354
- // Generic helper type for extension methods in namespace: System.Collections.Generic
355
- type __TsonicExtSurface_System_Collections_Generic<TShape> =
356
- (
357
- (TShape extends System_Collections_Generic.IEnumerable_1<infer T0> ? __Ext_System_Collections_Generic_IEnumerable_1<T0> : {}) & (TShape extends (infer T)[] ? __Ext_System_Collections_Generic_IEnumerable_1<T> : {})
358
- );
231
+ // Extension method table for namespace: System.Collections.Generic
232
+ interface __TsonicExtMethods_System_Collections_Generic {
233
+ GetDefaultAssets(this: System_Collections_Generic.IEnumerable_1<Microsoft_Extensions_DependencyModel.RuntimeAssetGroup>): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Internal.String>>;
234
+ GetDefaultGroup(this: System_Collections_Generic.IEnumerable_1<Microsoft_Extensions_DependencyModel.RuntimeAssetGroup>): Rewrap<this, Microsoft_Extensions_DependencyModel.RuntimeAssetGroup | undefined>;
235
+ GetDefaultRuntimeFileAssets(this: System_Collections_Generic.IEnumerable_1<Microsoft_Extensions_DependencyModel.RuntimeAssetGroup>): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_Extensions_DependencyModel.RuntimeFile>>;
236
+ GetRuntimeAssets(this: System_Collections_Generic.IEnumerable_1<Microsoft_Extensions_DependencyModel.RuntimeAssetGroup>, runtime: string): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Internal.String>>;
237
+ GetRuntimeFileAssets(this: System_Collections_Generic.IEnumerable_1<Microsoft_Extensions_DependencyModel.RuntimeAssetGroup>, runtime: string): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_Extensions_DependencyModel.RuntimeFile>>;
238
+ GetRuntimeGroup(this: System_Collections_Generic.IEnumerable_1<Microsoft_Extensions_DependencyModel.RuntimeAssetGroup>, runtime: string): Rewrap<this, Microsoft_Extensions_DependencyModel.RuntimeAssetGroup | undefined>;
239
+ }
359
240
 
241
+ // Generic helper type for extension methods in namespace: System.Collections.Generic
360
242
  interface __TsonicExtApplier_System_Collections_Generic {
361
243
  __tsonic_shape: unknown;
362
- __tsonic_type: __TsonicExtSurface_System_Collections_Generic<this["__tsonic_shape"]>;
244
+ __tsonic_type: __TsonicExtMethods_System_Collections_Generic;
363
245
  }
364
246
 
365
247
  export type ExtensionMethods_System_Collections_Generic<TShape> =
366
248
  TShape extends null | undefined ? TShape
367
249
  : TShape extends void ? void
368
- : TShape & __TsonicWithExt<TShape, "System.Collections.Generic", __TsonicExtApplier_System_Collections_Generic> & __TsonicExtSurface_System_Collections_Generic<TShape>;
250
+ : TShape extends (infer T)[] ? (TShape & System_Collections_Generic.IEnumerable_1<T> & __TsonicWithExt<TShape, "System.Collections.Generic", __TsonicExtApplier_System_Collections_Generic> & __TsonicExtMethods_System_Collections_Generic)
251
+ : TShape & __TsonicWithExt<TShape, "System.Collections.Generic", __TsonicExtApplier_System_Collections_Generic> & __TsonicExtMethods_System_Collections_Generic;
369
252
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tsonic/efcore-sqlite",
3
- "version": "10.0.33",
3
+ "version": "10.0.35",
4
4
  "description": "TypeScript type definitions for Microsoft.EntityFrameworkCore.Sqlite (+ dependencies) for .NET 10",
5
5
  "type": "module",
6
6
  "keywords": [
@@ -19,9 +19,9 @@
19
19
  "url": "https://github.com/tsoniclang/efcore-sqlite.git"
20
20
  },
21
21
  "peerDependencies": {
22
- "@tsonic/core": "10.0.33",
23
- "@tsonic/dotnet": "10.0.33",
24
- "@tsonic/microsoft-extensions": "10.0.33",
25
- "@tsonic/efcore": "10.0.33"
22
+ "@tsonic/core": "10.0.35",
23
+ "@tsonic/dotnet": "10.0.35",
24
+ "@tsonic/microsoft-extensions": "10.0.35",
25
+ "@tsonic/efcore": "10.0.35"
26
26
  }
27
27
  }