@tsonic/efcore 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
@@ -47,2298 +47,1532 @@ import * as System_Internal from "@tsonic/dotnet/System/internal/index.js";
47
47
  // Import unsafe type markers
48
48
  import type { ptr } from '@tsonic/core/types.js';
49
49
 
50
- export interface __Ext_Microsoft_EntityFrameworkCore_ChangeTracker {
51
- ToDebugString(options?: Microsoft_EntityFrameworkCore_ChangeTracking.ChangeTrackerDebugStringOptions, indent?: int): Rewrap<this, string>;
52
- }
53
-
54
- export interface __Ext_Microsoft_EntityFrameworkCore_DbFunctions {
55
- Like(matchExpression: string, pattern: string): Rewrap<this, boolean>;
56
- Like(matchExpression: string, pattern: string, escapeCharacter: string): Rewrap<this, boolean>;
57
- Random(): Rewrap<this, double>;
58
- Collate<TProperty>(operand: TProperty, collation: string): Rewrap<this, TProperty>;
59
- Least<T>(...values: T[]): Rewrap<this, T>;
60
- Greatest<T>(...values: T[]): Rewrap<this, T>;
61
- }
62
-
63
- export interface __Ext_Microsoft_EntityFrameworkCore_DbSet_1<TEntity> {
64
- FromSqlRaw(sql: string, ...parameters: unknown[]): Rewrap<this, System_Linq.IQueryable_1<TEntity>>;
65
- FromSqlInterpolated(sql: System.FormattableString): Rewrap<this, System_Linq.IQueryable_1<TEntity>>;
66
- FromSql(sql: System.FormattableString): Rewrap<this, System_Linq.IQueryable_1<TEntity>>;
67
- }
68
-
69
- export interface __Ext_Microsoft_EntityFrameworkCore_DatabaseFacade {
70
- GetMigrations(): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Internal.String>>;
71
- GetAppliedMigrations(): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Internal.String>>;
72
- GetAppliedMigrationsAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Collections_Generic.IEnumerable_1<System_Internal.String>>>;
73
- GetPendingMigrations(): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Internal.String>>;
74
- GetPendingMigrationsAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Collections_Generic.IEnumerable_1<System_Internal.String>>>;
75
- Migrate(): Rewrap<this, void>;
76
- Migrate(targetMigration: string): Rewrap<this, void>;
77
- MigrateAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
78
- MigrateAsync(targetMigration: string, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
79
- ExecuteSqlRaw(sql: string, ...parameters: unknown[]): Rewrap<this, int>;
80
- ExecuteSqlInterpolated(sql: System.FormattableString): Rewrap<this, int>;
81
- ExecuteSql(sql: System.FormattableString): Rewrap<this, int>;
82
- ExecuteSqlRaw(sql: string, parameters: System_Collections_Generic.IEnumerable_1<unknown>): Rewrap<this, int>;
83
- SqlQueryRaw<TResult>(sql: string, ...parameters: unknown[]): Rewrap<this, System_Linq.IQueryable_1<TResult>>;
84
- SqlQuery<TResult>(sql: System.FormattableString): Rewrap<this, System_Linq.IQueryable_1<TResult>>;
85
- ExecuteSqlInterpolatedAsync(sql: System.FormattableString, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Int32>>;
86
- ExecuteSqlAsync(sql: System.FormattableString, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Int32>>;
87
- ExecuteSqlRawAsync(sql: string, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Int32>>;
88
- ExecuteSqlRawAsync(sql: string, ...parameters: unknown[]): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Int32>>;
89
- ExecuteSqlRawAsync(sql: string, parameters: System_Collections_Generic.IEnumerable_1<unknown>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Int32>>;
90
- GetDbConnection(): Rewrap<this, System_Data_Common.DbConnection>;
91
- SetDbConnection(connection: System_Data_Common.DbConnection, contextOwnsConnection?: boolean): Rewrap<this, void>;
92
- GetConnectionString(): Rewrap<this, string | undefined>;
93
- SetConnectionString(connectionString: string): Rewrap<this, void>;
94
- OpenConnection(): Rewrap<this, void>;
95
- OpenConnectionAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
96
- CloseConnection(): Rewrap<this, void>;
97
- CloseConnectionAsync(): Rewrap<this, System_Threading_Tasks.Task>;
98
- BeginTransaction(isolationLevel: System_Data.IsolationLevel): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.IDbContextTransaction>;
99
- BeginTransactionAsync(isolationLevel: System_Data.IsolationLevel, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<Microsoft_EntityFrameworkCore_Storage.IDbContextTransaction>>;
100
- UseTransaction(transaction: System_Data_Common.DbTransaction): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.IDbContextTransaction | undefined>;
101
- UseTransaction(transaction: System_Data_Common.DbTransaction, transactionId: System.Guid): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.IDbContextTransaction | undefined>;
102
- UseTransactionAsync(transaction: System_Data_Common.DbTransaction, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<Microsoft_EntityFrameworkCore_Storage.IDbContextTransaction | undefined>>;
103
- UseTransactionAsync(transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<Microsoft_EntityFrameworkCore_Storage.IDbContextTransaction | undefined>>;
104
- SetCommandTimeout(timeout: System.Nullable_1<System_Internal.Int32>): Rewrap<this, void>;
105
- SetCommandTimeout(timeout: System.TimeSpan): Rewrap<this, void>;
106
- GetCommandTimeout(): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
107
- GenerateCreateScript(): Rewrap<this, string>;
108
- IsRelational(): Rewrap<this, boolean>;
109
- HasPendingModelChanges(): Rewrap<this, boolean>;
110
- }
111
-
112
- export interface __Ext_Microsoft_EntityFrameworkCore_ComplexCollectionBuilder {
113
- ToJson(jsonColumnName?: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionBuilder>;
114
- HasJsonPropertyName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionBuilder>;
115
- HasColumnType(columnType: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionBuilder>;
116
- }
117
-
118
- export interface __Ext_Microsoft_EntityFrameworkCore_ComplexCollectionBuilder_1<TComplex> {
119
- ToJson(jsonColumnName?: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionBuilder_1<TComplex>>;
120
- HasJsonPropertyName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionBuilder_1<TComplex>>;
121
- HasColumnType(columnType: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionBuilder_1<TComplex>>;
122
- }
123
-
124
- export interface __Ext_Microsoft_EntityFrameworkCore_ComplexCollectionTypePropertyBuilder {
125
- HasJsonPropertyName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionTypePropertyBuilder>;
126
- }
127
-
128
- export interface __Ext_Microsoft_EntityFrameworkCore_ComplexCollectionTypePropertyBuilder_1<TProperty> {
129
- HasJsonPropertyName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionTypePropertyBuilder_1<TProperty>>;
130
- }
131
-
132
- export interface __Ext_Microsoft_EntityFrameworkCore_ComplexPropertyBuilder {
133
- ToJson(jsonColumnName?: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexPropertyBuilder>;
134
- HasJsonPropertyName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexPropertyBuilder>;
135
- HasColumnType(columnType: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexPropertyBuilder>;
136
- }
137
-
138
- export interface __Ext_Microsoft_EntityFrameworkCore_ComplexPropertyBuilder_1<TComplex> {
139
- ToJson(jsonColumnName?: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexPropertyBuilder_1<TComplex>>;
140
- HasJsonPropertyName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexPropertyBuilder_1<TComplex>>;
141
- HasColumnType(columnType: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexPropertyBuilder_1<TComplex>>;
142
- }
143
-
144
- export interface __Ext_Microsoft_EntityFrameworkCore_ComplexTypePrimitiveCollectionBuilder {
145
- HasColumnName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder>;
146
- HasColumnOrder(order: System.Nullable_1<System_Internal.Int32>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder>;
147
- HasColumnType(typeName: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder>;
148
- IsFixedLength(fixedLength?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder>;
149
- HasDefaultValueSql(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder>;
150
- HasDefaultValueSql(sql: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder>;
151
- HasComputedColumnSql(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder>;
152
- HasComputedColumnSql(sql: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder>;
153
- HasComputedColumnSql(sql: string, stored: System.Nullable_1<System_Internal.Boolean>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder>;
154
- HasDefaultValue(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder>;
155
- HasDefaultValue(value: unknown): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder>;
156
- HasComment(comment: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder>;
157
- UseCollation(collation: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder>;
158
- HasJsonPropertyName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder>;
159
- }
160
-
161
- export interface __Ext_Microsoft_EntityFrameworkCore_ComplexTypePrimitiveCollectionBuilder_1<TProperty> {
162
- HasColumnName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<TProperty>>;
163
- HasColumnOrder(order: System.Nullable_1<System_Internal.Int32>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<TProperty>>;
164
- HasColumnType(typeName: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<TProperty>>;
165
- IsFixedLength(fixedLength?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<TProperty>>;
166
- HasDefaultValueSql(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<TProperty>>;
167
- HasDefaultValueSql(sql: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<TProperty>>;
168
- HasComputedColumnSql(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<TProperty>>;
169
- HasComputedColumnSql(sql: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<TProperty>>;
170
- HasComputedColumnSql(sql: string, stored: System.Nullable_1<System_Internal.Boolean>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<TProperty>>;
171
- HasDefaultValue(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<TProperty>>;
172
- HasDefaultValue(value: unknown): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<TProperty>>;
173
- HasComment(comment: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<TProperty>>;
174
- UseCollation(collation: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<TProperty>>;
175
- HasJsonPropertyName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<TProperty>>;
176
- }
177
-
178
- export interface __Ext_Microsoft_EntityFrameworkCore_ComplexTypePropertyBuilder {
179
- HasColumnName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder>;
180
- HasColumnOrder(order: System.Nullable_1<System_Internal.Int32>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder>;
181
- HasColumnType(typeName: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder>;
182
- IsFixedLength(fixedLength?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder>;
183
- HasDefaultValueSql(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder>;
184
- HasDefaultValueSql(sql: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder>;
185
- HasComputedColumnSql(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder>;
186
- HasComputedColumnSql(sql: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder>;
187
- HasComputedColumnSql(sql: string, stored: System.Nullable_1<System_Internal.Boolean>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder>;
188
- HasDefaultValue(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder>;
189
- HasDefaultValue(value: unknown): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder>;
190
- HasComment(comment: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder>;
191
- UseCollation(collation: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder>;
192
- HasJsonPropertyName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder>;
193
- }
194
-
195
- export interface __Ext_Microsoft_EntityFrameworkCore_ComplexTypePropertyBuilder_1<TProperty> {
196
- HasColumnName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>>;
197
- HasColumnOrder(order: System.Nullable_1<System_Internal.Int32>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>>;
198
- HasColumnType(typeName: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>>;
199
- IsFixedLength(fixedLength?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>>;
200
- HasDefaultValueSql(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>>;
201
- HasDefaultValueSql(sql: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>>;
202
- HasComputedColumnSql(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>>;
203
- HasComputedColumnSql(sql: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>>;
204
- HasComputedColumnSql(sql: string, stored: System.Nullable_1<System_Internal.Boolean>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>>;
205
- HasDefaultValue(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>>;
206
- HasDefaultValue(value: unknown): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>>;
207
- HasComment(comment: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>>;
208
- UseCollation(collation: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>>;
209
- HasJsonPropertyName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>>;
210
- }
211
-
212
- export interface __Ext_Microsoft_EntityFrameworkCore_ElementTypeBuilder {
213
- HasStoreType(typeName: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ElementTypeBuilder>;
214
- IsFixedLength(fixedLength?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ElementTypeBuilder>;
215
- }
216
-
217
- export interface __Ext_Microsoft_EntityFrameworkCore_EntityTypeBuilder {
218
- UseTpcMappingStrategy(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
219
- UseTphMappingStrategy(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
220
- UseTptMappingStrategy(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
221
- ToSqlQuery(query: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
222
- ToFunction(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
223
- ToFunction(function_: System_Reflection.MethodInfo): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
224
- ToFunction(name: string, configureFunction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.TableValuedFunctionBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
225
- ToFunction(function_: System_Reflection.MethodInfo, configureFunction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.TableValuedFunctionBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
226
- HasCheckConstraint(name: string, sql: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
227
- HasCheckConstraint(name: string, sql: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.CheckConstraintBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
228
- HasComment(comment: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
229
- ToTable(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
230
- ToTable(buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.TableBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
231
- ToTable(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.TableBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
232
- ToTable(name: string, schema: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
233
- ToTable(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.TableBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
234
- SplitToTable(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.SplitTableBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
235
- SplitToTable(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.SplitTableBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
236
- ToView(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
237
- ToView(name: string, schema: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
238
- ToView(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.ViewBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
239
- ToView(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.ViewBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
240
- SplitToView(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.SplitViewBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
241
- SplitToView(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.SplitViewBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
242
- UpdateUsingStoredProcedure(buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
243
- UpdateUsingStoredProcedure(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
244
- UpdateUsingStoredProcedure(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
245
- DeleteUsingStoredProcedure(buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
246
- DeleteUsingStoredProcedure(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
247
- DeleteUsingStoredProcedure(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
248
- InsertUsingStoredProcedure(buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
249
- InsertUsingStoredProcedure(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
250
- InsertUsingStoredProcedure(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
251
- }
252
-
253
- export interface __Ext_Microsoft_EntityFrameworkCore_EntityTypeBuilder_1<TEntity> {
254
- UseTpcMappingStrategy(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
255
- UseTphMappingStrategy(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
256
- UseTptMappingStrategy(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
257
- ToSqlQuery(query: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
258
- ToFunction(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
259
- ToFunction(function_: System_Reflection.MethodInfo): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
260
- ToFunction(name: string, configureFunction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.TableValuedFunctionBuilder_1<TEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
261
- ToFunction(function_: System_Reflection.MethodInfo, configureFunction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.TableValuedFunctionBuilder_1<TEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
262
- HasCheckConstraint(name: string, sql: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
263
- HasCheckConstraint(name: string, sql: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.CheckConstraintBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
264
- HasComment(comment: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
265
- ToTable(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
266
- ToTable(buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.TableBuilder_1<TEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
267
- ToTable(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.TableBuilder_1<TEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
268
- ToTable(name: string, schema: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
269
- ToTable(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.TableBuilder_1<TEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
270
- SplitToTable(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.SplitTableBuilder_1<TEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
271
- SplitToTable(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.SplitTableBuilder_1<TEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
272
- ToView(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
273
- ToView(name: string, schema: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
274
- ToView(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.ViewBuilder_1<TEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
275
- ToView(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.ViewBuilder_1<TEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
276
- SplitToView(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.SplitViewBuilder_1<TEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
277
- SplitToView(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.SplitViewBuilder_1<TEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
278
- UpdateUsingStoredProcedure(buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder_1<TEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
279
- UpdateUsingStoredProcedure(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder_1<TEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
280
- UpdateUsingStoredProcedure(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder_1<TEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
281
- DeleteUsingStoredProcedure(buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder_1<TEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
282
- DeleteUsingStoredProcedure(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder_1<TEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
283
- DeleteUsingStoredProcedure(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder_1<TEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
284
- InsertUsingStoredProcedure(buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder_1<TEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
285
- InsertUsingStoredProcedure(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder_1<TEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
286
- InsertUsingStoredProcedure(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder_1<TEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
287
- }
288
-
289
- export interface __Ext_Microsoft_EntityFrameworkCore_IConventionElementTypeBuilder {
290
- HasStoreType(typeName: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionElementTypeBuilder | undefined>;
291
- CanSetStoreType(typeName: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
292
- IsFixedLength(fixedLength: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionElementTypeBuilder | undefined>;
293
- CanSetFixedLength(fixedLength: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
294
- }
295
-
296
- export interface __Ext_Microsoft_EntityFrameworkCore_IConventionEntityTypeBuilder {
297
- UseMappingStrategy(strategy: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder | undefined>;
298
- CanSetMappingStrategy(strategy: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
299
- ExcludeTableFromMigrations(excludedFromMigrations: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder | undefined>;
300
- CanExcludeTableFromMigrations(excludedFromMigrations: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
301
- ToSqlQuery(name: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder | undefined>;
302
- CanSetSqlQuery(name: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
303
- ToFunction(name: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder | undefined>;
304
- ToFunction(function_: System_Reflection.MethodInfo, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder | undefined>;
305
- CanSetFunction(name: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
306
- CanSetFunction(function_: System_Reflection.MethodInfo, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
307
- HasCheckConstraint(name: string, sql: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionCheckConstraintBuilder | undefined>;
308
- CanHaveCheckConstraint(name: string, sql: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
309
- HasComment(comment: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder | undefined>;
310
- CanSetComment(comment: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
311
- HasJsonPropertyName(name: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder | undefined>;
312
- CanSetJsonPropertyName(name: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
313
- ToTable(name: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder | undefined>;
314
- ToTable(name: string, schema: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder | undefined>;
315
- CanSetTable(name: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
316
- ToSchema(schema: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder | undefined>;
317
- CanSetSchema(schema: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
318
- ToView(name: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder | undefined>;
319
- ToView(name: string, schema: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder | undefined>;
320
- CanSetView(name: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
321
- ToViewSchema(schema: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder | undefined>;
322
- CanSetViewSchema(schema: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
323
- UpdateUsingStoredProcedure(fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionStoredProcedureBuilder | undefined>;
324
- DeleteUsingStoredProcedure(fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionStoredProcedureBuilder | undefined>;
325
- InsertUsingStoredProcedure(fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionStoredProcedureBuilder | undefined>;
326
- }
327
-
328
- export interface __Ext_Microsoft_EntityFrameworkCore_IConventionForeignKeyBuilder {
329
- HasConstraintName(name: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionForeignKeyBuilder | undefined>;
330
- CanSetConstraintName(name: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
331
- }
332
-
333
- export interface __Ext_Microsoft_EntityFrameworkCore_IConventionIndexBuilder {
334
- HasDatabaseName(name: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionIndexBuilder | undefined>;
335
- CanSetDatabaseName(name: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
336
- HasFilter(sql: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionIndexBuilder | undefined>;
337
- CanSetFilter(sql: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
338
- }
339
-
340
- export interface __Ext_Microsoft_EntityFrameworkCore_IConventionKeyBuilder {
341
- HasName(name: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionKeyBuilder | undefined>;
342
- CanSetName(name: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
343
- }
344
-
345
- export interface __Ext_Microsoft_EntityFrameworkCore_IConventionModelBuilder {
346
- HasSequence(name: string, schema?: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionSequenceBuilder>;
347
- HasDbFunction(methodInfo: System_Reflection.MethodInfo, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionDbFunctionBuilder>;
348
- HasDbFunction(name: string, returnType: System.Type, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionDbFunctionBuilder>;
349
- HasDefaultSchema(schema: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionModelBuilder | undefined>;
350
- CanSetDefaultSchema(schema: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
351
- HasMaxIdentifierLength(length: System.Nullable_1<System_Internal.Int32>, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionModelBuilder | undefined>;
352
- CanSetMaxIdentifierLength(length: System.Nullable_1<System_Internal.Int32>, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
353
- UseCollation(collation: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionModelBuilder | undefined>;
354
- CanSetCollation(collation: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
355
- }
356
-
357
- export interface __Ext_Microsoft_EntityFrameworkCore_IConventionPropertyBuilder {
358
- HasColumnName(name: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder | undefined>;
359
- HasColumnName(name: string, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder | undefined>;
360
- CanSetColumnName(name: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
361
- CanSetColumnName(name: string, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
362
- HasColumnOrder(order: System.Nullable_1<System_Internal.Int32>, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder | undefined>;
363
- CanSetColumnOrder(order: System.Nullable_1<System_Internal.Int32>, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
364
- HasColumnType(typeName: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder | undefined>;
365
- CanSetColumnType(typeName: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
366
- IsFixedLength(fixedLength: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder | undefined>;
367
- CanSetIsFixedLength(fixedLength: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
368
- HasDefaultValueSql(sql: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder | undefined>;
369
- CanSetDefaultValueSql(sql: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
370
- HasComputedColumnSql(sql: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder | undefined>;
371
- IsStoredComputedColumn(stored: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder | undefined>;
372
- CanSetComputedColumnSql(sql: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
373
- CanSetIsStoredComputedColumn(stored: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
374
- HasDefaultValue(value: unknown, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder | undefined>;
375
- CanSetDefaultValue(value: unknown, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
376
- HasComment(comment: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder | undefined>;
377
- CanSetComment(comment: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
378
- UseCollation(collation: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder | undefined>;
379
- CanSetCollation(collation: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
380
- HasJsonPropertyName(name: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder | undefined>;
381
- CanSetJsonPropertyName(name: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
382
- }
383
-
384
- export interface __Ext_Microsoft_EntityFrameworkCore_IConventionTriggerBuilder {
385
- HasDatabaseName(name: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionTriggerBuilder | undefined>;
386
- CanSetDatabaseName(name: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
387
- HasTableName(name: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionTriggerBuilder | undefined>;
388
- CanSetTableName(name: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
389
- HasTableSchema(schema: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionTriggerBuilder | undefined>;
390
- CanSetTableSchema(schema: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
391
- }
392
-
393
- export interface __Ext_Microsoft_EntityFrameworkCore_IndexBuilder {
394
- HasDatabaseName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder>;
395
- HasName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder>;
396
- HasFilter(sql: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder>;
397
- }
398
-
399
- export interface __Ext_Microsoft_EntityFrameworkCore_IndexBuilder_1<T> {
400
- HasName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder>;
401
- HasDatabaseName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder_1<T>>;
402
- HasFilter(sql: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder_1<T>>;
403
- }
404
-
405
- export interface __Ext_Microsoft_EntityFrameworkCore_KeyBuilder {
406
- HasName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.KeyBuilder>;
407
- }
408
-
409
- export interface __Ext_Microsoft_EntityFrameworkCore_KeyBuilder_1<T> {
410
- HasName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.KeyBuilder_1<T>>;
411
- }
412
-
413
- export interface __Ext_Microsoft_EntityFrameworkCore_OwnedNavigationBuilder {
414
- ToFunction(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
415
- ToFunction(function_: System_Reflection.MethodInfo): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
416
- ToFunction(name: string, configureFunction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationTableValuedFunctionBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
417
- ToFunction(function_: System_Reflection.MethodInfo, configureFunction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationTableValuedFunctionBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
418
- HasCheckConstraint(name: string, sql: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
419
- HasCheckConstraint(name: string, sql: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.CheckConstraintBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
420
- ToTable(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
421
- ToTable(buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationTableBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
422
- ToTable(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationTableBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
423
- ToTable(name: string, schema: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
424
- ToTable(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationTableBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
425
- SplitToTable(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationSplitTableBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
426
- SplitToTable(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationSplitTableBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
427
- ToView(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
428
- ToView(name: string, schema: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
429
- ToView(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationViewBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
430
- ToView(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationViewBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
431
- SplitToView(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationSplitViewBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
432
- SplitToView(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationSplitViewBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
433
- UpdateUsingStoredProcedure(buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
434
- UpdateUsingStoredProcedure(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
435
- UpdateUsingStoredProcedure(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
436
- DeleteUsingStoredProcedure(buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
437
- DeleteUsingStoredProcedure(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
438
- DeleteUsingStoredProcedure(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
439
- InsertUsingStoredProcedure(buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
440
- InsertUsingStoredProcedure(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
441
- InsertUsingStoredProcedure(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
442
- ToJson(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
443
- ToJson(jsonColumnName: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
444
- HasColumnType(columnType: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
445
- HasJsonPropertyName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
446
- }
447
-
448
- export interface __Ext_Microsoft_EntityFrameworkCore_OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity> {
449
- ToFunction(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
450
- ToFunction(function_: System_Reflection.MethodInfo): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
451
- ToFunction(name: string, configureFunction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationTableValuedFunctionBuilder_2<TOwnerEntity, TDependentEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
452
- ToFunction(function_: System_Reflection.MethodInfo, configureFunction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationTableValuedFunctionBuilder_2<TOwnerEntity, TDependentEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
453
- HasCheckConstraint(name: string, sql: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
454
- HasCheckConstraint(name: string, sql: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.CheckConstraintBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
455
- ToTable(buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationTableBuilder_2<TOwnerEntity, TDependentEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
456
- ToTable(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
457
- ToTable(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationTableBuilder_2<TOwnerEntity, TDependentEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
458
- ToTable(name: string, schema: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
459
- ToTable(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationTableBuilder_2<TOwnerEntity, TDependentEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
460
- SplitToTable(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationSplitTableBuilder_2<TOwnerEntity, TDependentEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
461
- SplitToTable(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationSplitTableBuilder_2<TOwnerEntity, TDependentEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
462
- ToView(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
463
- ToView(name: string, schema: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
464
- ToView(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationViewBuilder_2<TOwnerEntity, TDependentEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
465
- ToView(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationViewBuilder_2<TOwnerEntity, TDependentEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
466
- SplitToView(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationSplitViewBuilder_2<TOwnerEntity, TDependentEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
467
- SplitToView(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationSplitViewBuilder_2<TOwnerEntity, TDependentEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
468
- UpdateUsingStoredProcedure(buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder_2<TOwnerEntity, TDependentEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
469
- UpdateUsingStoredProcedure(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder_2<TOwnerEntity, TDependentEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
470
- UpdateUsingStoredProcedure(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder_2<TOwnerEntity, TDependentEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
471
- DeleteUsingStoredProcedure(buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder_2<TOwnerEntity, TDependentEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
472
- DeleteUsingStoredProcedure(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder_2<TOwnerEntity, TDependentEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
473
- DeleteUsingStoredProcedure(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder_2<TOwnerEntity, TDependentEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
474
- InsertUsingStoredProcedure(buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder_2<TOwnerEntity, TDependentEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
475
- InsertUsingStoredProcedure(name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder_2<TOwnerEntity, TDependentEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
476
- InsertUsingStoredProcedure(name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder_2<TOwnerEntity, TDependentEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
477
- ToJson(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
478
- ToJson(jsonColumnName: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
479
- HasColumnType(columnType: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
480
- HasJsonPropertyName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
481
- }
482
-
483
- export interface __Ext_Microsoft_EntityFrameworkCore_OwnershipBuilder {
484
- HasConstraintName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnershipBuilder>;
485
- }
486
-
487
- export interface __Ext_Microsoft_EntityFrameworkCore_OwnershipBuilder_2<TEntity, TDependentEntity> {
488
- HasConstraintName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnershipBuilder_2<TEntity, TDependentEntity>>;
489
- }
490
-
491
- export interface __Ext_Microsoft_EntityFrameworkCore_PrimitiveCollectionBuilder {
492
- HasColumnName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder>;
493
- HasColumnOrder(order: System.Nullable_1<System_Internal.Int32>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder>;
494
- HasColumnType(typeName: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder>;
495
- IsFixedLength(fixedLength?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder>;
496
- HasDefaultValueSql(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder>;
497
- HasDefaultValueSql(sql: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder>;
498
- HasComputedColumnSql(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder>;
499
- HasComputedColumnSql(sql: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder>;
500
- HasComputedColumnSql(sql: string, stored: System.Nullable_1<System_Internal.Boolean>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder>;
501
- HasDefaultValue(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder>;
502
- HasDefaultValue(value: unknown): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder>;
503
- HasComment(comment: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder>;
504
- UseCollation(collation: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder>;
505
- HasJsonPropertyName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder>;
506
- }
507
-
508
- export interface __Ext_Microsoft_EntityFrameworkCore_PrimitiveCollectionBuilder_1<TProperty> {
509
- HasColumnName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<TProperty>>;
510
- HasColumnOrder(order: System.Nullable_1<System_Internal.Int32>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<TProperty>>;
511
- HasColumnType(typeName: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<TProperty>>;
512
- IsFixedLength(fixedLength?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<TProperty>>;
513
- HasDefaultValueSql(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<TProperty>>;
514
- HasDefaultValueSql(sql: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<TProperty>>;
515
- HasComputedColumnSql(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<TProperty>>;
516
- HasComputedColumnSql(sql: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<TProperty>>;
517
- HasComputedColumnSql(sql: string, stored: System.Nullable_1<System_Internal.Boolean>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<TProperty>>;
518
- HasDefaultValue(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<TProperty>>;
519
- HasDefaultValue(value: unknown): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<TProperty>>;
520
- HasComment(comment: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<TProperty>>;
521
- UseCollation(collation: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<TProperty>>;
522
- HasJsonPropertyName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<TProperty>>;
523
- }
524
-
525
- export interface __Ext_Microsoft_EntityFrameworkCore_PropertiesConfigurationBuilder {
526
- HaveColumnType(typeName: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertiesConfigurationBuilder>;
527
- AreFixedLength(fixedLength?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertiesConfigurationBuilder>;
528
- UseCollation(collation: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertiesConfigurationBuilder>;
529
- }
530
-
531
- export interface __Ext_Microsoft_EntityFrameworkCore_PropertiesConfigurationBuilder_1<TProperty> {
532
- HaveColumnType(typeName: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertiesConfigurationBuilder_1<TProperty>>;
533
- AreFixedLength(fixedLength?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertiesConfigurationBuilder_1<TProperty>>;
534
- UseCollation(collation: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertiesConfigurationBuilder_1<TProperty>>;
535
- }
536
-
537
- export interface __Ext_Microsoft_EntityFrameworkCore_PropertyBuilder {
538
- HasColumnName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
539
- HasColumnOrder(order: System.Nullable_1<System_Internal.Int32>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
540
- HasColumnType(typeName: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
541
- IsFixedLength(fixedLength?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
542
- HasDefaultValueSql(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
543
- HasDefaultValueSql(sql: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
544
- HasComputedColumnSql(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
545
- HasComputedColumnSql(sql: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
546
- HasComputedColumnSql(sql: string, stored: System.Nullable_1<System_Internal.Boolean>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
547
- HasDefaultValue(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
548
- HasDefaultValue(value: unknown): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
549
- HasComment(comment: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
550
- UseCollation(collation: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
551
- HasJsonPropertyName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
552
- }
553
-
554
- export interface __Ext_Microsoft_EntityFrameworkCore_PropertyBuilder_1<TProperty> {
555
- HasColumnName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>>;
556
- HasColumnOrder(order: System.Nullable_1<System_Internal.Int32>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>>;
557
- HasColumnType(typeName: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>>;
558
- IsFixedLength(fixedLength?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>>;
559
- HasDefaultValueSql(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>>;
560
- HasDefaultValueSql(sql: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>>;
561
- HasComputedColumnSql(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>>;
562
- HasComputedColumnSql(sql: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>>;
563
- HasComputedColumnSql(sql: string, stored: System.Nullable_1<System_Internal.Boolean>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>>;
564
- HasDefaultValue(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>>;
565
- HasDefaultValue(value: unknown): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>>;
566
- HasComment(comment: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>>;
567
- UseCollation(collation: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>>;
568
- HasJsonPropertyName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>>;
569
- }
570
-
571
- export interface __Ext_Microsoft_EntityFrameworkCore_ReferenceCollectionBuilder {
572
- HasConstraintName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ReferenceCollectionBuilder>;
573
- }
574
-
575
- export interface __Ext_Microsoft_EntityFrameworkCore_ReferenceCollectionBuilder_2<TPrincipalEntity, TDependentEntity> {
576
- HasConstraintName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ReferenceCollectionBuilder_2<TPrincipalEntity, TDependentEntity>>;
577
- }
578
-
579
- export interface __Ext_Microsoft_EntityFrameworkCore_ReferenceReferenceBuilder {
580
- HasConstraintName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ReferenceReferenceBuilder>;
581
- }
582
-
583
- export interface __Ext_Microsoft_EntityFrameworkCore_ReferenceReferenceBuilder_2<TEntity, TRelatedEntity> {
584
- HasConstraintName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ReferenceReferenceBuilder_2<TEntity, TRelatedEntity>>;
585
- }
586
-
587
- export interface __Ext_Microsoft_EntityFrameworkCore_TypeMappingConfigurationBuilder {
588
- HasColumnType(typeName: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.TypeMappingConfigurationBuilder>;
589
- IsFixedLength(fixedLength?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.TypeMappingConfigurationBuilder>;
590
- }
591
-
592
- export interface __Ext_Microsoft_EntityFrameworkCore_TypeMappingConfigurationBuilder_1<TProperty> {
593
- HasColumnType(typeName: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.TypeMappingConfigurationBuilder_1<TProperty>>;
594
- IsFixedLength(fixedLength?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.TypeMappingConfigurationBuilder_1<TProperty>>;
595
- }
596
-
597
- export interface __Ext_Microsoft_EntityFrameworkCore_IConventionComplexProperty {
598
- SetJsonPropertyName(name: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
599
- GetJsonPropertyNameConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
600
- }
601
-
602
- export interface __Ext_Microsoft_EntityFrameworkCore_IConventionElementType {
603
- SetStoreType(value: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
604
- GetStoreTypeConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
605
- SetIsFixedLength(fixedLength: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
606
- GetIsFixedLengthConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
607
- }
608
-
609
- export interface __Ext_Microsoft_EntityFrameworkCore_IConventionEntityType {
610
- GetContainerColumnName(): Rewrap<this, string | undefined>;
611
- GetContainerColumnType(): Rewrap<this, string | undefined>;
612
- GetTableName(): Rewrap<this, string | undefined>;
613
- GetDefaultTableName(truncate?: boolean): Rewrap<this, string | undefined>;
614
- GetSchema(): Rewrap<this, string | undefined>;
615
- GetDefaultSchema(): Rewrap<this, string | undefined>;
616
- GetSchemaQualifiedTableName(): Rewrap<this, string | undefined>;
617
- GetSchemaQualifiedViewName(): Rewrap<this, string | undefined>;
618
- GetViewName(): Rewrap<this, string | undefined>;
619
- GetDefaultViewName(): Rewrap<this, string | undefined>;
620
- GetViewSchema(): Rewrap<this, string | undefined>;
621
- GetDefaultViewSchema(): Rewrap<this, string | undefined>;
622
- GetDefaultSqlQueryName(): Rewrap<this, string>;
623
- GetSqlQuery(): Rewrap<this, string | undefined>;
624
- GetFunctionName(): Rewrap<this, string | undefined>;
625
- GetComment(): Rewrap<this, string | undefined>;
626
- IsTableExcludedFromMigrations(): Rewrap<this, boolean>;
627
- IsTableExcludedFromMigrations(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, boolean>;
628
- GetMappingStrategy(): Rewrap<this, string | undefined>;
629
- IsMappedToJson(): Rewrap<this, boolean>;
630
- GetContainerColumnTypeMapping(): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping | undefined>;
631
- GetJsonPropertyName(): Rewrap<this, string | undefined>;
632
- SetTableName(name: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
633
- GetTableNameConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
634
- SetSchema(value: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
635
- GetSchemaConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
636
- SetViewName(name: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
637
- GetViewNameConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
638
- SetViewSchema(value: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
639
- GetViewSchemaConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
640
- SetSqlQuery(name: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
641
- GetSqlQueryConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
642
- SetFunctionName(name: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
643
- GetFunctionNameConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
644
- GetDeleteStoredProcedure(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionStoredProcedure | undefined>;
645
- SetDeleteStoredProcedure(fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionStoredProcedure | undefined>;
646
- RemoveDeleteStoredProcedure(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionStoredProcedure | undefined>;
647
- GetDeleteStoredProcedureConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
648
- GetInsertStoredProcedure(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionStoredProcedure | undefined>;
649
- SetInsertStoredProcedure(fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionStoredProcedure | undefined>;
650
- RemoveInsertStoredProcedure(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionStoredProcedure | undefined>;
651
- GetInsertStoredProcedureConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
652
- GetUpdateStoredProcedure(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionStoredProcedure | undefined>;
653
- SetUpdateStoredProcedure(fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionStoredProcedure | undefined>;
654
- RemoveUpdateStoredProcedure(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionStoredProcedure | undefined>;
655
- GetUpdateStoredProcedureConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
656
- FindCheckConstraint(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionCheckConstraint | undefined>;
657
- AddCheckConstraint(name: string, sql: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionCheckConstraint>;
658
- RemoveCheckConstraint(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionCheckConstraint | undefined>;
659
- GetCheckConstraints(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IConventionCheckConstraint>>;
660
- GetDeclaredCheckConstraints(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IConventionCheckConstraint>>;
661
- SetComment(comment: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
662
- GetCommentConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
663
- GetMappingFragments(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IConventionEntityTypeMappingFragment>>;
664
- GetMappingFragments(storeObjectType: Microsoft_EntityFrameworkCore_Metadata.StoreObjectType): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IConventionEntityTypeMappingFragment>>;
665
- FindMappingFragment(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionEntityTypeMappingFragment | undefined>;
666
- GetOrCreateMappingFragment(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionEntityTypeMappingFragment>;
667
- RemoveMappingFragment(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionEntityTypeMappingFragment | undefined>;
668
- FindRowInternalForeignKeys(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IConventionForeignKey>>;
669
- SetIsTableExcludedFromMigrations(excluded: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
670
- SetIsTableExcludedFromMigrations(excluded: System.Nullable_1<System_Internal.Boolean>, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, fromDataAnnotation?: boolean): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
671
- GetIsTableExcludedFromMigrationsConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
672
- GetIsTableExcludedFromMigrationsConfigurationSource(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
673
- SetMappingStrategy(strategy: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
674
- GetMappingStrategyConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
675
- SetContainerColumnTypeMapping(typeMapping: Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping | undefined>;
676
- GetContainerColumnTypeMappingConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
677
- SetJsonPropertyName(name: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
678
- GetJsonPropertyNameConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
679
- }
680
-
681
- export interface __Ext_Microsoft_EntityFrameworkCore_IConventionForeignKey {
682
- GetConstraintName(): Rewrap<this, string | undefined>;
683
- GetConstraintName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, principalStoreObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
684
- GetDefaultName(): Rewrap<this, string | undefined>;
685
- GetDefaultName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, principalStoreObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
686
- IsRowInternal(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, boolean>;
687
- SetConstraintName(value: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
688
- GetConstraintNameConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
689
- FindSharedObjectRootForeignKey(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionForeignKey | undefined>;
690
- }
691
-
692
- export interface __Ext_Microsoft_EntityFrameworkCore_IConventionIndex {
693
- GetDatabaseName(): Rewrap<this, string | undefined>;
694
- GetDatabaseName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
695
- GetDefaultDatabaseName(): Rewrap<this, string | undefined>;
696
- GetDefaultDatabaseName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
697
- GetFilter(): Rewrap<this, string | undefined>;
698
- GetFilter(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
699
- SetDatabaseName(name: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
700
- GetDatabaseNameConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
701
- SetFilter(value: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
702
- GetFilterConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
703
- FindSharedObjectRootIndex(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionIndex | undefined>;
704
- }
705
-
706
- export interface __Ext_Microsoft_EntityFrameworkCore_IConventionKey {
707
- GetName(): Rewrap<this, string | undefined>;
708
- GetName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
709
- GetDefaultName(): Rewrap<this, string | undefined>;
710
- GetDefaultName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
711
- SetName(name: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
712
- GetNameConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
713
- FindSharedObjectRootKey(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionKey | undefined>;
714
- }
715
-
716
- export interface __Ext_Microsoft_EntityFrameworkCore_IConventionModel {
717
- GetDefaultSchema(): Rewrap<this, string | undefined>;
718
- GetMaxIdentifierLength(): Rewrap<this, int>;
719
- GetCollation(): Rewrap<this, string | undefined>;
720
- AreNamedDefaultConstraintsUsed(): Rewrap<this, boolean>;
721
- SetDefaultSchema(value: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
722
- GetDefaultSchemaConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
723
- SetMaxIdentifierLength(length: System.Nullable_1<System_Internal.Int32>, fromDataAnnotation?: boolean): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
724
- GetMaxIdentifierLengthConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
725
- FindSequence(name: string, schema?: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionSequence | undefined>;
726
- AddSequence(name: string, schema?: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionSequence | undefined>;
727
- RemoveSequence(name: string, schema?: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionSequence | undefined>;
728
- GetSequences(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IConventionSequence>>;
729
- FindDbFunction(method: System_Reflection.MethodInfo): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionDbFunction | undefined>;
730
- FindDbFunction(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionDbFunction | undefined>;
731
- AddDbFunction(methodInfo: System_Reflection.MethodInfo, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionDbFunction>;
732
- AddDbFunction(name: string, returnType: System.Type, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionDbFunction>;
733
- RemoveDbFunction(method: System_Reflection.MethodInfo): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionDbFunction | undefined>;
734
- RemoveDbFunction(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionDbFunction | undefined>;
735
- GetDbFunctions(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IConventionDbFunction>>;
736
- SetCollation(value: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
737
- GetCollationConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
738
- UseNamedDefaultConstraints(value: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
739
- UseNamedDefaultConstraintsConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
740
- }
741
-
742
- export interface __Ext_Microsoft_EntityFrameworkCore_IConventionProperty {
743
- GetColumnBaseName(): Rewrap<this, string>;
744
- GetColumnName(): Rewrap<this, string>;
745
- GetColumnName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
746
- GetDefaultColumnBaseName(): Rewrap<this, string>;
747
- GetDefaultColumnName(): Rewrap<this, string>;
748
- GetDefaultColumnName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
749
- GetColumnOrder(): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
750
- GetColumnOrder(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
751
- GetColumnType(): Rewrap<this, string | undefined>;
752
- GetColumnType(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
753
- GetDefaultValueSql(): Rewrap<this, string | undefined>;
754
- GetDefaultValueSql(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
755
- GetComputedColumnSql(): Rewrap<this, string | undefined>;
756
- GetComputedColumnSql(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
757
- GetIsStored(): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
758
- GetIsStored(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
759
- GetDefaultValue(): Rewrap<this, unknown | undefined>;
760
- TryGetDefaultValue(defaultValue: unknown): Rewrap<this, boolean>;
761
- GetDefaultValue(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, unknown | undefined>;
762
- TryGetDefaultValue(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, defaultValue: unknown): Rewrap<this, boolean>;
763
- GetMaxLength(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
764
- GetPrecision(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
765
- GetScale(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
766
- IsUnicode(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
767
- IsFixedLength(): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
768
- IsFixedLength(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
769
- IsColumnNullable(): Rewrap<this, boolean>;
770
- IsColumnNullable(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, boolean>;
771
- GetComment(): Rewrap<this, string | undefined>;
772
- GetComment(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
773
- GetCollation(): Rewrap<this, string | undefined>;
774
- GetCollation(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
775
- GetRelationalTypeMapping(): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping>;
776
- FindRelationalTypeMapping(): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping | undefined>;
777
- FindRelationalTypeMapping(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping | undefined>;
778
- GetMappedStoreObjects(storeObjectType: Microsoft_EntityFrameworkCore_Metadata.StoreObjectType): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier>>;
779
- GetJsonPropertyName(): Rewrap<this, string | undefined>;
780
- GetDefaultConstraintName(): Rewrap<this, string | undefined>;
781
- GetDefaultConstraintName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
782
- GetDefaultDefaultConstraintName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string>;
783
- SetColumnName(name: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
784
- SetColumnName(name: string, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
785
- GetColumnNameConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
786
- GetColumnNameConfigurationSource(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
787
- SetColumnOrder(order: System.Nullable_1<System_Internal.Int32>, fromDataAnnotation?: boolean): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
788
- GetColumnOrderConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
789
- SetColumnType(value: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
790
- GetColumnTypeConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
791
- SetDefaultValueSql(value: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
792
- GetDefaultValueSqlConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
793
- SetComputedColumnSql(value: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
794
- GetComputedColumnSqlConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
795
- SetIsStored(value: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
796
- GetIsStoredConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
797
- SetDefaultValue(value: unknown, fromDataAnnotation?: boolean): Rewrap<this, unknown | undefined>;
798
- GetDefaultValueConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
799
- SetIsFixedLength(fixedLength: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
800
- GetIsFixedLengthConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
801
- SetComment(comment: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
802
- GetCommentConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
803
- SetCollation(collation: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
804
- GetCollationConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
805
- FindSharedStoreObjectRootProperty(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionProperty | undefined>;
806
- GetOverrides(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IConventionRelationalPropertyOverrides>>;
807
- FindOverrides(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionRelationalPropertyOverrides | undefined>;
808
- GetOrCreateOverrides(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionRelationalPropertyOverrides>;
809
- RemoveOverrides(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionRelationalPropertyOverrides | undefined>;
810
- SetJsonPropertyName(name: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
811
- GetJsonPropertyNameConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
812
- SetDefaultConstraintName(defaultConstraintName: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
813
- GetDefaultConstraintNameConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
814
- }
815
-
816
- export interface __Ext_Microsoft_EntityFrameworkCore_IConventionTrigger {
817
- SetDatabaseName(name: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
818
- GetDatabaseNameConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
819
- SetTableName(name: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
820
- GetTableNameConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
821
- SetTableSchema(schema: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
822
- GetTableSchemaConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
823
- }
824
-
825
- export interface __Ext_Microsoft_EntityFrameworkCore_IConventionTypeBase {
826
- SetContainerColumnName(columnName: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
827
- GetContainerColumnNameConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
828
- SetContainerColumnType(columnType: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
829
- GetContainerColumnTypeConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
830
- }
831
-
832
- export interface __Ext_Microsoft_EntityFrameworkCore_IElementType {
833
- IsFixedLength(): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
834
- IsFixedLength(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
835
- GetRelationalTypeMapping(): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping>;
836
- FindRelationalTypeMapping(): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping | undefined>;
837
- GetStoreType(): Rewrap<this, string>;
838
- }
839
-
840
- export interface __Ext_Microsoft_EntityFrameworkCore_IEntityType {
841
- GetContainerColumnName(): Rewrap<this, string | undefined>;
842
- GetContainerColumnType(): Rewrap<this, string | undefined>;
843
- GetTableName(): Rewrap<this, string | undefined>;
844
- GetDefaultTableName(truncate?: boolean): Rewrap<this, string | undefined>;
845
- GetSchema(): Rewrap<this, string | undefined>;
846
- GetDefaultSchema(): Rewrap<this, string | undefined>;
847
- GetSchemaQualifiedTableName(): Rewrap<this, string | undefined>;
848
- GetSchemaQualifiedViewName(): Rewrap<this, string | undefined>;
849
- GetViewName(): Rewrap<this, string | undefined>;
850
- GetDefaultViewName(): Rewrap<this, string | undefined>;
851
- GetViewSchema(): Rewrap<this, string | undefined>;
852
- GetDefaultViewSchema(): Rewrap<this, string | undefined>;
853
- GetDefaultSqlQueryName(): Rewrap<this, string>;
854
- GetSqlQuery(): Rewrap<this, string | undefined>;
855
- GetFunctionName(): Rewrap<this, string | undefined>;
856
- GetComment(): Rewrap<this, string | undefined>;
857
- IsTableExcludedFromMigrations(): Rewrap<this, boolean>;
858
- IsTableExcludedFromMigrations(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, boolean>;
859
- GetMappingStrategy(): Rewrap<this, string | undefined>;
860
- IsMappedToJson(): Rewrap<this, boolean>;
861
- GetContainerColumnTypeMapping(): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping | undefined>;
862
- GetJsonPropertyName(): Rewrap<this, string | undefined>;
863
- GetDeleteStoredProcedure(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IStoredProcedure | undefined>;
864
- GetInsertStoredProcedure(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IStoredProcedure | undefined>;
865
- GetUpdateStoredProcedure(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IStoredProcedure | undefined>;
866
- FindCheckConstraint(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.ICheckConstraint | undefined>;
867
- GetCheckConstraints(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.ICheckConstraint>>;
868
- GetDeclaredCheckConstraints(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.ICheckConstraint>>;
869
- GetMappingFragments(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IEntityTypeMappingFragment>>;
870
- GetMappingFragments(storeObjectType: Microsoft_EntityFrameworkCore_Metadata.StoreObjectType): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IEntityTypeMappingFragment>>;
871
- FindMappingFragment(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IEntityTypeMappingFragment | undefined>;
872
- FindRowInternalForeignKeys(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IForeignKey>>;
873
- }
874
-
875
- export interface __Ext_Microsoft_EntityFrameworkCore_IForeignKey {
876
- GetConstraintName(): Rewrap<this, string | undefined>;
877
- GetConstraintName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, principalStoreObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
878
- GetDefaultName(): Rewrap<this, string | undefined>;
879
- GetDefaultName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, principalStoreObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
880
- IsRowInternal(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, boolean>;
881
- GetMappedConstraints(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IForeignKeyConstraint>>;
882
- FindSharedObjectRootForeignKey(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IForeignKey | undefined>;
883
- }
884
-
885
- export interface __Ext_Microsoft_EntityFrameworkCore_IIndex {
886
- GetDatabaseName(): Rewrap<this, string | undefined>;
887
- GetDatabaseName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
888
- GetDefaultDatabaseName(): Rewrap<this, string | undefined>;
889
- GetDefaultDatabaseName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
890
- GetFilter(): Rewrap<this, string | undefined>;
891
- GetFilter(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
892
- GetMappedTableIndexes(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.ITableIndex>>;
893
- FindSharedObjectRootIndex(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IIndex | undefined>;
894
- }
895
-
896
- export interface __Ext_Microsoft_EntityFrameworkCore_IKey {
897
- GetName(): Rewrap<this, string | undefined>;
898
- GetName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
899
- GetDefaultName(): Rewrap<this, string | undefined>;
900
- GetDefaultName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
901
- GetMappedConstraints(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IUniqueConstraint>>;
902
- FindSharedObjectRootKey(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IKey | undefined>;
903
- }
904
-
905
- export interface __Ext_Microsoft_EntityFrameworkCore_IModel {
906
- GetDefaultSchema(): Rewrap<this, string | undefined>;
907
- GetMaxIdentifierLength(): Rewrap<this, int>;
908
- GetCollation(): Rewrap<this, string | undefined>;
909
- AreNamedDefaultConstraintsUsed(): Rewrap<this, boolean>;
910
- GetRelationalModel(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IRelationalModel>;
911
- FindSequence(name: string, schema?: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.ISequence | undefined>;
912
- GetSequences(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.ISequence>>;
913
- FindDbFunction(method: System_Reflection.MethodInfo): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IDbFunction | undefined>;
914
- FindDbFunction(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IDbFunction | undefined>;
915
- GetDbFunctions(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IDbFunction>>;
916
- }
917
-
918
- export interface __Ext_Microsoft_EntityFrameworkCore_IMutableComplexProperty {
919
- SetJsonPropertyName(name: string): Rewrap<this, void>;
920
- }
921
-
922
- export interface __Ext_Microsoft_EntityFrameworkCore_IMutableElementType {
923
- SetStoreType(value: string): Rewrap<this, void>;
924
- SetIsFixedLength(fixedLength: System.Nullable_1<System_Internal.Boolean>): Rewrap<this, void>;
925
- }
926
-
927
- export interface __Ext_Microsoft_EntityFrameworkCore_IMutableEntityType {
928
- GetContainerColumnName(): Rewrap<this, string | undefined>;
929
- GetContainerColumnType(): Rewrap<this, string | undefined>;
930
- GetTableName(): Rewrap<this, string | undefined>;
931
- GetDefaultTableName(truncate?: boolean): Rewrap<this, string | undefined>;
932
- GetSchema(): Rewrap<this, string | undefined>;
933
- GetDefaultSchema(): Rewrap<this, string | undefined>;
934
- GetSchemaQualifiedTableName(): Rewrap<this, string | undefined>;
935
- GetSchemaQualifiedViewName(): Rewrap<this, string | undefined>;
936
- GetViewName(): Rewrap<this, string | undefined>;
937
- GetDefaultViewName(): Rewrap<this, string | undefined>;
938
- GetViewSchema(): Rewrap<this, string | undefined>;
939
- GetDefaultViewSchema(): Rewrap<this, string | undefined>;
940
- GetDefaultSqlQueryName(): Rewrap<this, string>;
941
- GetSqlQuery(): Rewrap<this, string | undefined>;
942
- GetFunctionName(): Rewrap<this, string | undefined>;
943
- GetComment(): Rewrap<this, string | undefined>;
944
- IsTableExcludedFromMigrations(): Rewrap<this, boolean>;
945
- IsTableExcludedFromMigrations(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, boolean>;
946
- GetMappingStrategy(): Rewrap<this, string | undefined>;
947
- IsMappedToJson(): Rewrap<this, boolean>;
948
- GetContainerColumnTypeMapping(): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping | undefined>;
949
- GetJsonPropertyName(): Rewrap<this, string | undefined>;
950
- SetTableName(name: string): Rewrap<this, void>;
951
- SetSchema(value: string): Rewrap<this, void>;
952
- SetViewName(name: string): Rewrap<this, void>;
953
- SetViewSchema(value: string): Rewrap<this, void>;
954
- SetSqlQuery(name: string): Rewrap<this, void>;
955
- SetFunctionName(name: string): Rewrap<this, void>;
956
- GetDeleteStoredProcedure(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableStoredProcedure | undefined>;
957
- SetDeleteStoredProcedure(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableStoredProcedure>;
958
- RemoveDeleteStoredProcedure(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableStoredProcedure | undefined>;
959
- GetInsertStoredProcedure(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableStoredProcedure | undefined>;
960
- SetInsertStoredProcedure(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableStoredProcedure>;
961
- RemoveInsertStoredProcedure(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableStoredProcedure | undefined>;
962
- GetUpdateStoredProcedure(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableStoredProcedure | undefined>;
963
- SetUpdateStoredProcedure(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableStoredProcedure>;
964
- RemoveUpdateStoredProcedure(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableStoredProcedure | undefined>;
965
- FindCheckConstraint(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableCheckConstraint | undefined>;
966
- AddCheckConstraint(name: string, sql: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableCheckConstraint>;
967
- RemoveCheckConstraint(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableCheckConstraint | undefined>;
968
- GetCheckConstraints(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IMutableCheckConstraint>>;
969
- GetDeclaredCheckConstraints(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IMutableCheckConstraint>>;
970
- SetComment(comment: string): Rewrap<this, void>;
971
- GetMappingFragments(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IMutableEntityTypeMappingFragment>>;
972
- GetMappingFragments(storeObjectType: Microsoft_EntityFrameworkCore_Metadata.StoreObjectType): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IMutableEntityTypeMappingFragment>>;
973
- FindMappingFragment(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableEntityTypeMappingFragment | undefined>;
974
- GetOrCreateMappingFragment(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableEntityTypeMappingFragment>;
975
- RemoveMappingFragment(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableEntityTypeMappingFragment | undefined>;
976
- FindRowInternalForeignKeys(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IMutableForeignKey>>;
977
- SetIsTableExcludedFromMigrations(excluded: System.Nullable_1<System_Internal.Boolean>): Rewrap<this, void>;
978
- SetIsTableExcludedFromMigrations(excluded: System.Nullable_1<System_Internal.Boolean>, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, void>;
979
- SetMappingStrategy(strategy: string): Rewrap<this, void>;
980
- SetContainerColumnTypeMapping(typeMapping: Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping): Rewrap<this, void>;
981
- SetJsonPropertyName(name: string): Rewrap<this, void>;
982
- }
983
-
984
- export interface __Ext_Microsoft_EntityFrameworkCore_IMutableForeignKey {
985
- GetConstraintName(): Rewrap<this, string | undefined>;
986
- GetConstraintName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, principalStoreObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
987
- GetDefaultName(): Rewrap<this, string | undefined>;
988
- GetDefaultName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, principalStoreObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
989
- IsRowInternal(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, boolean>;
990
- SetConstraintName(value: string): Rewrap<this, void>;
991
- FindSharedObjectRootForeignKey(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableForeignKey | undefined>;
992
- }
993
-
994
- export interface __Ext_Microsoft_EntityFrameworkCore_IMutableIndex {
995
- GetDatabaseName(): Rewrap<this, string | undefined>;
996
- GetDatabaseName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
997
- GetDefaultDatabaseName(): Rewrap<this, string | undefined>;
998
- GetDefaultDatabaseName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
999
- GetFilter(): Rewrap<this, string | undefined>;
1000
- GetFilter(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
1001
- SetDatabaseName(name: string): Rewrap<this, void>;
1002
- SetFilter(value: string): Rewrap<this, void>;
1003
- FindSharedObjectRootIndex(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableIndex | undefined>;
1004
- }
1005
-
1006
- export interface __Ext_Microsoft_EntityFrameworkCore_IMutableKey {
1007
- GetName(): Rewrap<this, string | undefined>;
1008
- GetName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
1009
- GetDefaultName(): Rewrap<this, string | undefined>;
1010
- GetDefaultName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
1011
- SetName(name: string): Rewrap<this, void>;
1012
- FindSharedObjectRootKey(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableKey | undefined>;
1013
- }
1014
-
1015
- export interface __Ext_Microsoft_EntityFrameworkCore_IMutableModel {
1016
- GetDefaultSchema(): Rewrap<this, string | undefined>;
1017
- GetMaxIdentifierLength(): Rewrap<this, int>;
1018
- GetCollation(): Rewrap<this, string | undefined>;
1019
- AreNamedDefaultConstraintsUsed(): Rewrap<this, boolean>;
1020
- SetDefaultSchema(value: string): Rewrap<this, void>;
1021
- SetMaxIdentifierLength(length: System.Nullable_1<System_Internal.Int32>): Rewrap<this, void>;
1022
- FindSequence(name: string, schema?: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableSequence | undefined>;
1023
- AddSequence(name: string, schema?: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableSequence>;
1024
- RemoveSequence(name: string, schema?: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableSequence | undefined>;
1025
- GetSequences(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IMutableSequence>>;
1026
- FindDbFunction(method: System_Reflection.MethodInfo): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableDbFunction | undefined>;
1027
- FindDbFunction(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableDbFunction | undefined>;
1028
- AddDbFunction(methodInfo: System_Reflection.MethodInfo): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableDbFunction>;
1029
- AddDbFunction(name: string, returnType: System.Type): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableDbFunction>;
1030
- RemoveDbFunction(method: System_Reflection.MethodInfo): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableDbFunction | undefined>;
1031
- RemoveDbFunction(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableDbFunction | undefined>;
1032
- GetDbFunctions(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IMutableDbFunction>>;
1033
- SetCollation(value: string): Rewrap<this, void>;
1034
- UseNamedDefaultConstraints(value: boolean): Rewrap<this, void>;
1035
- }
1036
-
1037
- export interface __Ext_Microsoft_EntityFrameworkCore_IMutableProperty {
1038
- GetColumnBaseName(): Rewrap<this, string>;
1039
- GetColumnName(): Rewrap<this, string>;
1040
- GetColumnName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
1041
- GetDefaultColumnBaseName(): Rewrap<this, string>;
1042
- GetDefaultColumnName(): Rewrap<this, string>;
1043
- GetDefaultColumnName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
1044
- GetColumnOrder(): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
1045
- GetColumnOrder(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
1046
- GetColumnType(): Rewrap<this, string | undefined>;
1047
- GetColumnType(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
1048
- GetDefaultValueSql(): Rewrap<this, string | undefined>;
1049
- GetDefaultValueSql(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
1050
- GetComputedColumnSql(): Rewrap<this, string | undefined>;
1051
- GetComputedColumnSql(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
1052
- GetIsStored(): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
1053
- GetIsStored(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
1054
- GetDefaultValue(): Rewrap<this, unknown | undefined>;
1055
- TryGetDefaultValue(defaultValue: unknown): Rewrap<this, boolean>;
1056
- GetDefaultValue(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, unknown | undefined>;
1057
- TryGetDefaultValue(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, defaultValue: unknown): Rewrap<this, boolean>;
1058
- GetMaxLength(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
1059
- GetPrecision(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
1060
- GetScale(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
1061
- IsUnicode(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
1062
- IsFixedLength(): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
1063
- IsFixedLength(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
1064
- IsColumnNullable(): Rewrap<this, boolean>;
1065
- IsColumnNullable(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, boolean>;
1066
- GetComment(): Rewrap<this, string | undefined>;
1067
- GetComment(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
1068
- GetCollation(): Rewrap<this, string | undefined>;
1069
- GetCollation(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
1070
- GetRelationalTypeMapping(): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping>;
1071
- FindRelationalTypeMapping(): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping | undefined>;
1072
- FindRelationalTypeMapping(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping | undefined>;
1073
- GetMappedStoreObjects(storeObjectType: Microsoft_EntityFrameworkCore_Metadata.StoreObjectType): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier>>;
1074
- GetJsonPropertyName(): Rewrap<this, string | undefined>;
1075
- GetDefaultConstraintName(): Rewrap<this, string | undefined>;
1076
- GetDefaultConstraintName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
1077
- GetDefaultDefaultConstraintName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string>;
1078
- SetColumnName(name: string): Rewrap<this, void>;
1079
- SetColumnName(name: string, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, void>;
1080
- SetColumnOrder(order: System.Nullable_1<System_Internal.Int32>): Rewrap<this, void>;
1081
- SetColumnType(value: string): Rewrap<this, void>;
1082
- SetDefaultValueSql(value: string): Rewrap<this, void>;
1083
- SetComputedColumnSql(value: string): Rewrap<this, void>;
1084
- SetIsStored(value: System.Nullable_1<System_Internal.Boolean>): Rewrap<this, void>;
1085
- SetDefaultValue(value: unknown): Rewrap<this, void>;
1086
- SetIsFixedLength(fixedLength: System.Nullable_1<System_Internal.Boolean>): Rewrap<this, void>;
1087
- SetComment(comment: string): Rewrap<this, void>;
1088
- SetCollation(collation: string): Rewrap<this, void>;
1089
- FindSharedStoreObjectRootProperty(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableProperty | undefined>;
1090
- GetOverrides(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IMutableRelationalPropertyOverrides>>;
1091
- FindOverrides(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableRelationalPropertyOverrides | undefined>;
1092
- GetOrCreateOverrides(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableRelationalPropertyOverrides>;
1093
- RemoveOverrides(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableRelationalPropertyOverrides | undefined>;
1094
- SetJsonPropertyName(name: string): Rewrap<this, void>;
1095
- SetDefaultConstraintName(defaultConstraintName: string): Rewrap<this, void>;
1096
- }
1097
-
1098
- export interface __Ext_Microsoft_EntityFrameworkCore_IMutableTrigger {
1099
- SetDatabaseName(name: string): Rewrap<this, void>;
1100
- SetTableName(name: string): Rewrap<this, void>;
1101
- SetTableSchema(schema: string): Rewrap<this, void>;
1102
- }
1103
-
1104
- export interface __Ext_Microsoft_EntityFrameworkCore_IMutableTypeBase {
1105
- SetContainerColumnName(columnName: string): Rewrap<this, void>;
1106
- SetContainerColumnType(columnType: string): Rewrap<this, void>;
1107
- }
1108
-
1109
- export interface __Ext_Microsoft_EntityFrameworkCore_IProperty {
1110
- GetColumnBaseName(): Rewrap<this, string>;
1111
- GetColumnName(): Rewrap<this, string>;
1112
- GetColumnName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
1113
- GetDefaultColumnBaseName(): Rewrap<this, string>;
1114
- GetDefaultColumnName(): Rewrap<this, string>;
1115
- GetDefaultColumnName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
1116
- GetColumnOrder(): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
1117
- GetColumnOrder(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
1118
- GetDefaultValueSql(): Rewrap<this, string | undefined>;
1119
- GetDefaultValueSql(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
1120
- GetComputedColumnSql(): Rewrap<this, string | undefined>;
1121
- GetComputedColumnSql(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
1122
- GetIsStored(): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
1123
- GetIsStored(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
1124
- GetDefaultValue(): Rewrap<this, unknown | undefined>;
1125
- TryGetDefaultValue(defaultValue: unknown): Rewrap<this, boolean>;
1126
- GetDefaultValue(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, unknown | undefined>;
1127
- TryGetDefaultValue(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, defaultValue: unknown): Rewrap<this, boolean>;
1128
- GetMaxLength(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
1129
- GetPrecision(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
1130
- GetScale(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
1131
- IsUnicode(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
1132
- IsFixedLength(): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
1133
- IsFixedLength(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
1134
- IsColumnNullable(): Rewrap<this, boolean>;
1135
- IsColumnNullable(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, boolean>;
1136
- GetComment(): Rewrap<this, string | undefined>;
1137
- GetComment(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
1138
- GetCollation(): Rewrap<this, string | undefined>;
1139
- GetCollation(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
1140
- GetRelationalTypeMapping(): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping>;
1141
- FindRelationalTypeMapping(): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping | undefined>;
1142
- FindRelationalTypeMapping(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping | undefined>;
1143
- GetMappedStoreObjects(storeObjectType: Microsoft_EntityFrameworkCore_Metadata.StoreObjectType): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier>>;
1144
- GetJsonPropertyName(): Rewrap<this, string | undefined>;
1145
- GetDefaultConstraintName(): Rewrap<this, string | undefined>;
1146
- GetDefaultConstraintName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
1147
- GetDefaultDefaultConstraintName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string>;
1148
- GetColumnType(): Rewrap<this, string>;
1149
- GetColumnType(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string>;
1150
- GetDefaultColumnMappings(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IColumnMappingBase>>;
1151
- GetTableColumnMappings(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IColumnMapping>>;
1152
- GetViewColumnMappings(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IViewColumnMapping>>;
1153
- GetSqlQueryColumnMappings(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.ISqlQueryColumnMapping>>;
1154
- GetFunctionColumnMappings(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IFunctionColumnMapping>>;
1155
- GetInsertStoredProcedureResultColumnMappings(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IStoredProcedureResultColumnMapping>>;
1156
- GetInsertStoredProcedureParameterMappings(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IStoredProcedureParameterMapping>>;
1157
- GetDeleteStoredProcedureParameterMappings(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IStoredProcedureParameterMapping>>;
1158
- GetUpdateStoredProcedureResultColumnMappings(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IStoredProcedureResultColumnMapping>>;
1159
- GetUpdateStoredProcedureParameterMappings(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IStoredProcedureParameterMapping>>;
1160
- FindColumn(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IColumnBase | undefined>;
1161
- FindSharedStoreObjectRootProperty(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IProperty | undefined>;
1162
- GetOverrides(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IRelationalPropertyOverrides>>;
1163
- FindOverrides(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IRelationalPropertyOverrides | undefined>;
1164
- GetReaderFieldValue(relationalReader: Microsoft_EntityFrameworkCore_Storage.RelationalDataReader, ordinal: int, detailedErrorsEnabled: boolean): Rewrap<this, unknown | undefined>;
1165
- }
1166
-
1167
- export interface __Ext_Microsoft_EntityFrameworkCore_IReadOnlyComplexProperty {
1168
- GetJsonPropertyName(): Rewrap<this, string | undefined>;
1169
- }
1170
-
1171
- export interface __Ext_Microsoft_EntityFrameworkCore_IReadOnlyElementType {
1172
- GetStoreType(): Rewrap<this, string | undefined>;
1173
- IsFixedLength(): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
1174
- IsFixedLength(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
1175
- GetRelationalTypeMapping(): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping>;
1176
- FindRelationalTypeMapping(): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping | undefined>;
1177
- }
1178
-
1179
- export interface __Ext_Microsoft_EntityFrameworkCore_IReadOnlyEntityType {
1180
- GetContainerColumnName(): Rewrap<this, string | undefined>;
1181
- GetContainerColumnType(): Rewrap<this, string | undefined>;
1182
- GetTableName(): Rewrap<this, string | undefined>;
1183
- GetDefaultTableName(truncate?: boolean): Rewrap<this, string | undefined>;
1184
- GetSchema(): Rewrap<this, string | undefined>;
1185
- GetDefaultSchema(): Rewrap<this, string | undefined>;
1186
- GetSchemaQualifiedTableName(): Rewrap<this, string | undefined>;
1187
- GetSchemaQualifiedViewName(): Rewrap<this, string | undefined>;
1188
- GetViewName(): Rewrap<this, string | undefined>;
1189
- GetDefaultViewName(): Rewrap<this, string | undefined>;
1190
- GetViewSchema(): Rewrap<this, string | undefined>;
1191
- GetDefaultViewSchema(): Rewrap<this, string | undefined>;
1192
- GetDefaultSqlQueryName(): Rewrap<this, string>;
1193
- GetSqlQuery(): Rewrap<this, string | undefined>;
1194
- GetFunctionName(): Rewrap<this, string | undefined>;
1195
- GetDeleteStoredProcedure(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlyStoredProcedure | undefined>;
1196
- GetInsertStoredProcedure(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlyStoredProcedure | undefined>;
1197
- GetUpdateStoredProcedure(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlyStoredProcedure | undefined>;
1198
- FindCheckConstraint(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlyCheckConstraint | undefined>;
1199
- GetCheckConstraints(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyCheckConstraint>>;
1200
- GetDeclaredCheckConstraints(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyCheckConstraint>>;
1201
- GetComment(): Rewrap<this, string | undefined>;
1202
- GetMappingFragments(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityTypeMappingFragment>>;
1203
- GetMappingFragments(storeObjectType: Microsoft_EntityFrameworkCore_Metadata.StoreObjectType): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityTypeMappingFragment>>;
1204
- FindMappingFragment(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityTypeMappingFragment | undefined>;
1205
- FindRowInternalForeignKeys(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyForeignKey>>;
1206
- IsTableExcludedFromMigrations(): Rewrap<this, boolean>;
1207
- IsTableExcludedFromMigrations(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, boolean>;
1208
- GetMappingStrategy(): Rewrap<this, string | undefined>;
1209
- IsMappedToJson(): Rewrap<this, boolean>;
1210
- GetContainerColumnTypeMapping(): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping | undefined>;
1211
- GetJsonPropertyName(): Rewrap<this, string | undefined>;
1212
- }
1213
-
1214
- export interface __Ext_Microsoft_EntityFrameworkCore_IReadOnlyForeignKey {
1215
- GetConstraintName(): Rewrap<this, string | undefined>;
1216
- GetConstraintName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, principalStoreObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
1217
- GetDefaultName(): Rewrap<this, string | undefined>;
1218
- GetDefaultName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, principalStoreObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
1219
- FindSharedObjectRootForeignKey(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlyForeignKey | undefined>;
1220
- IsRowInternal(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, boolean>;
1221
- }
1222
-
1223
- export interface __Ext_Microsoft_EntityFrameworkCore_IReadOnlyIndex {
1224
- GetDatabaseName(): Rewrap<this, string | undefined>;
1225
- GetDatabaseName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
1226
- GetDefaultDatabaseName(): Rewrap<this, string | undefined>;
1227
- GetDefaultDatabaseName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
1228
- GetFilter(): Rewrap<this, string | undefined>;
1229
- GetFilter(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
1230
- FindSharedObjectRootIndex(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlyIndex | undefined>;
1231
- }
1232
-
1233
- export interface __Ext_Microsoft_EntityFrameworkCore_IReadOnlyKey {
1234
- GetName(): Rewrap<this, string | undefined>;
1235
- GetName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
1236
- GetDefaultName(): Rewrap<this, string | undefined>;
1237
- GetDefaultName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
1238
- FindSharedObjectRootKey(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlyKey | undefined>;
1239
- }
1240
-
1241
- export interface __Ext_Microsoft_EntityFrameworkCore_IReadOnlyModel {
1242
- GetDefaultSchema(): Rewrap<this, string | undefined>;
1243
- GetMaxIdentifierLength(): Rewrap<this, int>;
1244
- FindSequence(name: string, schema?: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlySequence | undefined>;
1245
- GetSequences(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlySequence>>;
1246
- FindDbFunction(method: System_Reflection.MethodInfo): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlyDbFunction | undefined>;
1247
- FindDbFunction(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlyDbFunction | undefined>;
1248
- GetDbFunctions(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyDbFunction>>;
1249
- GetCollation(): Rewrap<this, string | undefined>;
1250
- AreNamedDefaultConstraintsUsed(): Rewrap<this, boolean>;
1251
- }
1252
-
1253
- export interface __Ext_Microsoft_EntityFrameworkCore_IReadOnlyProperty {
1254
- GetColumnBaseName(): Rewrap<this, string>;
1255
- GetColumnName(): Rewrap<this, string>;
1256
- GetColumnName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
1257
- GetDefaultColumnBaseName(): Rewrap<this, string>;
1258
- GetDefaultColumnName(): Rewrap<this, string>;
1259
- GetDefaultColumnName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
1260
- GetColumnOrder(): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
1261
- GetColumnOrder(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
1262
- GetColumnType(): Rewrap<this, string | undefined>;
1263
- GetColumnType(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
1264
- GetDefaultValueSql(): Rewrap<this, string | undefined>;
1265
- GetDefaultValueSql(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
1266
- GetComputedColumnSql(): Rewrap<this, string | undefined>;
1267
- GetComputedColumnSql(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
1268
- GetIsStored(): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
1269
- GetIsStored(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
1270
- GetDefaultValue(): Rewrap<this, unknown | undefined>;
1271
- TryGetDefaultValue(defaultValue: unknown): Rewrap<this, boolean>;
1272
- GetDefaultValue(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, unknown | undefined>;
1273
- TryGetDefaultValue(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, defaultValue: unknown): Rewrap<this, boolean>;
1274
- GetMaxLength(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
1275
- GetPrecision(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
1276
- GetScale(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
1277
- IsUnicode(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
1278
- IsFixedLength(): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
1279
- IsFixedLength(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
1280
- IsColumnNullable(): Rewrap<this, boolean>;
1281
- IsColumnNullable(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, boolean>;
1282
- GetComment(): Rewrap<this, string | undefined>;
1283
- GetComment(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
1284
- GetCollation(): Rewrap<this, string | undefined>;
1285
- GetCollation(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
1286
- GetRelationalTypeMapping(): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping>;
1287
- FindRelationalTypeMapping(): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping | undefined>;
1288
- FindRelationalTypeMapping(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping | undefined>;
1289
- FindSharedStoreObjectRootProperty(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty | undefined>;
1290
- GetOverrides(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyRelationalPropertyOverrides>>;
1291
- FindOverrides(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlyRelationalPropertyOverrides | undefined>;
1292
- GetMappedStoreObjects(storeObjectType: Microsoft_EntityFrameworkCore_Metadata.StoreObjectType): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier>>;
1293
- GetJsonPropertyName(): Rewrap<this, string | undefined>;
1294
- GetDefaultConstraintName(): Rewrap<this, string | undefined>;
1295
- GetDefaultConstraintName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
1296
- GetDefaultDefaultConstraintName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string>;
1297
- }
1298
-
1299
- export interface __Ext_Microsoft_EntityFrameworkCore_IReadOnlyTrigger {
1300
- GetDatabaseName(): Rewrap<this, string | undefined>;
1301
- GetDefaultDatabaseName(): Rewrap<this, string | undefined>;
1302
- GetDatabaseName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
1303
- GetDefaultDatabaseName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
1304
- GetTableName(): Rewrap<this, string>;
1305
- GetTableSchema(): Rewrap<this, string | undefined>;
1306
- }
1307
-
1308
- export interface __Ext_Microsoft_EntityFrameworkCore_IReadOnlyTypeBase {
1309
- GetTableName(): Rewrap<this, string | undefined>;
1310
- GetSchema(): Rewrap<this, string | undefined>;
1311
- GetViewName(): Rewrap<this, string | undefined>;
1312
- GetViewSchema(): Rewrap<this, string | undefined>;
1313
- GetSqlQuery(): Rewrap<this, string | undefined>;
1314
- GetFunctionName(): Rewrap<this, string | undefined>;
1315
- GetDeleteStoredProcedure(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlyStoredProcedure | undefined>;
1316
- GetInsertStoredProcedure(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlyStoredProcedure | undefined>;
1317
- GetUpdateStoredProcedure(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlyStoredProcedure | undefined>;
1318
- GetMappingFragments(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityTypeMappingFragment>>;
1319
- GetMappingFragments(storeObjectType: Microsoft_EntityFrameworkCore_Metadata.StoreObjectType): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityTypeMappingFragment>>;
1320
- FindMappingFragment(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityTypeMappingFragment | undefined>;
1321
- GetMappingStrategy(): Rewrap<this, string | undefined>;
1322
- IsMappedToJson(): Rewrap<this, boolean>;
1323
- GetContainerColumnName(): Rewrap<this, string | undefined>;
1324
- GetContainerColumnType(): Rewrap<this, string | undefined>;
1325
- GetJsonPropertyName(): Rewrap<this, string | undefined>;
1326
- }
1327
-
1328
- export interface __Ext_Microsoft_EntityFrameworkCore_ITypeBase {
1329
- GetTableName(): Rewrap<this, string | undefined>;
1330
- GetSchema(): Rewrap<this, string | undefined>;
1331
- GetViewName(): Rewrap<this, string | undefined>;
1332
- GetViewSchema(): Rewrap<this, string | undefined>;
1333
- GetSqlQuery(): Rewrap<this, string | undefined>;
1334
- GetFunctionName(): Rewrap<this, string | undefined>;
1335
- GetMappingStrategy(): Rewrap<this, string | undefined>;
1336
- IsMappedToJson(): Rewrap<this, boolean>;
1337
- GetContainerColumnName(): Rewrap<this, string | undefined>;
1338
- GetContainerColumnType(): Rewrap<this, string | undefined>;
1339
- GetJsonPropertyName(): Rewrap<this, string | undefined>;
1340
- GetDefaultMappings(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.ITableMappingBase>>;
1341
- GetTableMappings(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.ITableMapping>>;
1342
- GetViewMappings(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IViewMapping>>;
1343
- GetSqlQueryMappings(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.ISqlQueryMapping>>;
1344
- GetFunctionMappings(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IFunctionMapping>>;
1345
- GetDeleteStoredProcedure(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IStoredProcedure | undefined>;
1346
- GetInsertStoredProcedure(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IStoredProcedure | undefined>;
1347
- GetUpdateStoredProcedure(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IStoredProcedure | undefined>;
1348
- GetInsertStoredProcedureMappings(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IStoredProcedureMapping>>;
1349
- GetDeleteStoredProcedureMappings(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IStoredProcedureMapping>>;
1350
- GetUpdateStoredProcedureMappings(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IStoredProcedureMapping>>;
1351
- GetMappingFragments(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IEntityTypeMappingFragment>>;
1352
- GetMappingFragments(storeObjectType: Microsoft_EntityFrameworkCore_Metadata.StoreObjectType): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IEntityTypeMappingFragment>>;
1353
- FindMappingFragment(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IEntityTypeMappingFragment | undefined>;
1354
- }
1355
-
1356
- export interface __Ext_Microsoft_EntityFrameworkCore_ModelBuilder {
1357
- HasSequence(name: string, schema?: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.SequenceBuilder>;
1358
- HasSequence(name: string, builderAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.SequenceBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore.ModelBuilder>;
1359
- HasSequence(name: string, schema: string, builderAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.SequenceBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore.ModelBuilder>;
1360
- HasSequence(type: System.Type, name: string, schema?: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.SequenceBuilder>;
1361
- HasSequence(type: System.Type, name: string, builderAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.SequenceBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore.ModelBuilder>;
1362
- HasSequence(type: System.Type, name: string, schema: string, builderAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.SequenceBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore.ModelBuilder>;
1363
- HasDbFunction(methodInfo: System_Reflection.MethodInfo): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.DbFunctionBuilder>;
1364
- HasDbFunction<TResult>(expression: System_Linq_Expressions.Expression_1<System.Func_1<TResult>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.DbFunctionBuilder>;
1365
- HasDbFunction(methodInfo: System_Reflection.MethodInfo, builderAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.DbFunctionBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore.ModelBuilder>;
1366
- HasDefaultSchema(schema: string): Rewrap<this, Microsoft_EntityFrameworkCore.ModelBuilder>;
1367
- UseCollation(collation: string): Rewrap<this, Microsoft_EntityFrameworkCore.ModelBuilder>;
1368
- }
1369
-
1370
- export interface __Ext_Microsoft_EntityFrameworkCore_IIncludableQueryable_2<TEntity, TProperty> {
1371
- ThenInclude<TPreviousProperty, TProperty>(navigationPropertyPath: System_Linq_Expressions.Expression_1<System.Func_2<TPreviousProperty, TProperty>>): Rewrap<this, Microsoft_EntityFrameworkCore_Query.IIncludableQueryable_2<TEntity, TProperty>>;
1372
- }
1373
-
1374
- export interface __Ext_Microsoft_EntityFrameworkCore_TableExpressionBase {
1375
- UnwrapJoin(): Rewrap<this, Microsoft_EntityFrameworkCore_Query_SqlExpressions.TableExpressionBase>;
1376
- }
1377
-
1378
- export interface __Ext_Microsoft_EntityFrameworkCore_IExecutionStrategy {
1379
- Execute(operation: System.Action): Rewrap<this, void>;
1380
- Execute<TResult>(operation: System.Func_1<TResult>): Rewrap<this, TResult>;
1381
- Execute<TState>(state: TState, operation: System.Action_1<TState>): Rewrap<this, void>;
1382
- ExecuteAsync(operation: System.Func_1<System_Threading_Tasks.Task>): Rewrap<this, System_Threading_Tasks.Task>;
1383
- ExecuteAsync(operation: System.Func_2<System_Threading.CancellationToken, System_Threading_Tasks.Task>, cancellationToken: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
1384
- ExecuteAsync<TResult>(operation: System.Func_1<System_Threading_Tasks.Task_1<TResult>>): Rewrap<this, System_Threading_Tasks.Task_1<TResult>>;
1385
- ExecuteAsync<TResult>(operation: System.Func_2<System_Threading.CancellationToken, System_Threading_Tasks.Task_1<TResult>>, cancellationToken: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<TResult>>;
1386
- ExecuteAsync<TState>(state: TState, operation: System.Func_2<TState, System_Threading_Tasks.Task>): Rewrap<this, System_Threading_Tasks.Task>;
1387
- ExecuteAsync<TState>(state: TState, operation: System.Func_3<TState, System_Threading.CancellationToken, System_Threading_Tasks.Task>, cancellationToken: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
1388
- ExecuteAsync<TState, TResult>(state: TState, operation: System.Func_2<TState, System_Threading_Tasks.Task_1<TResult>>): Rewrap<this, System_Threading_Tasks.Task_1<TResult>>;
1389
- Execute<TState, TResult>(state: TState, operation: System.Func_2<TState, TResult>): Rewrap<this, TResult>;
1390
- ExecuteAsync<TState, TResult>(state: TState, operation: System.Func_3<TState, System_Threading.CancellationToken, System_Threading_Tasks.Task_1<TResult>>, cancellationToken: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<TResult>>;
1391
- Execute<TState, TResult>(state: TState, operation: System.Func_2<TState, TResult>, verifySucceeded: System.Func_2<TState, Microsoft_EntityFrameworkCore_Storage.ExecutionResult_1<TResult>>): Rewrap<this, TResult>;
1392
- ExecuteAsync<TState, TResult>(state: TState, operation: System.Func_3<TState, System_Threading.CancellationToken, System_Threading_Tasks.Task_1<TResult>>, verifySucceeded: System.Func_3<TState, System_Threading.CancellationToken, System_Threading_Tasks.Task_1<Microsoft_EntityFrameworkCore_Storage.ExecutionResult_1<TResult>>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<TResult>>;
1393
- ExecuteInTransaction(operation: System.Action, verifySucceeded: System.Func_1<System_Internal.Boolean>): Rewrap<this, void>;
1394
- ExecuteInTransactionAsync(operation: System.Func_1<System_Threading_Tasks.Task>, verifySucceeded: System.Func_1<System_Threading_Tasks.Task_1<System_Internal.Boolean>>): Rewrap<this, System_Threading_Tasks.Task>;
1395
- ExecuteInTransactionAsync(operation: System.Func_2<System_Threading.CancellationToken, System_Threading_Tasks.Task>, verifySucceeded: System.Func_2<System_Threading.CancellationToken, System_Threading_Tasks.Task_1<System_Internal.Boolean>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
1396
- ExecuteInTransaction<TResult>(operation: System.Func_1<TResult>, verifySucceeded: System.Func_1<System_Internal.Boolean>): Rewrap<this, TResult>;
1397
- ExecuteInTransactionAsync<TResult>(operation: System.Func_2<System_Threading.CancellationToken, System_Threading_Tasks.Task_1<TResult>>, verifySucceeded: System.Func_2<System_Threading.CancellationToken, System_Threading_Tasks.Task_1<System_Internal.Boolean>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<TResult>>;
1398
- ExecuteInTransaction<TState>(state: TState, operation: System.Action_1<TState>, verifySucceeded: System.Func_2<TState, System_Internal.Boolean>): Rewrap<this, void>;
1399
- ExecuteInTransactionAsync<TState>(state: TState, operation: System.Func_3<TState, System_Threading.CancellationToken, System_Threading_Tasks.Task>, verifySucceeded: System.Func_3<TState, System_Threading.CancellationToken, System_Threading_Tasks.Task_1<System_Internal.Boolean>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
1400
- ExecuteInTransaction<TState, TResult>(state: TState, operation: System.Func_2<TState, TResult>, verifySucceeded: System.Func_2<TState, System_Internal.Boolean>): Rewrap<this, TResult>;
1401
- ExecuteInTransactionAsync<TState, TResult>(state: TState, operation: System.Func_3<TState, System_Threading.CancellationToken, System_Threading_Tasks.Task_1<TResult>>, verifySucceeded: System.Func_3<TState, System_Threading.CancellationToken, System_Threading_Tasks.Task_1<System_Internal.Boolean>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<TResult>>;
1402
- }
1403
-
1404
- export interface __Ext_Microsoft_EntityFrameworkCore_IEnumerable_1<T> {
1405
- Format(includeTypes?: boolean): Rewrap<this, string>;
1406
- }
1407
-
1408
- export interface __Ext_Microsoft_EntityFrameworkCore_ObservableCollection_1<T> {
1409
- ToBindingList(): Rewrap<this, System_ComponentModel.BindingList_1<T>>;
1410
- }
1411
-
1412
- export interface __Ext_Microsoft_EntityFrameworkCore_IQueryable {
1413
- ToQueryString(): Rewrap<this, string>;
1414
- CreateDbCommand(): Rewrap<this, System_Data_Common.DbCommand>;
1415
- }
1416
-
1417
- export interface __Ext_Microsoft_EntityFrameworkCore_IQueryable_1<T> {
1418
- AnyAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Boolean>>;
1419
- AnyAsync(predicate: System_Linq_Expressions.Expression_1<System.Func_2<T, System_Internal.Boolean>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Boolean>>;
1420
- AllAsync(predicate: System_Linq_Expressions.Expression_1<System.Func_2<T, System_Internal.Boolean>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Boolean>>;
1421
- CountAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Int32>>;
1422
- CountAsync(predicate: System_Linq_Expressions.Expression_1<System.Func_2<T, System_Internal.Boolean>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Int32>>;
1423
- LongCountAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Int64>>;
1424
- LongCountAsync(predicate: System_Linq_Expressions.Expression_1<System.Func_2<T, System_Internal.Boolean>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Int64>>;
1425
- ElementAtAsync(index: int, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<T>>;
1426
- ElementAtOrDefaultAsync(index: int, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<T | undefined>>;
1427
- FirstAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<T>>;
1428
- FirstAsync(predicate: System_Linq_Expressions.Expression_1<System.Func_2<T, System_Internal.Boolean>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<T>>;
1429
- FirstOrDefaultAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<T | undefined>>;
1430
- FirstOrDefaultAsync(predicate: System_Linq_Expressions.Expression_1<System.Func_2<T, System_Internal.Boolean>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<T | undefined>>;
1431
- LastAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<T>>;
1432
- LastAsync(predicate: System_Linq_Expressions.Expression_1<System.Func_2<T, System_Internal.Boolean>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<T>>;
1433
- LastOrDefaultAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<T | undefined>>;
1434
- LastOrDefaultAsync(predicate: System_Linq_Expressions.Expression_1<System.Func_2<T, System_Internal.Boolean>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<T | undefined>>;
1435
- SingleAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<T>>;
1436
- SingleAsync(predicate: System_Linq_Expressions.Expression_1<System.Func_2<T, System_Internal.Boolean>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<T>>;
1437
- SingleOrDefaultAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<T | undefined>>;
1438
- SingleOrDefaultAsync(predicate: System_Linq_Expressions.Expression_1<System.Func_2<T, System_Internal.Boolean>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<T | undefined>>;
1439
- MinAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<T>>;
1440
- MinAsync<TResult>(selector: System_Linq_Expressions.Expression_1<System.Func_2<T, TResult>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<TResult>>;
1441
- MaxAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<T>>;
1442
- MaxAsync<TResult>(selector: System_Linq_Expressions.Expression_1<System.Func_2<T, TResult>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<TResult>>;
1443
- SumAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Decimal>>;
1444
- SumAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Decimal>>>;
1445
- SumAsync(selector: System_Linq_Expressions.Expression_1<System.Func_2<T, System_Internal.Decimal>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Decimal>>;
1446
- SumAsync(selector: System_Linq_Expressions.Expression_1<System.Func_2<T, System.Nullable_1<System_Internal.Decimal>>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Decimal>>>;
1447
- SumAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Int32>>;
1448
- SumAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Int32>>>;
1449
- SumAsync(selector: System_Linq_Expressions.Expression_1<System.Func_2<T, System_Internal.Int32>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Int32>>;
1450
- SumAsync(selector: System_Linq_Expressions.Expression_1<System.Func_2<T, System.Nullable_1<System_Internal.Int32>>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Int32>>>;
1451
- SumAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Int64>>;
1452
- SumAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Int64>>>;
1453
- SumAsync(selector: System_Linq_Expressions.Expression_1<System.Func_2<T, System_Internal.Int64>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Int64>>;
1454
- SumAsync(selector: System_Linq_Expressions.Expression_1<System.Func_2<T, System.Nullable_1<System_Internal.Int64>>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Int64>>>;
1455
- SumAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Double>>;
1456
- SumAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Double>>>;
1457
- SumAsync(selector: System_Linq_Expressions.Expression_1<System.Func_2<T, System_Internal.Double>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Double>>;
1458
- SumAsync(selector: System_Linq_Expressions.Expression_1<System.Func_2<T, System.Nullable_1<System_Internal.Double>>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Double>>>;
1459
- SumAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Single>>;
1460
- SumAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Single>>>;
1461
- SumAsync(selector: System_Linq_Expressions.Expression_1<System.Func_2<T, System_Internal.Single>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Single>>;
1462
- SumAsync(selector: System_Linq_Expressions.Expression_1<System.Func_2<T, System.Nullable_1<System_Internal.Single>>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Single>>>;
1463
- AverageAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Decimal>>;
1464
- AverageAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Decimal>>>;
1465
- AverageAsync(selector: System_Linq_Expressions.Expression_1<System.Func_2<T, System_Internal.Decimal>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Decimal>>;
1466
- AverageAsync(selector: System_Linq_Expressions.Expression_1<System.Func_2<T, System.Nullable_1<System_Internal.Decimal>>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Decimal>>>;
1467
- AverageAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Double>>;
1468
- AverageAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Double>>>;
1469
- AverageAsync(selector: System_Linq_Expressions.Expression_1<System.Func_2<T, System_Internal.Int32>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Double>>;
1470
- AverageAsync(selector: System_Linq_Expressions.Expression_1<System.Func_2<T, System.Nullable_1<System_Internal.Int32>>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Double>>>;
1471
- AverageAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Double>>;
1472
- AverageAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Double>>>;
1473
- AverageAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Double>>;
1474
- AverageAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Double>>>;
1475
- AverageAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Single>>;
1476
- AverageAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Single>>>;
1477
- AverageAsync(selector: System_Linq_Expressions.Expression_1<System.Func_2<T, System_Internal.Single>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Single>>;
1478
- AverageAsync(selector: System_Linq_Expressions.Expression_1<System.Func_2<T, System.Nullable_1<System_Internal.Single>>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Single>>>;
1479
- ContainsAsync(item: T, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Boolean>>;
1480
- ToListAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Collections_Generic.List_1<T>>>;
1481
- ToArrayAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<T[]>>;
1482
- ToHashSetAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Collections_Generic.HashSet_1<T>>>;
1483
- ToHashSetAsync(comparer: System_Collections_Generic.IEqualityComparer_1<T>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Collections_Generic.HashSet_1<T>>>;
1484
- Include<TProperty>(navigationPropertyPath: System_Linq_Expressions.Expression_1<System.Func_2<T, TProperty>>): Rewrap<this, Microsoft_EntityFrameworkCore_Query.IIncludableQueryable_2<T, TProperty>>;
1485
- Include(navigationPropertyPath: string): Rewrap<this, System_Linq.IQueryable_1<T>>;
1486
- IgnoreAutoIncludes(): Rewrap<this, System_Linq.IQueryable_1<T>>;
1487
- IgnoreQueryFilters(): Rewrap<this, System_Linq.IQueryable_1<T>>;
1488
- IgnoreQueryFilters(filterKeys: System_Collections_Generic.IReadOnlyCollection_1<System_Internal.String>): Rewrap<this, System_Linq.IQueryable_1<T>>;
1489
- AsNoTracking(): Rewrap<this, System_Linq.IQueryable_1<T>>;
1490
- AsNoTrackingWithIdentityResolution(): Rewrap<this, System_Linq.IQueryable_1<T>>;
1491
- AsTracking(): Rewrap<this, System_Linq.IQueryable_1<T>>;
1492
- AsTracking(track: Microsoft_EntityFrameworkCore.QueryTrackingBehavior): Rewrap<this, System_Linq.IQueryable_1<T>>;
1493
- TagWith(tag: string): Rewrap<this, System_Linq.IQueryable_1<T>>;
1494
- TagWithCallSite(filePath?: string, lineNumber?: int): Rewrap<this, System_Linq.IQueryable_1<T>>;
1495
- Load(): Rewrap<this, void>;
1496
- LoadAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
1497
- ToDictionaryAsync<TKey>(keySelector: System.Func_2<T, TKey>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Collections_Generic.Dictionary_2<TKey, T>>>;
1498
- ToDictionaryAsync<TKey>(keySelector: System.Func_2<T, TKey>, comparer: System_Collections_Generic.IEqualityComparer_1<TKey>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Collections_Generic.Dictionary_2<TKey, T>>>;
1499
- ToDictionaryAsync<TKey, TElement>(keySelector: System.Func_2<T, TKey>, elementSelector: System.Func_2<T, TElement>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Collections_Generic.Dictionary_2<TKey, TElement>>>;
1500
- ToDictionaryAsync<TKey, TElement>(keySelector: System.Func_2<T, TKey>, elementSelector: System.Func_2<T, TElement>, comparer: System_Collections_Generic.IEqualityComparer_1<TKey>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Collections_Generic.Dictionary_2<TKey, TElement>>>;
1501
- ForEachAsync(action: System.Action_1<T>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
1502
- AsAsyncEnumerable(): Rewrap<this, System_Collections_Generic.IAsyncEnumerable_1<T>>;
1503
- ExecuteDelete(): Rewrap<this, int>;
1504
- ExecuteDeleteAsync(cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Int32>>;
1505
- ExecuteUpdate(setPropertyCalls: System.Action_1<Microsoft_EntityFrameworkCore_Query.UpdateSettersBuilder_1<T>>): Rewrap<this, int>;
1506
- ExecuteUpdateAsync(setPropertyCalls: System.Action_1<Microsoft_EntityFrameworkCore_Query.UpdateSettersBuilder_1<T>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Int32>>;
1507
- AsSingleQuery(): Rewrap<this, System_Linq.IQueryable_1<T>>;
1508
- AsSplitQuery(): Rewrap<this, System_Linq.IQueryable_1<T>>;
1509
- }
1510
-
1511
- export interface __Ext_Microsoft_EntityFrameworkCore_ChangeTracking_ValueComparer {
1512
- IsDefault(): Rewrap<this, boolean>;
1513
- }
1514
-
1515
- export interface __Ext_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_IStateManager {
1516
- ToListForState(added?: boolean, modified?: boolean, deleted?: boolean, unchanged?: boolean, returnDeletedSharedIdentity?: boolean): Rewrap<this, System_Collections_Generic.IReadOnlyList_1<Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry>>;
1517
- ToList(): Rewrap<this, System_Collections_Generic.IReadOnlyList_1<Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry>>;
1518
- }
1519
-
1520
- export interface __Ext_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ValueComparer {
1521
- ToNullableComparer(clrType: System.Type): Rewrap<this, Microsoft_EntityFrameworkCore_ChangeTracking.ValueComparer | undefined>;
1522
- ComposeConversion(targetClrType: System.Type): Rewrap<this, Microsoft_EntityFrameworkCore_ChangeTracking.ValueComparer | undefined>;
1523
- }
1524
-
1525
- export interface __Ext_Microsoft_EntityFrameworkCore_Diagnostics_IDiagnosticsLogger_1<TLoggerCategory> {
1526
- SaveChangesFailed(context: Microsoft_EntityFrameworkCore.DbContext, exception: System.Exception): Rewrap<this, void>;
1527
- SaveChangesFailedAsync(context: Microsoft_EntityFrameworkCore.DbContext, exception: System.Exception, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
1528
- SaveChangesCanceled(context: Microsoft_EntityFrameworkCore.DbContext): Rewrap<this, void>;
1529
- SaveChangesCanceledAsync(context: Microsoft_EntityFrameworkCore.DbContext, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
1530
- OldModelVersionWarning(context: Microsoft_EntityFrameworkCore.DbContext, contextOptions: Microsoft_EntityFrameworkCore.DbContextOptions): Rewrap<this, void>;
1531
- OptimisticConcurrencyException(context: Microsoft_EntityFrameworkCore.DbContext, entries: System_Collections_Generic.IReadOnlyList_1<Microsoft_EntityFrameworkCore_Update.IUpdateEntry>, exception: Microsoft_EntityFrameworkCore.DbUpdateConcurrencyException, createEventData: System.Func_5<Microsoft_EntityFrameworkCore.DbContext, Microsoft_EntityFrameworkCore.DbUpdateConcurrencyException, System_Collections_Generic.IReadOnlyList_1<Microsoft_EntityFrameworkCore_Update.IUpdateEntry>, Microsoft_EntityFrameworkCore_Diagnostics.EventDefinition_1<System.Exception>, Microsoft_EntityFrameworkCore_Diagnostics.ConcurrencyExceptionEventData>): Rewrap<this, Microsoft_EntityFrameworkCore_Diagnostics.InterceptionResult>;
1532
- OptimisticConcurrencyExceptionAsync(context: Microsoft_EntityFrameworkCore.DbContext, entries: System_Collections_Generic.IReadOnlyList_1<Microsoft_EntityFrameworkCore_Update.IUpdateEntry>, exception: Microsoft_EntityFrameworkCore.DbUpdateConcurrencyException, createEventData: System.Func_5<Microsoft_EntityFrameworkCore.DbContext, Microsoft_EntityFrameworkCore.DbUpdateConcurrencyException, System_Collections_Generic.IReadOnlyList_1<Microsoft_EntityFrameworkCore_Update.IUpdateEntry>, Microsoft_EntityFrameworkCore_Diagnostics.EventDefinition_1<System.Exception>, Microsoft_EntityFrameworkCore_Diagnostics.ConcurrencyExceptionEventData>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.ValueTask_1<Microsoft_EntityFrameworkCore_Diagnostics.InterceptionResult>>;
1533
- DuplicateDependentEntityTypeInstanceWarning(dependent1: Microsoft_EntityFrameworkCore_Metadata.IEntityType, dependent2: Microsoft_EntityFrameworkCore_Metadata.IEntityType): Rewrap<this, void>;
1534
- QueryIterationFailed(contextType: System.Type, exception: System.Exception): Rewrap<this, void>;
1535
- QueryCanceled(contextType: System.Type): Rewrap<this, void>;
1536
- QueryCompilationStarting(context: Microsoft_EntityFrameworkCore.DbContext, expressionPrinter: Microsoft_EntityFrameworkCore_Query.ExpressionPrinter, queryExpression: System_Linq_Expressions.Expression): Rewrap<this, System.ValueTuple_2<System_Linq_Expressions.Expression, Microsoft_EntityFrameworkCore_Diagnostics.QueryExpressionEventData>>;
1537
- FirstWithoutOrderByAndFilterWarning(): Rewrap<this, void>;
1538
- RowLimitingOperationWithoutOrderByWarning(): Rewrap<this, void>;
1539
- DistinctAfterOrderByWithoutRowLimitingOperatorWarning(): Rewrap<this, void>;
1540
- NavigationBaseIncluded(navigation: Microsoft_EntityFrameworkCore_Metadata.INavigationBase): Rewrap<this, void>;
1541
- NavigationBaseIncludeIgnored(navigation: Microsoft_EntityFrameworkCore_Metadata.INavigationBase): Rewrap<this, void>;
1542
- QueryExecutionPlanned(context: Microsoft_EntityFrameworkCore.DbContext, expressionPrinter: Microsoft_EntityFrameworkCore_Query.ExpressionPrinter, queryExecutorExpression: System_Linq_Expressions.Expression): Rewrap<this, void>;
1543
- SensitiveDataLoggingEnabledWarning(): Rewrap<this, void>;
1544
- TypeLoadingErrorWarning(assembly: System_Reflection.Assembly, exception: System.Exception): Rewrap<this, void>;
1545
- SkippedEntityTypeConfigurationWarning(type: System.Type): Rewrap<this, void>;
1546
- NoEntityTypeConfigurationsWarning(assembly: System_Reflection.Assembly): Rewrap<this, void>;
1547
- PossibleUnintendedCollectionNavigationNullComparisonWarning(navigation: Microsoft_EntityFrameworkCore_Metadata.INavigation): Rewrap<this, void>;
1548
- PossibleUnintendedReferenceComparisonWarning(left: System_Linq_Expressions.Expression, right: System_Linq_Expressions.Expression): Rewrap<this, void>;
1549
- InvalidIncludePathError(navigationChain: string, navigationName: string): Rewrap<this, void>;
1550
- ServiceProviderCreated(serviceProvider: System.IServiceProvider): Rewrap<this, void>;
1551
- ManyServiceProvidersCreatedWarning(serviceProviders: System_Collections_Generic.ICollection_1<System.IServiceProvider>): Rewrap<this, void>;
1552
- ServiceProviderDebugInfo(newDebugInfo: System_Collections_Generic.IDictionary_2<System_Internal.String, System_Internal.String>, cachedDebugInfos: System_Collections_Generic.IList_1<System_Collections_Generic.IDictionary_2<System_Internal.String, System_Internal.String>>): Rewrap<this, void>;
1553
- ContextInitialized(context: Microsoft_EntityFrameworkCore.DbContext, contextOptions: Microsoft_EntityFrameworkCore.DbContextOptions): Rewrap<this, void>;
1554
- ExecutionStrategyRetrying(exceptionsEncountered: System_Collections_Generic.IReadOnlyList_1<System.Exception>, delay: System.TimeSpan, async: boolean): Rewrap<this, void>;
1555
- LazyLoadOnDisposedContextWarning(context: Microsoft_EntityFrameworkCore.DbContext, entityType: unknown, navigationName: string): Rewrap<this, void>;
1556
- NavigationLazyLoading(context: Microsoft_EntityFrameworkCore.DbContext, entityType: unknown, navigationName: string): Rewrap<this, void>;
1557
- DetachedLazyLoadingWarning(context: Microsoft_EntityFrameworkCore.DbContext, entityType: unknown, navigationName: string): Rewrap<this, void>;
1558
- RedundantAddServicesCallWarning(serviceProvider: System.IServiceProvider): Rewrap<this, void>;
1559
- ShadowForeignKeyPropertyCreated(property: Microsoft_EntityFrameworkCore_Metadata.IProperty, basePropertyName: string): Rewrap<this, void>;
1560
- ShadowPropertyCreated(property: Microsoft_EntityFrameworkCore_Metadata.IProperty): Rewrap<this, void>;
1561
- CollectionWithoutComparer(property: Microsoft_EntityFrameworkCore_Metadata.IProperty): Rewrap<this, void>;
1562
- RedundantIndexRemoved(redundantIndex: System_Collections_Generic.IReadOnlyList_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyPropertyBase>, otherIndex: System_Collections_Generic.IReadOnlyList_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyPropertyBase>): Rewrap<this, void>;
1563
- RedundantForeignKeyWarning(redundantForeignKey: Microsoft_EntityFrameworkCore_Metadata.IForeignKey): Rewrap<this, void>;
1564
- IncompatibleMatchingForeignKeyProperties(dependentToPrincipalNavigationSpecification: string, principalToDependentNavigationSpecification: string, foreignKeyProperties: System_Collections_Generic.IReadOnlyList_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyPropertyBase>, principalKeyProperties: System_Collections_Generic.IReadOnlyList_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyPropertyBase>): Rewrap<this, void>;
1565
- AccidentalEntityType(entityType: Microsoft_EntityFrameworkCore_Metadata.IEntityType): Rewrap<this, void>;
1566
- AccidentalComplexPropertyCollection(complexProperty: Microsoft_EntityFrameworkCore_Metadata.IComplexProperty): Rewrap<this, void>;
1567
- AmbiguousEndRequiredWarning(foreignKey: Microsoft_EntityFrameworkCore_Metadata.IForeignKey): Rewrap<this, void>;
1568
- RequiredAttributeOnCollection(navigation: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyNavigation): Rewrap<this, void>;
1569
- RequiredAttributeOnSkipNavigation(navigation: Microsoft_EntityFrameworkCore_Metadata.IReadOnlySkipNavigation): Rewrap<this, void>;
1570
- ConflictingShadowForeignKeysWarning(foreignKey: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyForeignKey): Rewrap<this, void>;
1571
- MultiplePrimaryKeyCandidates(firstProperty: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty, secondProperty: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty): Rewrap<this, void>;
1572
- MultipleNavigationProperties(firstPropertyCollection: System_Collections_Generic.IEnumerable_1<System.Tuple_2<System_Reflection.MemberInfo, System.Type>>, secondPropertyCollection: System_Collections_Generic.IEnumerable_1<System.Tuple_2<System_Reflection.MemberInfo, System.Type>>): Rewrap<this, void>;
1573
- MultipleInversePropertiesSameTargetWarning(conflictingNavigations: System_Collections_Generic.IEnumerable_1<System.Tuple_2<System_Reflection.MemberInfo, System.Type>>, inverseNavigation: System_Reflection.MemberInfo, targetType: System.Type): Rewrap<this, void>;
1574
- NonOwnershipInverseNavigationWarning(declaringType: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType, navigation: System_Reflection.MemberInfo, targetType: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType, inverseNavigation: System_Reflection.MemberInfo, ownershipNavigation: System_Reflection.MemberInfo): Rewrap<this, void>;
1575
- ForeignKeyAttributesOnBothPropertiesWarning(firstNavigation: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyNavigation, secondNavigation: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyNavigation, firstProperty: System_Reflection.MemberInfo, secondProperty: System_Reflection.MemberInfo): Rewrap<this, void>;
1576
- ForeignKeyAttributesOnBothNavigationsWarning(firstNavigation: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyNavigation, secondNavigation: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyNavigation): Rewrap<this, void>;
1577
- ConflictingForeignKeyAttributesOnNavigationAndPropertyWarning(navigation: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyNavigation, property: System_Reflection.MemberInfo): Rewrap<this, void>;
1578
- DetectChangesStarting(context: Microsoft_EntityFrameworkCore.DbContext): Rewrap<this, void>;
1579
- DetectChangesCompleted(context: Microsoft_EntityFrameworkCore.DbContext): Rewrap<this, void>;
1580
- PropertyChangeDetected(internalEntityEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, property: Microsoft_EntityFrameworkCore_Metadata.IProperty, oldValue: unknown, newValue: unknown): Rewrap<this, void>;
1581
- PropertyChangeDetectedSensitive(internalEntityEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, property: Microsoft_EntityFrameworkCore_Metadata.IProperty, oldValue: unknown, newValue: unknown): Rewrap<this, void>;
1582
- ComplexElementPropertyChangeDetected(internalComplexEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalComplexEntry, property: Microsoft_EntityFrameworkCore_Metadata.IProperty, oldValue: unknown, newValue: unknown): Rewrap<this, void>;
1583
- ComplexElementPropertyChangeDetectedSensitive(internalComplexEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalComplexEntry, property: Microsoft_EntityFrameworkCore_Metadata.IProperty, oldValue: unknown, newValue: unknown): Rewrap<this, void>;
1584
- ForeignKeyChangeDetected(internalEntityEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, property: Microsoft_EntityFrameworkCore_Metadata.IProperty, oldValue: unknown, newValue: unknown): Rewrap<this, void>;
1585
- ForeignKeyChangeDetectedSensitive(internalEntityEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, property: Microsoft_EntityFrameworkCore_Metadata.IProperty, oldValue: unknown, newValue: unknown): Rewrap<this, void>;
1586
- CollectionChangeDetected(internalEntityEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, navigation: Microsoft_EntityFrameworkCore_Metadata.INavigation, added: System_Collections_Generic.ISet_1<unknown>, removed: System_Collections_Generic.ISet_1<unknown>): Rewrap<this, void>;
1587
- CollectionChangeDetectedSensitive(internalEntityEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, navigation: Microsoft_EntityFrameworkCore_Metadata.INavigation, added: System_Collections_Generic.ISet_1<unknown>, removed: System_Collections_Generic.ISet_1<unknown>): Rewrap<this, void>;
1588
- SkipCollectionChangeDetected(internalEntityEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, navigation: Microsoft_EntityFrameworkCore_Metadata.ISkipNavigation, added: System_Collections_Generic.ISet_1<unknown>, removed: System_Collections_Generic.ISet_1<unknown>): Rewrap<this, void>;
1589
- SkipCollectionChangeDetectedSensitive(internalEntityEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, navigation: Microsoft_EntityFrameworkCore_Metadata.ISkipNavigation, added: System_Collections_Generic.ISet_1<unknown>, removed: System_Collections_Generic.ISet_1<unknown>): Rewrap<this, void>;
1590
- ReferenceChangeDetected(internalEntityEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, navigation: Microsoft_EntityFrameworkCore_Metadata.INavigation, oldValue: unknown, newValue: unknown): Rewrap<this, void>;
1591
- ReferenceChangeDetectedSensitive(internalEntityEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, navigation: Microsoft_EntityFrameworkCore_Metadata.INavigation, oldValue: unknown, newValue: unknown): Rewrap<this, void>;
1592
- StringEnumValueInJson(enumType: System.Type): Rewrap<this, void>;
1593
- StartedTracking(internalEntityEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry): Rewrap<this, void>;
1594
- StartedTrackingSensitive(internalEntityEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry): Rewrap<this, void>;
1595
- StateChanged(internalEntityEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, oldState: Microsoft_EntityFrameworkCore.EntityState, newState: Microsoft_EntityFrameworkCore.EntityState): Rewrap<this, void>;
1596
- StateChangedSensitive(internalEntityEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, oldState: Microsoft_EntityFrameworkCore.EntityState, newState: Microsoft_EntityFrameworkCore.EntityState): Rewrap<this, void>;
1597
- ValueGenerated(internalEntityEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, property: Microsoft_EntityFrameworkCore_Metadata.IProperty, value: unknown, temporary: boolean): Rewrap<this, void>;
1598
- ValueGeneratedSensitive(internalEntityEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, property: Microsoft_EntityFrameworkCore_Metadata.IProperty, value: unknown, temporary: boolean): Rewrap<this, void>;
1599
- CascadeDelete(internalChildEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, internalParentEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, state: Microsoft_EntityFrameworkCore.EntityState): Rewrap<this, void>;
1600
- CascadeDeleteSensitive(internalChildEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, internalParentEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, state: Microsoft_EntityFrameworkCore.EntityState): Rewrap<this, void>;
1601
- CascadeDeleteOrphan(internalChildEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, parentEntityType: Microsoft_EntityFrameworkCore_Metadata.IEntityType, state: Microsoft_EntityFrameworkCore.EntityState): Rewrap<this, void>;
1602
- MappedNavigationIgnoredWarning(navigation: Microsoft_EntityFrameworkCore_Metadata.INavigationBase): Rewrap<this, void>;
1603
- MappedPropertyIgnoredWarning(property: Microsoft_EntityFrameworkCore_Metadata.IProperty): Rewrap<this, void>;
1604
- MappedComplexPropertyIgnoredWarning(property: Microsoft_EntityFrameworkCore_Metadata.IComplexProperty): Rewrap<this, void>;
1605
- MappedEntityTypeIgnoredWarning(entityType: Microsoft_EntityFrameworkCore_Metadata.IEntityType): Rewrap<this, void>;
1606
- CascadeDeleteOrphanSensitive(internalChildEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, parentEntityType: Microsoft_EntityFrameworkCore_Metadata.IEntityType, state: Microsoft_EntityFrameworkCore.EntityState): Rewrap<this, void>;
1607
- SaveChangesStarting(context: Microsoft_EntityFrameworkCore.DbContext): Rewrap<this, Microsoft_EntityFrameworkCore_Diagnostics.InterceptionResult_1<System_Internal.Int32>>;
1608
- SaveChangesStartingAsync(context: Microsoft_EntityFrameworkCore.DbContext, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.ValueTask_1<Microsoft_EntityFrameworkCore_Diagnostics.InterceptionResult_1<System_Internal.Int32>>>;
1609
- SaveChangesCompleted(context: Microsoft_EntityFrameworkCore.DbContext, entitiesSavedCount: int): Rewrap<this, int>;
1610
- SaveChangesCompletedAsync(context: Microsoft_EntityFrameworkCore.DbContext, entitiesSavedCount: int, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.ValueTask_1<System_Internal.Int32>>;
1611
- ContextDisposed(context: Microsoft_EntityFrameworkCore.DbContext): Rewrap<this, void>;
1612
- ConflictingKeylessAndKeyAttributesWarning(property: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty): Rewrap<this, void>;
1613
- PossibleIncorrectRequiredNavigationWithQueryFilterInteractionWarning(foreignKey: Microsoft_EntityFrameworkCore_Metadata.IForeignKey): Rewrap<this, void>;
1614
- TransactionStarting(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, isolationLevel: System_Data.IsolationLevel, transactionId: System.Guid, startTime: System.DateTimeOffset): Rewrap<this, Microsoft_EntityFrameworkCore_Diagnostics.InterceptionResult_1<System_Data_Common.DbTransaction>>;
1615
- TransactionStartingAsync(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, isolationLevel: System_Data.IsolationLevel, transactionId: System.Guid, startTime: System.DateTimeOffset, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.ValueTask_1<Microsoft_EntityFrameworkCore_Diagnostics.InterceptionResult_1<System_Data_Common.DbTransaction>>>;
1616
- TransactionStarted(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset, duration: System.TimeSpan): Rewrap<this, System_Data_Common.DbTransaction>;
1617
- TransactionStartedAsync(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset, duration: System.TimeSpan, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.ValueTask_1<System_Data_Common.DbTransaction>>;
1618
- TransactionUsed(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset): Rewrap<this, System_Data_Common.DbTransaction>;
1619
- TransactionUsedAsync(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.ValueTask_1<System_Data_Common.DbTransaction>>;
1620
- TransactionCommitting(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset): Rewrap<this, Microsoft_EntityFrameworkCore_Diagnostics.InterceptionResult>;
1621
- TransactionCommittingAsync(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.ValueTask_1<Microsoft_EntityFrameworkCore_Diagnostics.InterceptionResult>>;
1622
- TransactionCommitted(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset, duration: System.TimeSpan): Rewrap<this, void>;
1623
- TransactionCommittedAsync(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset, duration: System.TimeSpan, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
1624
- TransactionRolledBack(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset, duration: System.TimeSpan): Rewrap<this, void>;
1625
- TransactionRolledBackAsync(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset, duration: System.TimeSpan, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
1626
- TransactionRollingBack(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset): Rewrap<this, Microsoft_EntityFrameworkCore_Diagnostics.InterceptionResult>;
1627
- TransactionRollingBackAsync(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.ValueTask_1<Microsoft_EntityFrameworkCore_Diagnostics.InterceptionResult>>;
1628
- CreatingTransactionSavepoint(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset): Rewrap<this, Microsoft_EntityFrameworkCore_Diagnostics.InterceptionResult>;
1629
- CreatingTransactionSavepointAsync(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.ValueTask_1<Microsoft_EntityFrameworkCore_Diagnostics.InterceptionResult>>;
1630
- CreatedTransactionSavepoint(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset): Rewrap<this, void>;
1631
- CreatedTransactionSavepointAsync(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
1632
- RollingBackToTransactionSavepoint(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset): Rewrap<this, Microsoft_EntityFrameworkCore_Diagnostics.InterceptionResult>;
1633
- RollingBackToTransactionSavepointAsync(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.ValueTask_1<Microsoft_EntityFrameworkCore_Diagnostics.InterceptionResult>>;
1634
- RolledBackToTransactionSavepoint(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset): Rewrap<this, void>;
1635
- RolledBackToTransactionSavepointAsync(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
1636
- ReleasingTransactionSavepoint(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset): Rewrap<this, Microsoft_EntityFrameworkCore_Diagnostics.InterceptionResult>;
1637
- ReleasingTransactionSavepointAsync(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.ValueTask_1<Microsoft_EntityFrameworkCore_Diagnostics.InterceptionResult>>;
1638
- ReleasedTransactionSavepoint(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset): Rewrap<this, void>;
1639
- ReleasedTransactionSavepointAsync(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
1640
- TransactionDisposed(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset): Rewrap<this, void>;
1641
- TriggerOnNonRootTphEntity(entityType: Microsoft_EntityFrameworkCore_Metadata.IEntityType): Rewrap<this, void>;
1642
- TransactionError(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, action: string, exception: System.Exception, startTime: System.DateTimeOffset, duration: System.TimeSpan): Rewrap<this, void>;
1643
- TransactionErrorAsync(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, action: string, exception: System.Exception, startTime: System.DateTimeOffset, duration: System.TimeSpan, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
1644
- AmbientTransactionWarning(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, startTime: System.DateTimeOffset): Rewrap<this, void>;
1645
- AmbientTransactionEnlisted(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Transactions.Transaction): Rewrap<this, void>;
1646
- ExplicitTransactionEnlisted(connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Transactions.Transaction): Rewrap<this, void>;
1647
- MigrateUsingConnection(migrator: Microsoft_EntityFrameworkCore_Migrations.IMigrator, connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection): Rewrap<this, void>;
1648
- MigrationReverting(migrator: Microsoft_EntityFrameworkCore_Migrations.IMigrator, migration: Microsoft_EntityFrameworkCore_Migrations.Migration): Rewrap<this, void>;
1649
- MigrationApplying(migrator: Microsoft_EntityFrameworkCore_Migrations.IMigrator, migration: Microsoft_EntityFrameworkCore_Migrations.Migration): Rewrap<this, void>;
1650
- MigrationGeneratingDownScript(migrator: Microsoft_EntityFrameworkCore_Migrations.IMigrator, migration: Microsoft_EntityFrameworkCore_Migrations.Migration, fromMigration: string, toMigration: string, idempotent: boolean): Rewrap<this, void>;
1651
- MigrationGeneratingUpScript(migrator: Microsoft_EntityFrameworkCore_Migrations.IMigrator, migration: Microsoft_EntityFrameworkCore_Migrations.Migration, fromMigration: string, toMigration: string, idempotent: boolean): Rewrap<this, void>;
1652
- MigrationsNotApplied(migrator: Microsoft_EntityFrameworkCore_Migrations.IMigrator): Rewrap<this, void>;
1653
- MigrationsNotFound(migrator: Microsoft_EntityFrameworkCore_Migrations.IMigrator, migrationsAssembly: Microsoft_EntityFrameworkCore_Migrations.IMigrationsAssembly): Rewrap<this, void>;
1654
- MigrationAttributeMissingWarning(migrationType: System_Reflection.TypeInfo): Rewrap<this, void>;
1655
- PendingModelChangesWarning(contextType: System.Type): Rewrap<this, void>;
1656
- NonDeterministicModel(contextType: System.Type): Rewrap<this, void>;
1657
- ModelSnapshotNotFound(migrator: Microsoft_EntityFrameworkCore_Migrations.IMigrator, migrationsAssembly: Microsoft_EntityFrameworkCore_Migrations.IMigrationsAssembly): Rewrap<this, void>;
1658
- NonTransactionalMigrationOperationWarning(migrator: Microsoft_EntityFrameworkCore_Migrations.IMigrator, migration: Microsoft_EntityFrameworkCore_Migrations.Migration, command: Microsoft_EntityFrameworkCore_Migrations.MigrationCommand): Rewrap<this, void>;
1659
- AcquiringMigrationLock(): Rewrap<this, void>;
1660
- MigrationsUserTransactionWarning(): Rewrap<this, void>;
1661
- QueryPossibleUnintendedUseOfEqualsWarning(left: Microsoft_EntityFrameworkCore_Query_SqlExpressions.SqlExpression, right: Microsoft_EntityFrameworkCore_Query_SqlExpressions.SqlExpression): Rewrap<this, void>;
1662
- ExecuteDeleteFailed(contextType: System.Type, exception: System.Exception): Rewrap<this, void>;
1663
- ExecuteUpdateFailed(contextType: System.Type, exception: System.Exception): Rewrap<this, void>;
1664
- NonQueryOperationFailed(contextType: System.Type, exception: System.Exception): Rewrap<this, void>;
1665
- MultipleCollectionIncludeWarning(): Rewrap<this, void>;
1666
- ModelValidationKeyDefaultValueWarning(property: Microsoft_EntityFrameworkCore_Metadata.IProperty): Rewrap<this, void>;
1667
- BoolWithDefaultWarning(property: Microsoft_EntityFrameworkCore_Metadata.IProperty): Rewrap<this, void>;
1668
- BatchReadyForExecution(entries: System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Update.IUpdateEntry>, commandCount: int): Rewrap<this, void>;
1669
- BatchSmallerThanMinBatchSize(entries: System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Update.IUpdateEntry>, commandCount: int, minBatchSize: int): Rewrap<this, void>;
1670
- AllIndexPropertiesNotToMappedToAnyTable(entityType: Microsoft_EntityFrameworkCore_Metadata.IEntityType, index: Microsoft_EntityFrameworkCore_Metadata.IIndex): Rewrap<this, void>;
1671
- IndexPropertiesBothMappedAndNotMappedToTable(entityType: Microsoft_EntityFrameworkCore_Metadata.IEntityType, index: Microsoft_EntityFrameworkCore_Metadata.IIndex, unmappedPropertyName: string): Rewrap<this, void>;
1672
- IndexPropertiesMappedToNonOverlappingTables(entityType: Microsoft_EntityFrameworkCore_Metadata.IEntityType, index: Microsoft_EntityFrameworkCore_Metadata.IIndex, property1Name: string, tablesMappedToProperty1: System_Collections_Generic.List_1<System.ValueTuple_2<System_Internal.String, System_Internal.String>>, property2Name: string, tablesMappedToProperty2: System_Collections_Generic.List_1<System.ValueTuple_2<System_Internal.String, System_Internal.String>>): Rewrap<this, void>;
1673
- KeyPropertiesNotMappedToTable(key: Microsoft_EntityFrameworkCore_Metadata.IKey): Rewrap<this, void>;
1674
- ForeignKeyPropertiesMappedToUnrelatedTables(foreignKey: Microsoft_EntityFrameworkCore_Metadata.IForeignKey): Rewrap<this, void>;
1675
- ForeignKeyTpcPrincipalWarning(foreignKey: Microsoft_EntityFrameworkCore_Metadata.IForeignKey): Rewrap<this, void>;
1676
- TpcStoreGeneratedIdentityWarning(property: Microsoft_EntityFrameworkCore_Metadata.IProperty): Rewrap<this, void>;
1677
- OptionalDependentWithoutIdentifyingPropertyWarning(entityType: Microsoft_EntityFrameworkCore_Metadata.IEntityType): Rewrap<this, void>;
1678
- StoredProcedureConcurrencyTokenNotMapped(entityType: Microsoft_EntityFrameworkCore_Metadata.IEntityType, concurrencyProperty: Microsoft_EntityFrameworkCore_Metadata.IProperty, storedProcedureName: string): Rewrap<this, void>;
1679
- BatchExecutorFailedToRollbackToSavepoint(contextType: System.Type, exception: System.Exception): Rewrap<this, void>;
1680
- BatchExecutorFailedToReleaseSavepoint(contextType: System.Type, exception: System.Exception): Rewrap<this, void>;
1681
- OptionalDependentWithAllNullPropertiesWarning(entry: Microsoft_EntityFrameworkCore_Update.IUpdateEntry): Rewrap<this, void>;
1682
- OptionalDependentWithAllNullPropertiesWarningSensitive(entry: Microsoft_EntityFrameworkCore_Update.IUpdateEntry): Rewrap<this, void>;
1683
- DuplicateColumnOrders(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, columns: System_Collections_Generic.IReadOnlyList_1<System_Internal.String>): Rewrap<this, void>;
1684
- ColumnOrderIgnoredWarning(operation: Microsoft_EntityFrameworkCore_Migrations_Operations.ColumnOperation): Rewrap<this, void>;
1685
- UnexpectedTrailingResultSetWhenSaving(): Rewrap<this, void>;
1686
- }
1687
-
1688
- export interface __Ext_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1<T> {
1689
- GetService<TService>(): Rewrap<this, TService>;
1690
- GetService(serviceType: System.Type): Rewrap<this, unknown>;
1691
- GetInfrastructure(): Rewrap<this, T>;
1692
- }
1693
-
1694
- export interface __Ext_Microsoft_EntityFrameworkCore_Infrastructure_ILazyLoader {
1695
- Load<TRelated>(entity: unknown, navigationField: TRelated, navigationName?: string): Rewrap<this, TRelated | undefined>;
1696
- }
1697
-
1698
- export interface __Ext_Microsoft_EntityFrameworkCore_Infrastructure_IModel {
1699
- GetRelationalDependencies(methodName?: string): Rewrap<this, Microsoft_EntityFrameworkCore_Infrastructure.RelationalModelDependencies>;
1700
- }
1701
-
1702
- export interface __Ext_Microsoft_EntityFrameworkCore_Infrastructure_IEnumerable_1<T> {
1703
- FormatColumns(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string>;
1704
- GetColumnNames(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System_Collections_Generic.IReadOnlyList_1<System_Internal.String> | undefined>;
1705
- }
1706
-
1707
- export interface __Ext_Microsoft_EntityFrameworkCore_Infrastructure_Expression {
1708
- Print(characterLimit?: System.Nullable_1<System_Internal.Int32>): Rewrap<this, string>;
1709
- MakeMemberAccess(member: System_Reflection.MemberInfo): Rewrap<this, System_Linq_Expressions.MemberExpression>;
1710
- CreateValueBufferReadValueExpression(type: System.Type, index: int, property: Microsoft_EntityFrameworkCore_Metadata.IPropertyBase): Rewrap<this, System_Linq_Expressions.Expression>;
1711
- CreateKeyValuesExpression(properties: System_Collections_Generic.IReadOnlyList_1<Microsoft_EntityFrameworkCore_Metadata.IProperty>, makeNullable?: boolean): Rewrap<this, System_Linq_Expressions.Expression>;
1712
- CreateEFPropertyExpression(property: Microsoft_EntityFrameworkCore_Metadata.IPropertyBase, makeNullable?: boolean): Rewrap<this, System_Linq_Expressions.Expression>;
1713
- }
1714
-
1715
- export interface __Ext_Microsoft_EntityFrameworkCore_Infrastructure_LambdaExpression {
1716
- GetPropertyAccess(): Rewrap<this, System_Reflection.PropertyInfo>;
1717
- GetMemberAccess(): Rewrap<this, System_Reflection.MemberInfo>;
1718
- GetPropertyAccessList(): Rewrap<this, System_Collections_Generic.IReadOnlyList_1<System_Reflection.PropertyInfo>>;
1719
- GetMemberAccessList(): Rewrap<this, System_Collections_Generic.IReadOnlyList_1<System_Reflection.MemberInfo>>;
1720
- }
1721
-
1722
- export interface __Ext_Microsoft_EntityFrameworkCore_Infrastructure_MemberExpression {
1723
- Assign(valueExpression: System_Linq_Expressions.Expression): Rewrap<this, System_Linq_Expressions.Expression>;
1724
- }
1725
-
1726
- export interface __Ext_Microsoft_EntityFrameworkCore_Infrastructure_MethodCallExpression {
1727
- TryGetEFPropertyArguments(entityExpression: System_Linq_Expressions.Expression, propertyName: string): Rewrap<this, boolean>;
1728
- TryGetIndexerArguments(model: Microsoft_EntityFrameworkCore_Metadata.IModel, entityExpression: System_Linq_Expressions.Expression, propertyName: string): Rewrap<this, boolean>;
1729
- }
1730
-
1731
- export interface __Ext_Microsoft_EntityFrameworkCore_Infrastructure_MethodInfo {
1732
- IsEFPropertyMethod(): Rewrap<this, boolean>;
1733
- }
1734
-
1735
- export interface __Ext_Microsoft_EntityFrameworkCore_Infrastructure_Type {
1736
- ShortDisplayName(): Rewrap<this, string>;
1737
- }
1738
-
1739
- export interface __Ext_Microsoft_EntityFrameworkCore_Infrastructure_Internal_IDbContextOptions {
1740
- BuildOptionsFragment(): Rewrap<this, string>;
1741
- }
1742
-
1743
- export interface __Ext_Microsoft_EntityFrameworkCore_Internal_DbContext {
1744
- ConfigureConventions(configurationBuilder: Microsoft_EntityFrameworkCore.ModelConfigurationBuilder): Rewrap<this, void>;
1745
- }
1746
-
1747
- export interface __Ext_Microsoft_EntityFrameworkCore_Internal_ICurrentDbContext {
1748
- GetDependencies(): Rewrap<this, Microsoft_EntityFrameworkCore_Internal.IDbContextDependencies>;
1749
- }
1750
-
1751
- export interface __Ext_Microsoft_EntityFrameworkCore_Internal_IDbContextDependencies {
1752
- GetDependencies(): Rewrap<this, Microsoft_EntityFrameworkCore_Internal.IDbContextDependencies>;
1753
- }
1754
-
1755
- export interface __Ext_Microsoft_EntityFrameworkCore_Internal_IEntityType {
1756
- IsAdHoc(): Rewrap<this, boolean>;
1757
- }
1758
-
1759
- export interface __Ext_Microsoft_EntityFrameworkCore_Internal_IModel {
1760
- EnsureRelationalModel(): Rewrap<this, void>;
1761
- }
1762
-
1763
- export interface __Ext_Microsoft_EntityFrameworkCore_Internal_IReadOnlyTypeBase {
1764
- GetOwnedName(simpleName: string, ownershipNavigation: string): Rewrap<this, string>;
1765
- GetRuntimeProperties(): Rewrap<this, System_Collections_Generic.IReadOnlyDictionary_2<System_Internal.String, System_Reflection.PropertyInfo>>;
1766
- GetRuntimeFields(): Rewrap<this, System_Collections_Generic.IReadOnlyDictionary_2<System_Internal.String, System_Reflection.FieldInfo>>;
1767
- }
1768
-
1769
- export interface __Ext_Microsoft_EntityFrameworkCore_Internal_ITypeBase {
1770
- GetComplexProperty(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IComplexProperty>;
1771
- }
1772
-
1773
- export interface __Ext_Microsoft_EntityFrameworkCore_Internal_TypeBase {
1774
- DisplayName(): Rewrap<this, string>;
1775
- ShortName(): Rewrap<this, string>;
1776
- }
1777
-
1778
- export interface __Ext_Microsoft_EntityFrameworkCore_Internal_RelationalCommandResolver {
1779
- RentAndPopulateRelationalCommand(queryContext: Microsoft_EntityFrameworkCore_Query.RelationalQueryContext): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.IRelationalCommand>;
1780
- }
1781
-
1782
- export interface __Ext_Microsoft_EntityFrameworkCore_Internal_IEnumerable_1<T> {
1783
- FormatTables(): Rewrap<this, string>;
1784
- }
1785
-
1786
- export interface __Ext_Microsoft_EntityFrameworkCore_Internal_Expression {
1787
- MakeHasSentinel(propertyBase: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyPropertyBase): Rewrap<this, System_Linq_Expressions.Expression>;
1788
- MatchSimpleMemberAccess<TMemberInfo>(memberAccessExpression: System_Linq_Expressions.Expression): Rewrap<this, TMemberInfo | undefined>;
1789
- RemoveTypeAs(): Rewrap<this, System_Linq_Expressions.Expression | undefined>;
1790
- IsLogicalOperation(): Rewrap<this, boolean>;
1791
- GetLambdaOrNull(): Rewrap<this, System_Linq_Expressions.LambdaExpression | undefined>;
1792
- }
1793
-
1794
- export interface __Ext_Microsoft_EntityFrameworkCore_Internal_LambdaExpression {
1795
- MatchMemberAccessList<TMemberInfo>(memberMatcher: System.Func_3<System_Linq_Expressions.Expression, System_Linq_Expressions.Expression, TMemberInfo>): Rewrap<this, System_Collections_Generic.IReadOnlyList_1<TMemberInfo> | undefined>;
1796
- }
1797
-
1798
- export interface __Ext_Microsoft_EntityFrameworkCore_Internal_UnaryExpression {
1799
- IsLogicalNot(): Rewrap<this, boolean>;
1800
- }
1801
-
1802
- export interface __Ext_Microsoft_EntityFrameworkCore_Internal_MethodInfo {
1803
- MethodIsClosedFormOf(genericMethod: System_Reflection.MethodInfo): Rewrap<this, boolean>;
1804
- DisplayName(): Rewrap<this, string>;
1805
- }
1806
-
1807
- export interface __Ext_Microsoft_EntityFrameworkCore_Internal_Type {
1808
- IsDefaultValue(value: unknown): Rewrap<this, boolean>;
1809
- GetFieldInfo(fieldName: string): Rewrap<this, System_Reflection.FieldInfo | undefined>;
1810
- GenerateParameterName(): Rewrap<this, string>;
1811
- FindIndexerProperty(): Rewrap<this, System_Reflection.PropertyInfo | undefined>;
1812
- }
1813
-
1814
- export interface __Ext_Microsoft_EntityFrameworkCore_Internal_ValueTuple_2<T1, T2> {
1815
- FormatTable(): Rewrap<this, string>;
1816
- }
1817
-
1818
- export interface __Ext_Microsoft_EntityFrameworkCore_Metadata_ConfigurationSource {
1819
- Overrides(oldConfigurationSource: System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>): Rewrap<this, boolean>;
1820
- OverridesStrictly(oldConfigurationSource: System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>): Rewrap<this, boolean>;
1821
- Max(right: System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>;
1822
- }
1823
-
1824
- export interface __Ext_Microsoft_EntityFrameworkCore_Metadata_Nullable_1<T> {
1825
- Overrides(oldConfigurationSource: System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>): Rewrap<this, boolean>;
1826
- OverridesStrictly(oldConfigurationSource: System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>): Rewrap<this, boolean>;
1827
- Max(right: System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
1828
- }
1829
-
1830
- export interface __Ext_Microsoft_EntityFrameworkCore_Metadata_Conventions_Internal_IConventionBatch {
1831
- Run(relationshipBuilder: Microsoft_EntityFrameworkCore_Metadata_Internal.InternalForeignKeyBuilder): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Internal.InternalForeignKeyBuilder | undefined>;
1832
- }
1833
-
1834
- export interface __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IComplexProperty {
1835
- GetChainToComplexProperty(fromEntity: boolean): Rewrap<this, System_Collections_Generic.IReadOnlyList_1<Microsoft_EntityFrameworkCore_Metadata.IComplexProperty>>;
1836
- }
1837
-
1838
- export interface __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IConventionEntityType {
1839
- GetNavigationMemberInfo(navigationName: string): Rewrap<this, System_Reflection.MemberInfo>;
1840
- IsOwned(): Rewrap<this, boolean>;
1841
- FindInOwnershipPath(targetType: System.Type): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType | undefined>;
1842
- IsInOwnershipPath(targetType: System.Type): Rewrap<this, boolean>;
1843
- IsInOwnershipPath(targetType: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType): Rewrap<this, boolean>;
1844
- FindDeclaredPrimaryKey(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlyKey | undefined>;
1845
- FindDerivedNavigations(navigationName: string): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyNavigation>>;
1846
- FindDeclaredOwnership(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionForeignKey | undefined>;
1847
- GetStoreObjectConfigurationSource(type: Microsoft_EntityFrameworkCore_Metadata.StoreObjectType): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
1848
- }
1849
-
1850
- export interface __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IEntityType {
1851
- FindDeclaredReferencingRowInternalForeignKeys(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IForeignKey>>;
1852
- GetNonPrincipalSharedNonPkProperties(table: Microsoft_EntityFrameworkCore_Metadata.ITableBase): Rewrap<this, System_Collections_Generic.List_1<Microsoft_EntityFrameworkCore_Metadata.IProperty>>;
1853
- }
1854
-
1855
- export interface __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IForeignKey {
1856
- GetPropertiesWithMinimalOverlapIfPossible(foreignKeyProperties: System_Collections_Generic.IReadOnlyList_1<Microsoft_EntityFrameworkCore_Metadata.IProperty>, principalKeyProperties: System_Collections_Generic.IReadOnlyList_1<Microsoft_EntityFrameworkCore_Metadata.IProperty>): Rewrap<this, void>;
1857
- }
1858
-
1859
- export interface __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IModel {
1860
- GetRootEntityTypes(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IEntityType>>;
1861
- GetEntityTypesInHierarchicalOrder(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IEntityType>>;
1862
- FindSameTypeNameWithDifferentNamespace(type: System.Type): Rewrap<this, string | undefined>;
1863
- }
1864
-
1865
- export interface __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IMutableModel {
1866
- SetProductVersion(value: string): Rewrap<this, void>;
1867
- }
1868
-
1869
- export interface __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IProperty {
1870
- FindGenerationProperty(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IProperty | undefined>;
1871
- MayBeStoreGenerated(): Rewrap<this, boolean>;
1872
- }
1873
-
1874
- export interface __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IPropertyBase {
1875
- GetShadowIndex(): Rewrap<this, int>;
1876
- GetStoreGeneratedIndex(): Rewrap<this, int>;
1877
- GetRelationshipIndex(): Rewrap<this, int>;
1878
- GetOriginalValueIndex(): Rewrap<this, int>;
1879
- GetPropertyIndexes(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Internal.PropertyIndexes>;
1880
- GetPropertyAccessors(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Internal.PropertyAccessors>;
1881
- TryGetMemberInfo(forMaterialization: boolean, forSet: boolean, memberInfo: System_Reflection.MemberInfo, errorMessage: string): Rewrap<this, boolean>;
1882
- }
1883
-
1884
- export interface __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlyComplexProperty {
1885
- RequiresOriginalValue(): Rewrap<this, boolean>;
1886
- }
1887
-
1888
- export interface __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlyEntityType {
1889
- GetNavigationMemberInfo(navigationName: string): Rewrap<this, System_Reflection.MemberInfo>;
1890
- IsOwned(): Rewrap<this, boolean>;
1891
- FindDeclaredOwnership(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlyForeignKey | undefined>;
1892
- FindInOwnershipPath(targetType: System.Type): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType | undefined>;
1893
- IsInOwnershipPath(targetType: System.Type): Rewrap<this, boolean>;
1894
- IsInOwnershipPath(targetType: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType): Rewrap<this, boolean>;
1895
- FindDeclaredPrimaryKey(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlyKey | undefined>;
1896
- FindDerivedNavigations(navigationName: string): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyNavigation>>;
1897
- }
1898
-
1899
- export interface __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlyForeignKey {
1900
- IsSelfReferencing(): Rewrap<this, boolean>;
1901
- GetNavigations(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyNavigation>>;
1902
- FindNavigationsFrom(entityType: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyNavigation>>;
1903
- FindNavigationsFromInHierarchy(entityType: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyNavigation>>;
1904
- FindNavigationsTo(entityType: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyNavigation>>;
1905
- FindNavigationsToInHierarchy(entityType: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyNavigation>>;
1906
- AreCompatible(duplicateForeignKey: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyForeignKey, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, shouldThrow: boolean): Rewrap<this, boolean>;
1907
- GetConstraintName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, principalStoreObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, logger: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Model_Validation>): Rewrap<this, string | undefined>;
1908
- GetDefaultName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, principalStoreObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, logger: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Model_Validation>): Rewrap<this, string | undefined>;
1909
- }
1910
-
1911
- export interface __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlyIndex {
1912
- AreCompatible(duplicateIndex: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyIndex, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, shouldThrow: boolean): Rewrap<this, boolean>;
1913
- GetDatabaseName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, logger: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Model_Validation>): Rewrap<this, string | undefined>;
1914
- GetDefaultDatabaseName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, logger: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Model_Validation>): Rewrap<this, string | undefined>;
1915
- }
1916
-
1917
- export interface __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlyKey {
1918
- IndexOf(property: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty): Rewrap<this, int>;
1919
- AreCompatible(duplicateKey: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyKey, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, shouldThrow: boolean): Rewrap<this, boolean>;
1920
- GetName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, logger: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Model_Validation>): Rewrap<this, string | undefined>;
1921
- GetDefaultName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, logger: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Model_Validation>): Rewrap<this, string | undefined>;
1922
- }
1923
-
1924
- export interface __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlyNavigation {
1925
- CreateMemberIdentity(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.MemberIdentity>;
1926
- }
1927
-
1928
- export interface __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlyProperty {
1929
- FindFirstDifferentPrincipal(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty | undefined>;
1930
- RequiresValueGenerator(): Rewrap<this, boolean>;
1931
- IsForeignKeyToSelf(): Rewrap<this, boolean>;
1932
- RequiresOriginalValue(): Rewrap<this, boolean>;
1933
- GetConfiguredColumnType(): Rewrap<this, string | undefined>;
1934
- IsOrdinalKeyProperty(): Rewrap<this, boolean>;
1935
- }
1936
-
1937
- export interface __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlyPropertyBase {
1938
- GetIdentifyingMemberInfo(): Rewrap<this, System_Reflection.MemberInfo | undefined>;
1939
- }
1940
-
1941
- export interface __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlySkipNavigation {
1942
- CreateMemberIdentity(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.MemberIdentity>;
1943
- }
1944
-
1945
- export interface __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlyTypeBase {
1946
- UseEagerSnapshots(): Rewrap<this, boolean>;
1947
- ShortNameChain(): Rewrap<this, string>;
1948
- CheckContains<T>(property: T): Rewrap<this, T>;
1949
- IsMainFragment(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, boolean>;
1950
- }
1951
-
1952
- export interface __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_ITypeBase {
1953
- GetViewOrTableMappings(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.ITableMappingBase>>;
1954
- }
1955
-
1956
- export interface __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_EntityType {
1957
- LeastDerivedType(otherEntityType: Microsoft_EntityFrameworkCore_Metadata_Internal.EntityType): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Internal.EntityType | undefined>;
1958
- IsAssignableFrom(otherEntityType: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType): Rewrap<this, boolean>;
1959
- IsStrictlyDerivedFrom(otherEntityType: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType): Rewrap<this, boolean>;
1960
- GetDiscriminatorValue(): Rewrap<this, unknown | undefined>;
1961
- }
1962
-
1963
- export interface __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IRuntimeEntityType {
1964
- CalculateCounts(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Internal.PropertyCounts>;
1965
- }
1966
-
1967
- export interface __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_Property {
1968
- IsKey(): Rewrap<this, boolean>;
1969
- }
1970
-
1971
- export interface __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_PropertyBase {
1972
- IsShadowProperty(): Rewrap<this, boolean>;
1973
- IsIndexerProperty(): Rewrap<this, boolean>;
1974
- }
1975
-
1976
- export interface __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_TypeConfigurationType {
1977
- IsEntityType(): Rewrap<this, boolean>;
1978
- }
1979
-
1980
- export interface __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_ValueGenerated {
1981
- ForAdd(): Rewrap<this, boolean>;
1982
- ForUpdate(): Rewrap<this, boolean>;
1983
- }
1984
-
1985
- export interface __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_Nullable_1<T> {
1986
- IsEntityType(): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
1987
- }
1988
-
1989
- export interface __Ext_Microsoft_EntityFrameworkCore_Migrations_IMigrationsAssembly {
1990
- GetMigrationId(nameOrId: string): Rewrap<this, string>;
1991
- }
1992
-
1993
- export interface __Ext_Microsoft_EntityFrameworkCore_Migrations_Internal_Migration {
1994
- GetId(): Rewrap<this, string>;
1995
- }
1996
-
1997
- export interface __Ext_Microsoft_EntityFrameworkCore_Storage_IDbContextTransaction {
1998
- GetDbTransaction(): Rewrap<this, System_Data_Common.DbTransaction>;
1999
- }
2000
-
2001
- export interface __Ext_Microsoft_EntityFrameworkCore_Storage_IExecutionStrategy {
2002
- ExecuteInTransaction(operation: System.Action, verifySucceeded: System.Func_1<System_Internal.Boolean>, isolationLevel: System_Data.IsolationLevel): Rewrap<this, void>;
2003
- ExecuteInTransactionAsync(operation: System.Func_1<System_Threading_Tasks.Task>, verifySucceeded: System.Func_1<System_Threading_Tasks.Task_1<System_Internal.Boolean>>, isolationLevel: System_Data.IsolationLevel): Rewrap<this, System_Threading_Tasks.Task>;
2004
- ExecuteInTransactionAsync(operation: System.Func_2<System_Threading.CancellationToken, System_Threading_Tasks.Task>, verifySucceeded: System.Func_2<System_Threading.CancellationToken, System_Threading_Tasks.Task_1<System_Internal.Boolean>>, isolationLevel: System_Data.IsolationLevel, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
2005
- ExecuteInTransaction<TResult>(operation: System.Func_1<TResult>, verifySucceeded: System.Func_1<System_Internal.Boolean>, isolationLevel: System_Data.IsolationLevel): Rewrap<this, TResult>;
2006
- ExecuteInTransactionAsync<TResult>(operation: System.Func_2<System_Threading.CancellationToken, System_Threading_Tasks.Task_1<TResult>>, verifySucceeded: System.Func_2<System_Threading.CancellationToken, System_Threading_Tasks.Task_1<System_Internal.Boolean>>, isolationLevel: System_Data.IsolationLevel, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<TResult>>;
2007
- ExecuteInTransaction<TState>(state: TState, operation: System.Action_1<TState>, verifySucceeded: System.Func_2<TState, System_Internal.Boolean>, isolationLevel: System_Data.IsolationLevel): Rewrap<this, void>;
2008
- ExecuteInTransactionAsync<TState>(state: TState, operation: System.Func_3<TState, System_Threading.CancellationToken, System_Threading_Tasks.Task>, verifySucceeded: System.Func_3<TState, System_Threading.CancellationToken, System_Threading_Tasks.Task_1<System_Internal.Boolean>>, isolationLevel: System_Data.IsolationLevel, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
2009
- ExecuteInTransaction<TState, TResult>(state: TState, operation: System.Func_2<TState, TResult>, verifySucceeded: System.Func_2<TState, System_Internal.Boolean>, isolationLevel: System_Data.IsolationLevel): Rewrap<this, TResult>;
2010
- ExecuteInTransactionAsync<TState, TResult>(state: TState, operation: System.Func_3<TState, System_Threading.CancellationToken, System_Threading_Tasks.Task_1<TResult>>, verifySucceeded: System.Func_3<TState, System_Threading.CancellationToken, System_Threading_Tasks.Task_1<System_Internal.Boolean>>, isolationLevel: System_Data.IsolationLevel, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<TResult>>;
2011
- }
2012
-
2013
- export interface __Ext_Microsoft_EntityFrameworkCore_Storage_IRelationalCommandBuilder {
2014
- AppendLine(value: string): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.IRelationalCommandBuilder>;
2015
- AppendLine(value: System.FormattableString): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.IRelationalCommandBuilder>;
2016
- AppendLines(value: string, skipFinalNewline?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.IRelationalCommandBuilder>;
2017
- Indent(): Rewrap<this, System.IDisposable>;
2018
- AddParameter(invariantName: string, name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.IRelationalCommandBuilder>;
2019
- AddParameter(invariantName: string, name: string, relationalTypeMapping: Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping, nullable: System.Nullable_1<System_Internal.Boolean>, direction?: System_Data.ParameterDirection): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.IRelationalCommandBuilder>;
2020
- AddCompositeParameter(invariantName: string, subParameters: System_Collections_Generic.IReadOnlyList_1<Microsoft_EntityFrameworkCore_Storage.IRelationalParameter>): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.IRelationalCommandBuilder>;
2021
- AddRawParameter(invariantName: string, dbParameter: System_Data_Common.DbParameter): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.IRelationalCommandBuilder>;
2022
- }
2023
-
2024
- export interface __Ext_Microsoft_EntityFrameworkCore_Storage_IRelationalTypeMappingSource {
2025
- GetMappingForValue(value: unknown): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping>;
2026
- GetMappingForValue(value: unknown, model: Microsoft_EntityFrameworkCore_Metadata.IModel): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping>;
2027
- GetMapping(property: Microsoft_EntityFrameworkCore_Metadata.IProperty): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping>;
2028
- GetMapping(clrType: System.Type): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping>;
2029
- GetMapping(clrType: System.Type, model: Microsoft_EntityFrameworkCore_Metadata.IModel): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping>;
2030
- GetMapping(typeName: string): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping>;
2031
- }
2032
-
2033
- export interface __Ext_Microsoft_EntityFrameworkCore_Storage_Internal_DbParameter {
2034
- FormatParameter(logParameterValues: boolean): Rewrap<this, string>;
2035
- }
2036
-
2037
- export interface __Ext_Microsoft_EntityFrameworkCore_Storage_Internal_DbParameterCollection {
2038
- FormatParameters(logParameterValues: boolean): Rewrap<this, string>;
2039
- }
2040
-
2041
- export interface __Ext_Microsoft_EntityFrameworkCore_Update_IUpdateEntry {
2042
- GetCurrentProviderValue(property: Microsoft_EntityFrameworkCore_Metadata.IProperty): Rewrap<this, unknown | undefined>;
2043
- GetOriginalProviderValue(property: Microsoft_EntityFrameworkCore_Metadata.IProperty): Rewrap<this, unknown | undefined>;
2044
- ToDebugString(options?: Microsoft_EntityFrameworkCore_ChangeTracking.ChangeTrackerDebugStringOptions, indent?: int): Rewrap<this, string>;
2045
- BuildCurrentValuesString(properties: System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IPropertyBase>): Rewrap<this, string>;
2046
- BuildOriginalValuesString(properties: System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IPropertyBase>): Rewrap<this, string>;
2047
- }
2048
-
2049
- export interface __Ext_Microsoft_Extensions_DependencyInjection_IServiceCollection {
2050
- AddDbContext<TContext>(optionsAction?: System.Action_1<Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>, contextLifetime?: Microsoft_Extensions_DependencyInjection.ServiceLifetime, optionsLifetime?: Microsoft_Extensions_DependencyInjection.ServiceLifetime): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
2051
- AddDbContextPool<TContext>(optionsAction: System.Action_1<Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>, poolSize?: int): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
2052
- AddDbContextPool<TContext>(optionsAction: System.Action_2<System.IServiceProvider, Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>, poolSize?: int): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
2053
- AddDbContext<TContext>(contextLifetime: Microsoft_Extensions_DependencyInjection.ServiceLifetime, optionsLifetime?: Microsoft_Extensions_DependencyInjection.ServiceLifetime): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
2054
- AddDbContext<TContext>(optionsAction: System.Action_2<System.IServiceProvider, Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>, contextLifetime?: Microsoft_Extensions_DependencyInjection.ServiceLifetime, optionsLifetime?: Microsoft_Extensions_DependencyInjection.ServiceLifetime): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
2055
- AddDbContextFactory<TContext>(optionsAction?: System.Action_1<Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>, lifetime?: Microsoft_Extensions_DependencyInjection.ServiceLifetime): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
2056
- AddDbContextFactory<TContext>(optionsAction: System.Action_2<System.IServiceProvider, Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>, lifetime?: Microsoft_Extensions_DependencyInjection.ServiceLifetime): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
2057
- AddPooledDbContextFactory<TContext>(optionsAction: System.Action_1<Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>, poolSize?: int): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
2058
- AddPooledDbContextFactory<TContext>(optionsAction: System.Action_2<System.IServiceProvider, Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>, poolSize?: int): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
2059
- ConfigureDbContext<TContext>(optionsAction: System.Action_1<Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>, optionsLifetime?: Microsoft_Extensions_DependencyInjection.ServiceLifetime): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
2060
- ConfigureDbContext<TContext>(optionsAction: System.Action_2<System.IServiceProvider, Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>, optionsLifetime?: Microsoft_Extensions_DependencyInjection.ServiceLifetime): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
2061
- }
2062
-
2063
- export interface __Ext_System_Transactions_DatabaseFacade {
2064
- EnlistTransaction(transaction: System_Transactions.Transaction): Rewrap<this, void>;
2065
- GetEnlistedTransaction(): Rewrap<this, System_Transactions.Transaction | undefined>;
2066
- }
2067
-
2068
50
  // Internal helper types for sticky extension scopes
2069
51
  type __TsonicExtMapOf<T> = T extends { __tsonic_ext?: infer M } ? M : {};
2070
52
  type __TsonicMergeExtMaps<A, B> = A & B;
2071
53
  type __TsonicWithExt<TShape, K extends string, TApplier> = { __tsonic_ext?: __TsonicMergeExtMaps<__TsonicExtMapOf<TShape>, { [P in K]: TApplier }> };
2072
54
 
2073
- // Generic helper type for extension methods in namespace: Microsoft.EntityFrameworkCore
2074
- type __TsonicExtSurface_Microsoft_EntityFrameworkCore<TShape> =
2075
- (
2076
- (TShape extends Microsoft_EntityFrameworkCore.DbFunctions ? __Ext_Microsoft_EntityFrameworkCore_DbFunctions : {}) & (TShape extends Microsoft_EntityFrameworkCore.DbSet_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_DbSet_1<T0> : {}) & (TShape extends Microsoft_EntityFrameworkCore.ModelBuilder ? __Ext_Microsoft_EntityFrameworkCore_ModelBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_ChangeTracking.ChangeTracker ? __Ext_Microsoft_EntityFrameworkCore_ChangeTracker : {}) & (TShape extends Microsoft_EntityFrameworkCore_Infrastructure.DatabaseFacade ? __Ext_Microsoft_EntityFrameworkCore_DatabaseFacade : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionComplexProperty ? __Ext_Microsoft_EntityFrameworkCore_IConventionComplexProperty : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionElementType ? __Ext_Microsoft_EntityFrameworkCore_IConventionElementType : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType ? __Ext_Microsoft_EntityFrameworkCore_IConventionEntityType : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionForeignKey ? __Ext_Microsoft_EntityFrameworkCore_IConventionForeignKey : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionIndex ? __Ext_Microsoft_EntityFrameworkCore_IConventionIndex : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionKey ? __Ext_Microsoft_EntityFrameworkCore_IConventionKey : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionModel ? __Ext_Microsoft_EntityFrameworkCore_IConventionModel : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionProperty ? __Ext_Microsoft_EntityFrameworkCore_IConventionProperty : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionTrigger ? __Ext_Microsoft_EntityFrameworkCore_IConventionTrigger : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionTypeBase ? __Ext_Microsoft_EntityFrameworkCore_IConventionTypeBase : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IElementType ? __Ext_Microsoft_EntityFrameworkCore_IElementType : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IEntityType ? __Ext_Microsoft_EntityFrameworkCore_IEntityType : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IForeignKey ? __Ext_Microsoft_EntityFrameworkCore_IForeignKey : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IIndex ? __Ext_Microsoft_EntityFrameworkCore_IIndex : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IKey ? __Ext_Microsoft_EntityFrameworkCore_IKey : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IModel ? __Ext_Microsoft_EntityFrameworkCore_IModel : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableComplexProperty ? __Ext_Microsoft_EntityFrameworkCore_IMutableComplexProperty : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableElementType ? __Ext_Microsoft_EntityFrameworkCore_IMutableElementType : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableEntityType ? __Ext_Microsoft_EntityFrameworkCore_IMutableEntityType : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableForeignKey ? __Ext_Microsoft_EntityFrameworkCore_IMutableForeignKey : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableIndex ? __Ext_Microsoft_EntityFrameworkCore_IMutableIndex : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableKey ? __Ext_Microsoft_EntityFrameworkCore_IMutableKey : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableModel ? __Ext_Microsoft_EntityFrameworkCore_IMutableModel : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableProperty ? __Ext_Microsoft_EntityFrameworkCore_IMutableProperty : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableTrigger ? __Ext_Microsoft_EntityFrameworkCore_IMutableTrigger : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableTypeBase ? __Ext_Microsoft_EntityFrameworkCore_IMutableTypeBase : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IProperty ? __Ext_Microsoft_EntityFrameworkCore_IProperty : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyComplexProperty ? __Ext_Microsoft_EntityFrameworkCore_IReadOnlyComplexProperty : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyElementType ? (TShape extends Microsoft_EntityFrameworkCore_Metadata.IElementType ? {} : __Ext_Microsoft_EntityFrameworkCore_IReadOnlyElementType) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType ? (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IEntityType ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableEntityType ? {} : __Ext_Microsoft_EntityFrameworkCore_IReadOnlyEntityType))) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyForeignKey ? (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionForeignKey ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IForeignKey ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableForeignKey ? {} : __Ext_Microsoft_EntityFrameworkCore_IReadOnlyForeignKey))) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyIndex ? (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionIndex ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IIndex ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableIndex ? {} : __Ext_Microsoft_EntityFrameworkCore_IReadOnlyIndex))) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyKey ? (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionKey ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IKey ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableKey ? {} : __Ext_Microsoft_EntityFrameworkCore_IReadOnlyKey))) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyModel ? (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionModel ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IModel ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableModel ? {} : __Ext_Microsoft_EntityFrameworkCore_IReadOnlyModel))) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty ? (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionProperty ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableProperty ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IProperty ? {} : __Ext_Microsoft_EntityFrameworkCore_IReadOnlyProperty))) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyTrigger ? __Ext_Microsoft_EntityFrameworkCore_IReadOnlyTrigger : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyTypeBase ? (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IEntityType ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableEntityType ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.ITypeBase ? {} : __Ext_Microsoft_EntityFrameworkCore_IReadOnlyTypeBase))))) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.ITypeBase ? __Ext_Microsoft_EntityFrameworkCore_ITypeBase : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionBuilder_1<infer _0> ? {} : __Ext_Microsoft_EntityFrameworkCore_ComplexCollectionBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_ComplexCollectionBuilder_1<T0> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionTypePropertyBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionTypePropertyBuilder_1<infer _0> ? {} : __Ext_Microsoft_EntityFrameworkCore_ComplexCollectionTypePropertyBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionTypePropertyBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_ComplexCollectionTypePropertyBuilder_1<T0> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexPropertyBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexPropertyBuilder_1<infer _0> ? {} : __Ext_Microsoft_EntityFrameworkCore_ComplexPropertyBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexPropertyBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_ComplexPropertyBuilder_1<T0> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<infer _0> ? {} : __Ext_Microsoft_EntityFrameworkCore_ComplexTypePrimitiveCollectionBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_ComplexTypePrimitiveCollectionBuilder_1<T0> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<infer _0> ? {} : __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.ElementTypeBuilder ? __Ext_Microsoft_EntityFrameworkCore_ElementTypeBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<infer _0> ? {} : __Ext_Microsoft_EntityFrameworkCore_EntityTypeBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_EntityTypeBuilder_1<T0> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionElementTypeBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionElementTypeBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionEntityTypeBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionForeignKeyBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionForeignKeyBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionIndexBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionIndexBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionKeyBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionKeyBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionModelBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionModelBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionPropertyBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionTriggerBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionTriggerBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder_1<infer _0> ? {} : __Ext_Microsoft_EntityFrameworkCore_IndexBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_IndexBuilder_1<T0> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.KeyBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.KeyBuilder_1<infer _0> ? {} : __Ext_Microsoft_EntityFrameworkCore_KeyBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.KeyBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_KeyBuilder_1<T0> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<infer _0, infer _1> ? {} : __Ext_Microsoft_EntityFrameworkCore_OwnedNavigationBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<infer T0, infer T1> ? __Ext_Microsoft_EntityFrameworkCore_OwnedNavigationBuilder_2<T0, T1> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.OwnershipBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.OwnershipBuilder_2<infer _0, infer _1> ? {} : __Ext_Microsoft_EntityFrameworkCore_OwnershipBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.OwnershipBuilder_2<infer T0, infer T1> ? __Ext_Microsoft_EntityFrameworkCore_OwnershipBuilder_2<T0, T1> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<infer _0> ? {} : __Ext_Microsoft_EntityFrameworkCore_PrimitiveCollectionBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_PrimitiveCollectionBuilder_1<T0> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PropertiesConfigurationBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PropertiesConfigurationBuilder_1<infer _0> ? {} : __Ext_Microsoft_EntityFrameworkCore_PropertiesConfigurationBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PropertiesConfigurationBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_PropertiesConfigurationBuilder_1<T0> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<infer _0> ? {} : __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.ReferenceCollectionBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ReferenceCollectionBuilder_2<infer _0, infer _1> ? {} : __Ext_Microsoft_EntityFrameworkCore_ReferenceCollectionBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ReferenceCollectionBuilder_2<infer T0, infer T1> ? __Ext_Microsoft_EntityFrameworkCore_ReferenceCollectionBuilder_2<T0, T1> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ReferenceReferenceBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ReferenceReferenceBuilder_2<infer _0, infer _1> ? {} : __Ext_Microsoft_EntityFrameworkCore_ReferenceReferenceBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ReferenceReferenceBuilder_2<infer T0, infer T1> ? __Ext_Microsoft_EntityFrameworkCore_ReferenceReferenceBuilder_2<T0, T1> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.TypeMappingConfigurationBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.TypeMappingConfigurationBuilder_1<infer _0> ? {} : __Ext_Microsoft_EntityFrameworkCore_TypeMappingConfigurationBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.TypeMappingConfigurationBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_TypeMappingConfigurationBuilder_1<T0> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Query.IIncludableQueryable_2<infer T0, infer T1> ? __Ext_Microsoft_EntityFrameworkCore_IIncludableQueryable_2<T0, T1> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Query_SqlExpressions.TableExpressionBase ? __Ext_Microsoft_EntityFrameworkCore_TableExpressionBase : {}) & (TShape extends Microsoft_EntityFrameworkCore_Storage.IExecutionStrategy ? __Ext_Microsoft_EntityFrameworkCore_IExecutionStrategy : {}) & (TShape extends System_Collections_Generic.IEnumerable_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_IEnumerable_1<T0> : {}) & (TShape extends System_Collections_ObjectModel.ObservableCollection_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_ObservableCollection_1<T0> : {}) & (TShape extends System_Linq.IQueryable ? __Ext_Microsoft_EntityFrameworkCore_IQueryable : {}) & (TShape extends System_Linq.IQueryable_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_IQueryable_1<T0> : {}) & (TShape extends (infer T)[] ? __Ext_Microsoft_EntityFrameworkCore_IEnumerable_1<T> : {})
2077
- );
55
+ // Extension method table for namespace: Microsoft.EntityFrameworkCore
56
+ interface __TsonicExtMethods_Microsoft_EntityFrameworkCore {
57
+ AddCheckConstraint(this: Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType, name: string, sql: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionCheckConstraint>;
58
+ AddCheckConstraint(this: Microsoft_EntityFrameworkCore_Metadata.IMutableEntityType, name: string, sql: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableCheckConstraint>;
59
+ AddDbFunction(this: Microsoft_EntityFrameworkCore_Metadata.IConventionModel, methodInfo: System_Reflection.MethodInfo, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionDbFunction>;
60
+ AddDbFunction(this: Microsoft_EntityFrameworkCore_Metadata.IConventionModel, name: string, returnType: System.Type, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionDbFunction>;
61
+ AddDbFunction(this: Microsoft_EntityFrameworkCore_Metadata.IMutableModel, methodInfo: System_Reflection.MethodInfo): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableDbFunction>;
62
+ AddDbFunction(this: Microsoft_EntityFrameworkCore_Metadata.IMutableModel, name: string, returnType: System.Type): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableDbFunction>;
63
+ AddSequence(this: Microsoft_EntityFrameworkCore_Metadata.IConventionModel, name: string, schema?: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionSequence | undefined>;
64
+ AddSequence(this: Microsoft_EntityFrameworkCore_Metadata.IMutableModel, name: string, schema?: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableSequence>;
65
+ AllAsync<TSource>(this: System_Linq.IQueryable_1<TSource>, predicate: System_Linq_Expressions.Expression_1<System.Func_2<TSource, System_Internal.Boolean>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Boolean>>;
66
+ AnyAsync<TSource>(this: System_Linq.IQueryable_1<TSource>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Boolean>>;
67
+ AnyAsync<TSource>(this: System_Linq.IQueryable_1<TSource>, predicate: System_Linq_Expressions.Expression_1<System.Func_2<TSource, System_Internal.Boolean>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Boolean>>;
68
+ AreFixedLength<TProperty>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.PropertiesConfigurationBuilder_1<TProperty>, fixedLength?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertiesConfigurationBuilder_1<TProperty>>;
69
+ AreFixedLength(this: Microsoft_EntityFrameworkCore_Metadata_Builders.PropertiesConfigurationBuilder, fixedLength?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertiesConfigurationBuilder>;
70
+ AreNamedDefaultConstraintsUsed(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyModel): Rewrap<this, boolean>;
71
+ AsAsyncEnumerable<TSource>(this: System_Linq.IQueryable_1<TSource>): Rewrap<this, System_Collections_Generic.IAsyncEnumerable_1<TSource>>;
72
+ AsNoTracking<TEntity>(this: System_Linq.IQueryable_1<TEntity>): Rewrap<this, System_Linq.IQueryable_1<TEntity>>;
73
+ AsNoTrackingWithIdentityResolution<TEntity>(this: System_Linq.IQueryable_1<TEntity>): Rewrap<this, System_Linq.IQueryable_1<TEntity>>;
74
+ AsSingleQuery<TEntity>(this: System_Linq.IQueryable_1<TEntity>): Rewrap<this, System_Linq.IQueryable_1<TEntity>>;
75
+ AsSplitQuery<TEntity>(this: System_Linq.IQueryable_1<TEntity>): Rewrap<this, System_Linq.IQueryable_1<TEntity>>;
76
+ AsTracking<TEntity>(this: System_Linq.IQueryable_1<TEntity>): Rewrap<this, System_Linq.IQueryable_1<TEntity>>;
77
+ AsTracking<TEntity>(this: System_Linq.IQueryable_1<TEntity>, track: Microsoft_EntityFrameworkCore.QueryTrackingBehavior): Rewrap<this, System_Linq.IQueryable_1<TEntity>>;
78
+ AverageAsync(this: System_Linq.IQueryable_1<System_Internal.Decimal>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Decimal>>;
79
+ AverageAsync(this: System_Linq.IQueryable_1<System.Nullable_1<System_Internal.Decimal>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Decimal>>>;
80
+ AverageAsync<TSource>(this: System_Linq.IQueryable_1<TSource>, selector: System_Linq_Expressions.Expression_1<System.Func_2<TSource, System_Internal.Decimal>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Decimal>>;
81
+ AverageAsync<TSource>(this: System_Linq.IQueryable_1<TSource>, selector: System_Linq_Expressions.Expression_1<System.Func_2<TSource, System.Nullable_1<System_Internal.Decimal>>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Decimal>>>;
82
+ AverageAsync(this: System_Linq.IQueryable_1<System_Internal.Int32>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Double>>;
83
+ AverageAsync(this: System_Linq.IQueryable_1<System.Nullable_1<System_Internal.Int32>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Double>>>;
84
+ AverageAsync<TSource>(this: System_Linq.IQueryable_1<TSource>, selector: System_Linq_Expressions.Expression_1<System.Func_2<TSource, System_Internal.Int32>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Double>>;
85
+ AverageAsync<TSource>(this: System_Linq.IQueryable_1<TSource>, selector: System_Linq_Expressions.Expression_1<System.Func_2<TSource, System.Nullable_1<System_Internal.Int32>>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Double>>>;
86
+ AverageAsync(this: System_Linq.IQueryable_1<System_Internal.Int64>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Double>>;
87
+ AverageAsync(this: System_Linq.IQueryable_1<System.Nullable_1<System_Internal.Int64>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Double>>>;
88
+ AverageAsync(this: System_Linq.IQueryable_1<System_Internal.Double>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Double>>;
89
+ AverageAsync(this: System_Linq.IQueryable_1<System.Nullable_1<System_Internal.Double>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Double>>>;
90
+ AverageAsync(this: System_Linq.IQueryable_1<System_Internal.Single>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Single>>;
91
+ AverageAsync(this: System_Linq.IQueryable_1<System.Nullable_1<System_Internal.Single>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Single>>>;
92
+ AverageAsync<TSource>(this: System_Linq.IQueryable_1<TSource>, selector: System_Linq_Expressions.Expression_1<System.Func_2<TSource, System_Internal.Single>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Single>>;
93
+ AverageAsync<TSource>(this: System_Linq.IQueryable_1<TSource>, selector: System_Linq_Expressions.Expression_1<System.Func_2<TSource, System.Nullable_1<System_Internal.Single>>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Single>>>;
94
+ BeginTransaction(this: Microsoft_EntityFrameworkCore_Infrastructure.DatabaseFacade, isolationLevel: System_Data.IsolationLevel): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.IDbContextTransaction>;
95
+ BeginTransactionAsync(this: Microsoft_EntityFrameworkCore_Infrastructure.DatabaseFacade, isolationLevel: System_Data.IsolationLevel, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<Microsoft_EntityFrameworkCore_Storage.IDbContextTransaction>>;
96
+ CanExcludeTableFromMigrations(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder, excludedFromMigrations: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
97
+ CanHaveCheckConstraint(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder, name: string, sql: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
98
+ CanSetCollation(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionModelBuilder, collation: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
99
+ CanSetCollation(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder, collation: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
100
+ CanSetColumnName(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder, name: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
101
+ CanSetColumnName(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder, name: string, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
102
+ CanSetColumnOrder(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder, order: System.Nullable_1<System_Internal.Int32>, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
103
+ CanSetColumnType(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder, typeName: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
104
+ CanSetComment(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder, comment: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
105
+ CanSetComment(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder, comment: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
106
+ CanSetComputedColumnSql(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder, sql: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
107
+ CanSetConstraintName(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionForeignKeyBuilder, name: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
108
+ CanSetDatabaseName(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionIndexBuilder, name: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
109
+ CanSetDatabaseName(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionTriggerBuilder, name: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
110
+ CanSetDefaultSchema(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionModelBuilder, schema: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
111
+ CanSetDefaultValue(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder, value: unknown, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
112
+ CanSetDefaultValueSql(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder, sql: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
113
+ CanSetFilter(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionIndexBuilder, sql: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
114
+ CanSetFixedLength(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionElementTypeBuilder, fixedLength: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
115
+ CanSetFunction(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder, name: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
116
+ CanSetFunction(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder, function_: System_Reflection.MethodInfo, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
117
+ CanSetIsFixedLength(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder, fixedLength: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
118
+ CanSetIsStoredComputedColumn(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder, stored: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
119
+ CanSetJsonPropertyName(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder, name: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
120
+ CanSetJsonPropertyName(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder, name: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
121
+ CanSetMappingStrategy(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder, strategy: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
122
+ CanSetMaxIdentifierLength(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionModelBuilder, length: System.Nullable_1<System_Internal.Int32>, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
123
+ CanSetName(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionKeyBuilder, name: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
124
+ CanSetSchema(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder, schema: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
125
+ CanSetSqlQuery(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder, name: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
126
+ CanSetStoreType(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionElementTypeBuilder, typeName: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
127
+ CanSetTable(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder, name: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
128
+ CanSetTableName(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionTriggerBuilder, name: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
129
+ CanSetTableSchema(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionTriggerBuilder, schema: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
130
+ CanSetView(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder, name: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
131
+ CanSetViewSchema(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder, schema: string, fromDataAnnotation?: boolean): Rewrap<this, boolean>;
132
+ CloseConnection(this: Microsoft_EntityFrameworkCore_Infrastructure.DatabaseFacade): Rewrap<this, void>;
133
+ CloseConnectionAsync(this: Microsoft_EntityFrameworkCore_Infrastructure.DatabaseFacade): Rewrap<this, System_Threading_Tasks.Task>;
134
+ Collate<TProperty>(this: Microsoft_EntityFrameworkCore.DbFunctions, operand: TProperty, collation: string): Rewrap<this, TProperty>;
135
+ ContainsAsync<TSource>(this: System_Linq.IQueryable_1<TSource>, item: TSource, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Boolean>>;
136
+ CountAsync<TSource>(this: System_Linq.IQueryable_1<TSource>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Int32>>;
137
+ CountAsync<TSource>(this: System_Linq.IQueryable_1<TSource>, predicate: System_Linq_Expressions.Expression_1<System.Func_2<TSource, System_Internal.Boolean>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Int32>>;
138
+ CreateDbCommand(this: System_Linq.IQueryable): Rewrap<this, System_Data_Common.DbCommand>;
139
+ DeleteUsingStoredProcedure<TEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder_1<TEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
140
+ DeleteUsingStoredProcedure<TEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>, name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder_1<TEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
141
+ DeleteUsingStoredProcedure<TEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>, name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder_1<TEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
142
+ DeleteUsingStoredProcedure(this: Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
143
+ DeleteUsingStoredProcedure(this: Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder, name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
144
+ DeleteUsingStoredProcedure(this: Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder, name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
145
+ DeleteUsingStoredProcedure(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionStoredProcedureBuilder | undefined>;
146
+ DeleteUsingStoredProcedure<TOwnerEntity, TDependentEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder_2<TOwnerEntity, TDependentEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
147
+ DeleteUsingStoredProcedure<TOwnerEntity, TDependentEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder_2<TOwnerEntity, TDependentEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
148
+ DeleteUsingStoredProcedure<TOwnerEntity, TDependentEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder_2<TOwnerEntity, TDependentEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
149
+ DeleteUsingStoredProcedure(this: Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
150
+ DeleteUsingStoredProcedure(this: Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder, name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
151
+ DeleteUsingStoredProcedure(this: Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder, name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
152
+ ElementAtAsync<TSource>(this: System_Linq.IQueryable_1<TSource>, index: int, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<TSource>>;
153
+ ElementAtOrDefaultAsync<TSource>(this: System_Linq.IQueryable_1<TSource>, index: int, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<TSource | undefined>>;
154
+ ExcludeTableFromMigrations(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder, excludedFromMigrations: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder | undefined>;
155
+ Execute(this: Microsoft_EntityFrameworkCore_Storage.IExecutionStrategy, operation: System.Action): Rewrap<this, void>;
156
+ Execute<TResult>(this: Microsoft_EntityFrameworkCore_Storage.IExecutionStrategy, operation: System.Func_1<TResult>): Rewrap<this, TResult>;
157
+ Execute<TState>(this: Microsoft_EntityFrameworkCore_Storage.IExecutionStrategy, state: TState, operation: System.Action_1<TState>): Rewrap<this, void>;
158
+ Execute<TState, TResult>(this: Microsoft_EntityFrameworkCore_Storage.IExecutionStrategy, state: TState, operation: System.Func_2<TState, TResult>): Rewrap<this, TResult>;
159
+ Execute<TState, TResult>(this: Microsoft_EntityFrameworkCore_Storage.IExecutionStrategy, state: TState, operation: System.Func_2<TState, TResult>, verifySucceeded: System.Func_2<TState, Microsoft_EntityFrameworkCore_Storage.ExecutionResult_1<TResult>>): Rewrap<this, TResult>;
160
+ ExecuteAsync(this: Microsoft_EntityFrameworkCore_Storage.IExecutionStrategy, operation: System.Func_1<System_Threading_Tasks.Task>): Rewrap<this, System_Threading_Tasks.Task>;
161
+ ExecuteAsync(this: Microsoft_EntityFrameworkCore_Storage.IExecutionStrategy, operation: System.Func_2<System_Threading.CancellationToken, System_Threading_Tasks.Task>, cancellationToken: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
162
+ ExecuteAsync<TResult>(this: Microsoft_EntityFrameworkCore_Storage.IExecutionStrategy, operation: System.Func_1<System_Threading_Tasks.Task_1<TResult>>): Rewrap<this, System_Threading_Tasks.Task_1<TResult>>;
163
+ ExecuteAsync<TResult>(this: Microsoft_EntityFrameworkCore_Storage.IExecutionStrategy, operation: System.Func_2<System_Threading.CancellationToken, System_Threading_Tasks.Task_1<TResult>>, cancellationToken: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<TResult>>;
164
+ ExecuteAsync<TState>(this: Microsoft_EntityFrameworkCore_Storage.IExecutionStrategy, state: TState, operation: System.Func_2<TState, System_Threading_Tasks.Task>): Rewrap<this, System_Threading_Tasks.Task>;
165
+ ExecuteAsync<TState>(this: Microsoft_EntityFrameworkCore_Storage.IExecutionStrategy, state: TState, operation: System.Func_3<TState, System_Threading.CancellationToken, System_Threading_Tasks.Task>, cancellationToken: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
166
+ ExecuteAsync<TState, TResult>(this: Microsoft_EntityFrameworkCore_Storage.IExecutionStrategy, state: TState, operation: System.Func_2<TState, System_Threading_Tasks.Task_1<TResult>>): Rewrap<this, System_Threading_Tasks.Task_1<TResult>>;
167
+ ExecuteAsync<TState, TResult>(this: Microsoft_EntityFrameworkCore_Storage.IExecutionStrategy, state: TState, operation: System.Func_3<TState, System_Threading.CancellationToken, System_Threading_Tasks.Task_1<TResult>>, cancellationToken: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<TResult>>;
168
+ ExecuteAsync<TState, TResult>(this: Microsoft_EntityFrameworkCore_Storage.IExecutionStrategy, state: TState, operation: System.Func_3<TState, System_Threading.CancellationToken, System_Threading_Tasks.Task_1<TResult>>, verifySucceeded: System.Func_3<TState, System_Threading.CancellationToken, System_Threading_Tasks.Task_1<Microsoft_EntityFrameworkCore_Storage.ExecutionResult_1<TResult>>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<TResult>>;
169
+ ExecuteDelete<TSource>(this: System_Linq.IQueryable_1<TSource>): Rewrap<this, int>;
170
+ ExecuteDeleteAsync<TSource>(this: System_Linq.IQueryable_1<TSource>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Int32>>;
171
+ ExecuteInTransaction(this: Microsoft_EntityFrameworkCore_Storage.IExecutionStrategy, operation: System.Action, verifySucceeded: System.Func_1<System_Internal.Boolean>): Rewrap<this, void>;
172
+ ExecuteInTransaction<TResult>(this: Microsoft_EntityFrameworkCore_Storage.IExecutionStrategy, operation: System.Func_1<TResult>, verifySucceeded: System.Func_1<System_Internal.Boolean>): Rewrap<this, TResult>;
173
+ ExecuteInTransaction<TState>(this: Microsoft_EntityFrameworkCore_Storage.IExecutionStrategy, state: TState, operation: System.Action_1<TState>, verifySucceeded: System.Func_2<TState, System_Internal.Boolean>): Rewrap<this, void>;
174
+ ExecuteInTransaction<TState, TResult>(this: Microsoft_EntityFrameworkCore_Storage.IExecutionStrategy, state: TState, operation: System.Func_2<TState, TResult>, verifySucceeded: System.Func_2<TState, System_Internal.Boolean>): Rewrap<this, TResult>;
175
+ ExecuteInTransactionAsync(this: Microsoft_EntityFrameworkCore_Storage.IExecutionStrategy, operation: System.Func_1<System_Threading_Tasks.Task>, verifySucceeded: System.Func_1<System_Threading_Tasks.Task_1<System_Internal.Boolean>>): Rewrap<this, System_Threading_Tasks.Task>;
176
+ ExecuteInTransactionAsync(this: Microsoft_EntityFrameworkCore_Storage.IExecutionStrategy, operation: System.Func_2<System_Threading.CancellationToken, System_Threading_Tasks.Task>, verifySucceeded: System.Func_2<System_Threading.CancellationToken, System_Threading_Tasks.Task_1<System_Internal.Boolean>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
177
+ ExecuteInTransactionAsync<TResult>(this: Microsoft_EntityFrameworkCore_Storage.IExecutionStrategy, operation: System.Func_2<System_Threading.CancellationToken, System_Threading_Tasks.Task_1<TResult>>, verifySucceeded: System.Func_2<System_Threading.CancellationToken, System_Threading_Tasks.Task_1<System_Internal.Boolean>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<TResult>>;
178
+ ExecuteInTransactionAsync<TState>(this: Microsoft_EntityFrameworkCore_Storage.IExecutionStrategy, state: TState, operation: System.Func_3<TState, System_Threading.CancellationToken, System_Threading_Tasks.Task>, verifySucceeded: System.Func_3<TState, System_Threading.CancellationToken, System_Threading_Tasks.Task_1<System_Internal.Boolean>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
179
+ ExecuteInTransactionAsync<TState, TResult>(this: Microsoft_EntityFrameworkCore_Storage.IExecutionStrategy, state: TState, operation: System.Func_3<TState, System_Threading.CancellationToken, System_Threading_Tasks.Task_1<TResult>>, verifySucceeded: System.Func_3<TState, System_Threading.CancellationToken, System_Threading_Tasks.Task_1<System_Internal.Boolean>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<TResult>>;
180
+ ExecuteSql(this: Microsoft_EntityFrameworkCore_Infrastructure.DatabaseFacade, sql: System.FormattableString): Rewrap<this, int>;
181
+ ExecuteSqlAsync(this: Microsoft_EntityFrameworkCore_Infrastructure.DatabaseFacade, sql: System.FormattableString, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Int32>>;
182
+ ExecuteSqlInterpolated(this: Microsoft_EntityFrameworkCore_Infrastructure.DatabaseFacade, sql: System.FormattableString): Rewrap<this, int>;
183
+ ExecuteSqlInterpolatedAsync(this: Microsoft_EntityFrameworkCore_Infrastructure.DatabaseFacade, sql: System.FormattableString, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Int32>>;
184
+ ExecuteSqlRaw(this: Microsoft_EntityFrameworkCore_Infrastructure.DatabaseFacade, sql: string, ...parameters: unknown[]): Rewrap<this, int>;
185
+ ExecuteSqlRaw(this: Microsoft_EntityFrameworkCore_Infrastructure.DatabaseFacade, sql: string, parameters: System_Collections_Generic.IEnumerable_1<unknown>): Rewrap<this, int>;
186
+ ExecuteSqlRawAsync(this: Microsoft_EntityFrameworkCore_Infrastructure.DatabaseFacade, sql: string, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Int32>>;
187
+ ExecuteSqlRawAsync(this: Microsoft_EntityFrameworkCore_Infrastructure.DatabaseFacade, sql: string, ...parameters: unknown[]): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Int32>>;
188
+ ExecuteSqlRawAsync(this: Microsoft_EntityFrameworkCore_Infrastructure.DatabaseFacade, sql: string, parameters: System_Collections_Generic.IEnumerable_1<unknown>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Int32>>;
189
+ ExecuteUpdate<TSource>(this: System_Linq.IQueryable_1<TSource>, setPropertyCalls: System.Action_1<Microsoft_EntityFrameworkCore_Query.UpdateSettersBuilder_1<TSource>>): Rewrap<this, int>;
190
+ ExecuteUpdateAsync<TSource>(this: System_Linq.IQueryable_1<TSource>, setPropertyCalls: System.Action_1<Microsoft_EntityFrameworkCore_Query.UpdateSettersBuilder_1<TSource>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Int32>>;
191
+ FindCheckConstraint(this: Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType, name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionCheckConstraint | undefined>;
192
+ FindCheckConstraint(this: Microsoft_EntityFrameworkCore_Metadata.IEntityType, name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.ICheckConstraint | undefined>;
193
+ FindCheckConstraint(this: Microsoft_EntityFrameworkCore_Metadata.IMutableEntityType, name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableCheckConstraint | undefined>;
194
+ FindCheckConstraint(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType, name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlyCheckConstraint | undefined>;
195
+ FindColumn(this: Microsoft_EntityFrameworkCore_Metadata.IProperty, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IColumnBase | undefined>;
196
+ FindDbFunction(this: Microsoft_EntityFrameworkCore_Metadata.IConventionModel, method: System_Reflection.MethodInfo): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionDbFunction | undefined>;
197
+ FindDbFunction(this: Microsoft_EntityFrameworkCore_Metadata.IConventionModel, name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionDbFunction | undefined>;
198
+ FindDbFunction(this: Microsoft_EntityFrameworkCore_Metadata.IModel, method: System_Reflection.MethodInfo): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IDbFunction | undefined>;
199
+ FindDbFunction(this: Microsoft_EntityFrameworkCore_Metadata.IModel, name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IDbFunction | undefined>;
200
+ FindDbFunction(this: Microsoft_EntityFrameworkCore_Metadata.IMutableModel, method: System_Reflection.MethodInfo): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableDbFunction | undefined>;
201
+ FindDbFunction(this: Microsoft_EntityFrameworkCore_Metadata.IMutableModel, name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableDbFunction | undefined>;
202
+ FindDbFunction(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyModel, method: System_Reflection.MethodInfo): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlyDbFunction | undefined>;
203
+ FindDbFunction(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyModel, name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlyDbFunction | undefined>;
204
+ FindMappingFragment(this: Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionEntityTypeMappingFragment | undefined>;
205
+ FindMappingFragment(this: Microsoft_EntityFrameworkCore_Metadata.IEntityType, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IEntityTypeMappingFragment | undefined>;
206
+ FindMappingFragment(this: Microsoft_EntityFrameworkCore_Metadata.IMutableEntityType, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableEntityTypeMappingFragment | undefined>;
207
+ FindMappingFragment(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityTypeMappingFragment | undefined>;
208
+ FindMappingFragment(this: Microsoft_EntityFrameworkCore_Metadata.ITypeBase, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IEntityTypeMappingFragment | undefined>;
209
+ FindMappingFragment(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyTypeBase, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityTypeMappingFragment | undefined>;
210
+ FindOverrides(this: Microsoft_EntityFrameworkCore_Metadata.IConventionProperty, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionRelationalPropertyOverrides | undefined>;
211
+ FindOverrides(this: Microsoft_EntityFrameworkCore_Metadata.IMutableProperty, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableRelationalPropertyOverrides | undefined>;
212
+ FindOverrides(this: Microsoft_EntityFrameworkCore_Metadata.IProperty, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IRelationalPropertyOverrides | undefined>;
213
+ FindOverrides(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlyRelationalPropertyOverrides | undefined>;
214
+ FindRelationalTypeMapping(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyElementType): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping | undefined>;
215
+ FindRelationalTypeMapping(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping | undefined>;
216
+ FindRelationalTypeMapping(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping | undefined>;
217
+ FindRowInternalForeignKeys(this: Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IConventionForeignKey>>;
218
+ FindRowInternalForeignKeys(this: Microsoft_EntityFrameworkCore_Metadata.IEntityType, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IForeignKey>>;
219
+ FindRowInternalForeignKeys(this: Microsoft_EntityFrameworkCore_Metadata.IMutableEntityType, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IMutableForeignKey>>;
220
+ FindRowInternalForeignKeys(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyForeignKey>>;
221
+ FindSequence(this: Microsoft_EntityFrameworkCore_Metadata.IConventionModel, name: string, schema?: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionSequence | undefined>;
222
+ FindSequence(this: Microsoft_EntityFrameworkCore_Metadata.IModel, name: string, schema?: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.ISequence | undefined>;
223
+ FindSequence(this: Microsoft_EntityFrameworkCore_Metadata.IMutableModel, name: string, schema?: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableSequence | undefined>;
224
+ FindSequence(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyModel, name: string, schema?: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlySequence | undefined>;
225
+ FindSharedObjectRootForeignKey(this: Microsoft_EntityFrameworkCore_Metadata.IConventionForeignKey, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionForeignKey | undefined>;
226
+ FindSharedObjectRootForeignKey(this: Microsoft_EntityFrameworkCore_Metadata.IForeignKey, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IForeignKey | undefined>;
227
+ FindSharedObjectRootForeignKey(this: Microsoft_EntityFrameworkCore_Metadata.IMutableForeignKey, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableForeignKey | undefined>;
228
+ FindSharedObjectRootForeignKey(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyForeignKey, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlyForeignKey | undefined>;
229
+ FindSharedObjectRootIndex(this: Microsoft_EntityFrameworkCore_Metadata.IConventionIndex, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionIndex | undefined>;
230
+ FindSharedObjectRootIndex(this: Microsoft_EntityFrameworkCore_Metadata.IIndex, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IIndex | undefined>;
231
+ FindSharedObjectRootIndex(this: Microsoft_EntityFrameworkCore_Metadata.IMutableIndex, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableIndex | undefined>;
232
+ FindSharedObjectRootIndex(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyIndex, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlyIndex | undefined>;
233
+ FindSharedObjectRootKey(this: Microsoft_EntityFrameworkCore_Metadata.IConventionKey, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionKey | undefined>;
234
+ FindSharedObjectRootKey(this: Microsoft_EntityFrameworkCore_Metadata.IKey, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IKey | undefined>;
235
+ FindSharedObjectRootKey(this: Microsoft_EntityFrameworkCore_Metadata.IMutableKey, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableKey | undefined>;
236
+ FindSharedObjectRootKey(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyKey, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlyKey | undefined>;
237
+ FindSharedStoreObjectRootProperty(this: Microsoft_EntityFrameworkCore_Metadata.IConventionProperty, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionProperty | undefined>;
238
+ FindSharedStoreObjectRootProperty(this: Microsoft_EntityFrameworkCore_Metadata.IMutableProperty, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableProperty | undefined>;
239
+ FindSharedStoreObjectRootProperty(this: Microsoft_EntityFrameworkCore_Metadata.IProperty, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IProperty | undefined>;
240
+ FindSharedStoreObjectRootProperty(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty | undefined>;
241
+ FirstAsync<TSource>(this: System_Linq.IQueryable_1<TSource>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<TSource>>;
242
+ FirstAsync<TSource>(this: System_Linq.IQueryable_1<TSource>, predicate: System_Linq_Expressions.Expression_1<System.Func_2<TSource, System_Internal.Boolean>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<TSource>>;
243
+ FirstOrDefaultAsync<TSource>(this: System_Linq.IQueryable_1<TSource>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<TSource | undefined>>;
244
+ FirstOrDefaultAsync<TSource>(this: System_Linq.IQueryable_1<TSource>, predicate: System_Linq_Expressions.Expression_1<System.Func_2<TSource, System_Internal.Boolean>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<TSource | undefined>>;
245
+ ForEachAsync<T>(this: System_Linq.IQueryable_1<T>, action: System.Action_1<T>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
246
+ Format(this: System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyPropertyBase>, includeTypes?: boolean): Rewrap<this, string>;
247
+ FromSql<TEntity>(this: Microsoft_EntityFrameworkCore.DbSet_1<TEntity>, sql: System.FormattableString): Rewrap<this, System_Linq.IQueryable_1<TEntity>>;
248
+ FromSqlInterpolated<TEntity>(this: Microsoft_EntityFrameworkCore.DbSet_1<TEntity>, sql: System.FormattableString): Rewrap<this, System_Linq.IQueryable_1<TEntity>>;
249
+ FromSqlRaw<TEntity>(this: Microsoft_EntityFrameworkCore.DbSet_1<TEntity>, sql: string, ...parameters: unknown[]): Rewrap<this, System_Linq.IQueryable_1<TEntity>>;
250
+ GenerateCreateScript(this: Microsoft_EntityFrameworkCore_Infrastructure.DatabaseFacade): Rewrap<this, string>;
251
+ GetAppliedMigrations(this: Microsoft_EntityFrameworkCore_Infrastructure.DatabaseFacade): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Internal.String>>;
252
+ GetAppliedMigrationsAsync(this: Microsoft_EntityFrameworkCore_Infrastructure.DatabaseFacade, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Collections_Generic.IEnumerable_1<System_Internal.String>>>;
253
+ GetCheckConstraints(this: Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IConventionCheckConstraint>>;
254
+ GetCheckConstraints(this: Microsoft_EntityFrameworkCore_Metadata.IEntityType): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.ICheckConstraint>>;
255
+ GetCheckConstraints(this: Microsoft_EntityFrameworkCore_Metadata.IMutableEntityType): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IMutableCheckConstraint>>;
256
+ GetCheckConstraints(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyCheckConstraint>>;
257
+ GetCollation(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyModel): Rewrap<this, string | undefined>;
258
+ GetCollation(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty): Rewrap<this, string | undefined>;
259
+ GetCollation(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
260
+ GetCollationConfigurationSource(this: Microsoft_EntityFrameworkCore_Metadata.IConventionModel): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
261
+ GetCollationConfigurationSource(this: Microsoft_EntityFrameworkCore_Metadata.IConventionProperty): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
262
+ GetColumnBaseName(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty): Rewrap<this, string>;
263
+ GetColumnName(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty): Rewrap<this, string>;
264
+ GetColumnName(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
265
+ GetColumnNameConfigurationSource(this: Microsoft_EntityFrameworkCore_Metadata.IConventionProperty): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
266
+ GetColumnNameConfigurationSource(this: Microsoft_EntityFrameworkCore_Metadata.IConventionProperty, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
267
+ GetColumnOrder(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
268
+ GetColumnOrder(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
269
+ GetColumnOrderConfigurationSource(this: Microsoft_EntityFrameworkCore_Metadata.IConventionProperty): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
270
+ GetColumnType(this: Microsoft_EntityFrameworkCore_Metadata.IProperty): Rewrap<this, string>;
271
+ GetColumnType(this: Microsoft_EntityFrameworkCore_Metadata.IProperty, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string>;
272
+ GetColumnType(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty): Rewrap<this, string | undefined>;
273
+ GetColumnType(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
274
+ GetColumnTypeConfigurationSource(this: Microsoft_EntityFrameworkCore_Metadata.IConventionProperty): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
275
+ GetCommandTimeout(this: Microsoft_EntityFrameworkCore_Infrastructure.DatabaseFacade): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
276
+ GetComment(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType): Rewrap<this, string | undefined>;
277
+ GetComment(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty): Rewrap<this, string | undefined>;
278
+ GetComment(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
279
+ GetCommentConfigurationSource(this: Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
280
+ GetCommentConfigurationSource(this: Microsoft_EntityFrameworkCore_Metadata.IConventionProperty): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
281
+ GetComputedColumnSql(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty): Rewrap<this, string | undefined>;
282
+ GetComputedColumnSql(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
283
+ GetComputedColumnSqlConfigurationSource(this: Microsoft_EntityFrameworkCore_Metadata.IConventionProperty): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
284
+ GetConnectionString(this: Microsoft_EntityFrameworkCore_Infrastructure.DatabaseFacade): Rewrap<this, string | undefined>;
285
+ GetConstraintName(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyForeignKey): Rewrap<this, string | undefined>;
286
+ GetConstraintName(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyForeignKey, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, principalStoreObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
287
+ GetConstraintNameConfigurationSource(this: Microsoft_EntityFrameworkCore_Metadata.IConventionForeignKey): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
288
+ GetContainerColumnName(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyTypeBase): Rewrap<this, string | undefined>;
289
+ GetContainerColumnNameConfigurationSource(this: Microsoft_EntityFrameworkCore_Metadata.IConventionTypeBase): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
290
+ GetContainerColumnType(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyTypeBase): Rewrap<this, string | undefined>;
291
+ GetContainerColumnTypeConfigurationSource(this: Microsoft_EntityFrameworkCore_Metadata.IConventionTypeBase): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
292
+ GetContainerColumnTypeMapping(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping | undefined>;
293
+ GetContainerColumnTypeMappingConfigurationSource(this: Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
294
+ GetDatabaseName(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyIndex): Rewrap<this, string | undefined>;
295
+ GetDatabaseName(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyIndex, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
296
+ GetDatabaseName(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyTrigger): Rewrap<this, string | undefined>;
297
+ GetDatabaseName(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyTrigger, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
298
+ GetDatabaseNameConfigurationSource(this: Microsoft_EntityFrameworkCore_Metadata.IConventionIndex): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
299
+ GetDatabaseNameConfigurationSource(this: Microsoft_EntityFrameworkCore_Metadata.IConventionTrigger): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
300
+ GetDbConnection(this: Microsoft_EntityFrameworkCore_Infrastructure.DatabaseFacade): Rewrap<this, System_Data_Common.DbConnection>;
301
+ GetDbFunctions(this: Microsoft_EntityFrameworkCore_Metadata.IConventionModel): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IConventionDbFunction>>;
302
+ GetDbFunctions(this: Microsoft_EntityFrameworkCore_Metadata.IModel): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IDbFunction>>;
303
+ GetDbFunctions(this: Microsoft_EntityFrameworkCore_Metadata.IMutableModel): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IMutableDbFunction>>;
304
+ GetDbFunctions(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyModel): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyDbFunction>>;
305
+ GetDeclaredCheckConstraints(this: Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IConventionCheckConstraint>>;
306
+ GetDeclaredCheckConstraints(this: Microsoft_EntityFrameworkCore_Metadata.IEntityType): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.ICheckConstraint>>;
307
+ GetDeclaredCheckConstraints(this: Microsoft_EntityFrameworkCore_Metadata.IMutableEntityType): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IMutableCheckConstraint>>;
308
+ GetDeclaredCheckConstraints(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyCheckConstraint>>;
309
+ GetDefaultColumnBaseName(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty): Rewrap<this, string>;
310
+ GetDefaultColumnMappings(this: Microsoft_EntityFrameworkCore_Metadata.IProperty): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IColumnMappingBase>>;
311
+ GetDefaultColumnName(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty): Rewrap<this, string>;
312
+ GetDefaultColumnName(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
313
+ GetDefaultConstraintName(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty): Rewrap<this, string | undefined>;
314
+ GetDefaultConstraintName(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
315
+ GetDefaultConstraintNameConfigurationSource(this: Microsoft_EntityFrameworkCore_Metadata.IConventionProperty): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
316
+ GetDefaultDatabaseName(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyIndex): Rewrap<this, string | undefined>;
317
+ GetDefaultDatabaseName(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyIndex, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
318
+ GetDefaultDatabaseName(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyTrigger): Rewrap<this, string | undefined>;
319
+ GetDefaultDatabaseName(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyTrigger, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
320
+ GetDefaultDefaultConstraintName(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string>;
321
+ GetDefaultMappings(this: Microsoft_EntityFrameworkCore_Metadata.ITypeBase): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.ITableMappingBase>>;
322
+ GetDefaultName(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyForeignKey): Rewrap<this, string | undefined>;
323
+ GetDefaultName(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyForeignKey, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, principalStoreObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
324
+ GetDefaultName(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyKey): Rewrap<this, string | undefined>;
325
+ GetDefaultName(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyKey, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
326
+ GetDefaultSchema(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType): Rewrap<this, string | undefined>;
327
+ GetDefaultSchema(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyModel): Rewrap<this, string | undefined>;
328
+ GetDefaultSchemaConfigurationSource(this: Microsoft_EntityFrameworkCore_Metadata.IConventionModel): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
329
+ GetDefaultSqlQueryName(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType): Rewrap<this, string>;
330
+ GetDefaultTableName(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType, truncate?: boolean): Rewrap<this, string | undefined>;
331
+ GetDefaultValue(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty): Rewrap<this, unknown | undefined>;
332
+ GetDefaultValue(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, unknown | undefined>;
333
+ GetDefaultValueConfigurationSource(this: Microsoft_EntityFrameworkCore_Metadata.IConventionProperty): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
334
+ GetDefaultValueSql(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty): Rewrap<this, string | undefined>;
335
+ GetDefaultValueSql(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
336
+ GetDefaultValueSqlConfigurationSource(this: Microsoft_EntityFrameworkCore_Metadata.IConventionProperty): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
337
+ GetDefaultViewName(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType): Rewrap<this, string | undefined>;
338
+ GetDefaultViewSchema(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType): Rewrap<this, string | undefined>;
339
+ GetDeleteStoredProcedure(this: Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionStoredProcedure | undefined>;
340
+ GetDeleteStoredProcedure(this: Microsoft_EntityFrameworkCore_Metadata.IEntityType): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IStoredProcedure | undefined>;
341
+ GetDeleteStoredProcedure(this: Microsoft_EntityFrameworkCore_Metadata.IMutableEntityType): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableStoredProcedure | undefined>;
342
+ GetDeleteStoredProcedure(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlyStoredProcedure | undefined>;
343
+ GetDeleteStoredProcedure(this: Microsoft_EntityFrameworkCore_Metadata.ITypeBase): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IStoredProcedure | undefined>;
344
+ GetDeleteStoredProcedure(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyTypeBase): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlyStoredProcedure | undefined>;
345
+ GetDeleteStoredProcedureConfigurationSource(this: Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
346
+ GetDeleteStoredProcedureMappings(this: Microsoft_EntityFrameworkCore_Metadata.ITypeBase): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IStoredProcedureMapping>>;
347
+ GetDeleteStoredProcedureParameterMappings(this: Microsoft_EntityFrameworkCore_Metadata.IProperty): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IStoredProcedureParameterMapping>>;
348
+ GetFilter(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyIndex): Rewrap<this, string | undefined>;
349
+ GetFilter(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyIndex, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
350
+ GetFilterConfigurationSource(this: Microsoft_EntityFrameworkCore_Metadata.IConventionIndex): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
351
+ GetFunctionColumnMappings(this: Microsoft_EntityFrameworkCore_Metadata.IProperty): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IFunctionColumnMapping>>;
352
+ GetFunctionMappings(this: Microsoft_EntityFrameworkCore_Metadata.ITypeBase): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IFunctionMapping>>;
353
+ GetFunctionName(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType): Rewrap<this, string | undefined>;
354
+ GetFunctionName(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyTypeBase): Rewrap<this, string | undefined>;
355
+ GetFunctionNameConfigurationSource(this: Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
356
+ GetInsertStoredProcedure(this: Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionStoredProcedure | undefined>;
357
+ GetInsertStoredProcedure(this: Microsoft_EntityFrameworkCore_Metadata.IEntityType): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IStoredProcedure | undefined>;
358
+ GetInsertStoredProcedure(this: Microsoft_EntityFrameworkCore_Metadata.IMutableEntityType): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableStoredProcedure | undefined>;
359
+ GetInsertStoredProcedure(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlyStoredProcedure | undefined>;
360
+ GetInsertStoredProcedure(this: Microsoft_EntityFrameworkCore_Metadata.ITypeBase): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IStoredProcedure | undefined>;
361
+ GetInsertStoredProcedure(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyTypeBase): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlyStoredProcedure | undefined>;
362
+ GetInsertStoredProcedureConfigurationSource(this: Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
363
+ GetInsertStoredProcedureMappings(this: Microsoft_EntityFrameworkCore_Metadata.ITypeBase): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IStoredProcedureMapping>>;
364
+ GetInsertStoredProcedureParameterMappings(this: Microsoft_EntityFrameworkCore_Metadata.IProperty): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IStoredProcedureParameterMapping>>;
365
+ GetInsertStoredProcedureResultColumnMappings(this: Microsoft_EntityFrameworkCore_Metadata.IProperty): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IStoredProcedureResultColumnMapping>>;
366
+ GetIsFixedLengthConfigurationSource(this: Microsoft_EntityFrameworkCore_Metadata.IConventionElementType): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
367
+ GetIsFixedLengthConfigurationSource(this: Microsoft_EntityFrameworkCore_Metadata.IConventionProperty): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
368
+ GetIsStored(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
369
+ GetIsStored(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
370
+ GetIsStoredConfigurationSource(this: Microsoft_EntityFrameworkCore_Metadata.IConventionProperty): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
371
+ GetIsTableExcludedFromMigrationsConfigurationSource(this: Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
372
+ GetIsTableExcludedFromMigrationsConfigurationSource(this: Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
373
+ GetJsonPropertyName(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyComplexProperty): Rewrap<this, string | undefined>;
374
+ GetJsonPropertyName(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType): Rewrap<this, string | undefined>;
375
+ GetJsonPropertyName(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty): Rewrap<this, string | undefined>;
376
+ GetJsonPropertyName(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyTypeBase): Rewrap<this, string | undefined>;
377
+ GetJsonPropertyNameConfigurationSource(this: Microsoft_EntityFrameworkCore_Metadata.IConventionComplexProperty): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
378
+ GetJsonPropertyNameConfigurationSource(this: Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
379
+ GetJsonPropertyNameConfigurationSource(this: Microsoft_EntityFrameworkCore_Metadata.IConventionProperty): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
380
+ GetMappedConstraints(this: Microsoft_EntityFrameworkCore_Metadata.IForeignKey): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IForeignKeyConstraint>>;
381
+ GetMappedConstraints(this: Microsoft_EntityFrameworkCore_Metadata.IKey): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IUniqueConstraint>>;
382
+ GetMappedStoreObjects(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty, storeObjectType: Microsoft_EntityFrameworkCore_Metadata.StoreObjectType): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier>>;
383
+ GetMappedTableIndexes(this: Microsoft_EntityFrameworkCore_Metadata.IIndex): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.ITableIndex>>;
384
+ GetMappingFragments(this: Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IConventionEntityTypeMappingFragment>>;
385
+ GetMappingFragments(this: Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType, storeObjectType: Microsoft_EntityFrameworkCore_Metadata.StoreObjectType): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IConventionEntityTypeMappingFragment>>;
386
+ GetMappingFragments(this: Microsoft_EntityFrameworkCore_Metadata.IEntityType): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IEntityTypeMappingFragment>>;
387
+ GetMappingFragments(this: Microsoft_EntityFrameworkCore_Metadata.IEntityType, storeObjectType: Microsoft_EntityFrameworkCore_Metadata.StoreObjectType): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IEntityTypeMappingFragment>>;
388
+ GetMappingFragments(this: Microsoft_EntityFrameworkCore_Metadata.IMutableEntityType): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IMutableEntityTypeMappingFragment>>;
389
+ GetMappingFragments(this: Microsoft_EntityFrameworkCore_Metadata.IMutableEntityType, storeObjectType: Microsoft_EntityFrameworkCore_Metadata.StoreObjectType): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IMutableEntityTypeMappingFragment>>;
390
+ GetMappingFragments(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityTypeMappingFragment>>;
391
+ GetMappingFragments(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType, storeObjectType: Microsoft_EntityFrameworkCore_Metadata.StoreObjectType): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityTypeMappingFragment>>;
392
+ GetMappingFragments(this: Microsoft_EntityFrameworkCore_Metadata.ITypeBase): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IEntityTypeMappingFragment>>;
393
+ GetMappingFragments(this: Microsoft_EntityFrameworkCore_Metadata.ITypeBase, storeObjectType: Microsoft_EntityFrameworkCore_Metadata.StoreObjectType): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IEntityTypeMappingFragment>>;
394
+ GetMappingFragments(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyTypeBase): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityTypeMappingFragment>>;
395
+ GetMappingFragments(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyTypeBase, storeObjectType: Microsoft_EntityFrameworkCore_Metadata.StoreObjectType): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityTypeMappingFragment>>;
396
+ GetMappingStrategy(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType): Rewrap<this, string | undefined>;
397
+ GetMappingStrategy(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyTypeBase): Rewrap<this, string | undefined>;
398
+ GetMappingStrategyConfigurationSource(this: Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
399
+ GetMaxIdentifierLength(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyModel): Rewrap<this, int>;
400
+ GetMaxIdentifierLengthConfigurationSource(this: Microsoft_EntityFrameworkCore_Metadata.IConventionModel): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
401
+ GetMaxLength(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
402
+ GetMigrations(this: Microsoft_EntityFrameworkCore_Infrastructure.DatabaseFacade): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Internal.String>>;
403
+ GetName(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyKey): Rewrap<this, string | undefined>;
404
+ GetName(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyKey, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
405
+ GetNameConfigurationSource(this: Microsoft_EntityFrameworkCore_Metadata.IConventionKey): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
406
+ GetOrCreateMappingFragment(this: Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionEntityTypeMappingFragment>;
407
+ GetOrCreateMappingFragment(this: Microsoft_EntityFrameworkCore_Metadata.IMutableEntityType, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableEntityTypeMappingFragment>;
408
+ GetOrCreateOverrides(this: Microsoft_EntityFrameworkCore_Metadata.IConventionProperty, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionRelationalPropertyOverrides>;
409
+ GetOrCreateOverrides(this: Microsoft_EntityFrameworkCore_Metadata.IMutableProperty, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableRelationalPropertyOverrides>;
410
+ GetOverrides(this: Microsoft_EntityFrameworkCore_Metadata.IConventionProperty): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IConventionRelationalPropertyOverrides>>;
411
+ GetOverrides(this: Microsoft_EntityFrameworkCore_Metadata.IMutableProperty): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IMutableRelationalPropertyOverrides>>;
412
+ GetOverrides(this: Microsoft_EntityFrameworkCore_Metadata.IProperty): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IRelationalPropertyOverrides>>;
413
+ GetOverrides(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyRelationalPropertyOverrides>>;
414
+ GetPendingMigrations(this: Microsoft_EntityFrameworkCore_Infrastructure.DatabaseFacade): Rewrap<this, System_Collections_Generic.IEnumerable_1<System_Internal.String>>;
415
+ GetPendingMigrationsAsync(this: Microsoft_EntityFrameworkCore_Infrastructure.DatabaseFacade, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Collections_Generic.IEnumerable_1<System_Internal.String>>>;
416
+ GetPrecision(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
417
+ GetReaderFieldValue(this: Microsoft_EntityFrameworkCore_Metadata.IProperty, relationalReader: Microsoft_EntityFrameworkCore_Storage.RelationalDataReader, ordinal: int, detailedErrorsEnabled: boolean): Rewrap<this, unknown | undefined>;
418
+ GetRelationalModel(this: Microsoft_EntityFrameworkCore_Metadata.IModel): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IRelationalModel>;
419
+ GetRelationalTypeMapping(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyElementType): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping>;
420
+ GetRelationalTypeMapping(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping>;
421
+ GetScale(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
422
+ GetSchema(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType): Rewrap<this, string | undefined>;
423
+ GetSchema(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyTypeBase): Rewrap<this, string | undefined>;
424
+ GetSchemaConfigurationSource(this: Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
425
+ GetSchemaQualifiedTableName(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType): Rewrap<this, string | undefined>;
426
+ GetSchemaQualifiedViewName(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType): Rewrap<this, string | undefined>;
427
+ GetSequences(this: Microsoft_EntityFrameworkCore_Metadata.IConventionModel): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IConventionSequence>>;
428
+ GetSequences(this: Microsoft_EntityFrameworkCore_Metadata.IModel): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.ISequence>>;
429
+ GetSequences(this: Microsoft_EntityFrameworkCore_Metadata.IMutableModel): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IMutableSequence>>;
430
+ GetSequences(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyModel): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlySequence>>;
431
+ GetSqlQuery(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType): Rewrap<this, string | undefined>;
432
+ GetSqlQuery(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyTypeBase): Rewrap<this, string | undefined>;
433
+ GetSqlQueryColumnMappings(this: Microsoft_EntityFrameworkCore_Metadata.IProperty): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.ISqlQueryColumnMapping>>;
434
+ GetSqlQueryConfigurationSource(this: Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
435
+ GetSqlQueryMappings(this: Microsoft_EntityFrameworkCore_Metadata.ITypeBase): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.ISqlQueryMapping>>;
436
+ GetStoreType(this: Microsoft_EntityFrameworkCore_Metadata.IElementType): Rewrap<this, string>;
437
+ GetStoreType(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyElementType): Rewrap<this, string | undefined>;
438
+ GetStoreTypeConfigurationSource(this: Microsoft_EntityFrameworkCore_Metadata.IConventionElementType): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
439
+ GetTableColumnMappings(this: Microsoft_EntityFrameworkCore_Metadata.IProperty): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IColumnMapping>>;
440
+ GetTableMappings(this: Microsoft_EntityFrameworkCore_Metadata.ITypeBase): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.ITableMapping>>;
441
+ GetTableName(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType): Rewrap<this, string | undefined>;
442
+ GetTableName(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyTrigger): Rewrap<this, string>;
443
+ GetTableName(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyTypeBase): Rewrap<this, string | undefined>;
444
+ GetTableNameConfigurationSource(this: Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
445
+ GetTableNameConfigurationSource(this: Microsoft_EntityFrameworkCore_Metadata.IConventionTrigger): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
446
+ GetTableSchema(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyTrigger): Rewrap<this, string | undefined>;
447
+ GetTableSchemaConfigurationSource(this: Microsoft_EntityFrameworkCore_Metadata.IConventionTrigger): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
448
+ GetUpdateStoredProcedure(this: Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionStoredProcedure | undefined>;
449
+ GetUpdateStoredProcedure(this: Microsoft_EntityFrameworkCore_Metadata.IEntityType): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IStoredProcedure | undefined>;
450
+ GetUpdateStoredProcedure(this: Microsoft_EntityFrameworkCore_Metadata.IMutableEntityType): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableStoredProcedure | undefined>;
451
+ GetUpdateStoredProcedure(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlyStoredProcedure | undefined>;
452
+ GetUpdateStoredProcedure(this: Microsoft_EntityFrameworkCore_Metadata.ITypeBase): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IStoredProcedure | undefined>;
453
+ GetUpdateStoredProcedure(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyTypeBase): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlyStoredProcedure | undefined>;
454
+ GetUpdateStoredProcedureConfigurationSource(this: Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
455
+ GetUpdateStoredProcedureMappings(this: Microsoft_EntityFrameworkCore_Metadata.ITypeBase): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IStoredProcedureMapping>>;
456
+ GetUpdateStoredProcedureParameterMappings(this: Microsoft_EntityFrameworkCore_Metadata.IProperty): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IStoredProcedureParameterMapping>>;
457
+ GetUpdateStoredProcedureResultColumnMappings(this: Microsoft_EntityFrameworkCore_Metadata.IProperty): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IStoredProcedureResultColumnMapping>>;
458
+ GetViewColumnMappings(this: Microsoft_EntityFrameworkCore_Metadata.IProperty): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IViewColumnMapping>>;
459
+ GetViewMappings(this: Microsoft_EntityFrameworkCore_Metadata.ITypeBase): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IViewMapping>>;
460
+ GetViewName(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType): Rewrap<this, string | undefined>;
461
+ GetViewName(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyTypeBase): Rewrap<this, string | undefined>;
462
+ GetViewNameConfigurationSource(this: Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
463
+ GetViewSchema(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType): Rewrap<this, string | undefined>;
464
+ GetViewSchema(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyTypeBase): Rewrap<this, string | undefined>;
465
+ GetViewSchemaConfigurationSource(this: Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
466
+ Greatest<T>(this: Microsoft_EntityFrameworkCore.DbFunctions, ...values: T[]): Rewrap<this, T>;
467
+ HasCheckConstraint<TEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>, name: string, sql: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
468
+ HasCheckConstraint<TEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>, name: string, sql: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.CheckConstraintBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
469
+ HasCheckConstraint(this: Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder, name: string, sql: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
470
+ HasCheckConstraint(this: Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder, name: string, sql: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.CheckConstraintBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
471
+ HasCheckConstraint(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder, name: string, sql: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionCheckConstraintBuilder | undefined>;
472
+ HasCheckConstraint<TOwnerEntity, TDependentEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, name: string, sql: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
473
+ HasCheckConstraint<TOwnerEntity, TDependentEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, name: string, sql: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.CheckConstraintBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
474
+ HasCheckConstraint(this: Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder, name: string, sql: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
475
+ HasCheckConstraint(this: Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder, name: string, sql: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.CheckConstraintBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
476
+ HasColumnName<TProperty>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<TProperty>, name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<TProperty>>;
477
+ HasColumnName(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder, name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder>;
478
+ HasColumnName<TProperty>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>, name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>>;
479
+ HasColumnName(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder, name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder>;
480
+ HasColumnName(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder, name: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder | undefined>;
481
+ HasColumnName(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder, name: string, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder | undefined>;
482
+ HasColumnName<TProperty>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<TProperty>, name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<TProperty>>;
483
+ HasColumnName(this: Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder, name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder>;
484
+ HasColumnName<TProperty>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>, name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>>;
485
+ HasColumnName(this: Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder, name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
486
+ HasColumnOrder<TProperty>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<TProperty>, order: System.Nullable_1<System_Internal.Int32>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<TProperty>>;
487
+ HasColumnOrder(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder, order: System.Nullable_1<System_Internal.Int32>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder>;
488
+ HasColumnOrder<TProperty>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>, order: System.Nullable_1<System_Internal.Int32>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>>;
489
+ HasColumnOrder(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder, order: System.Nullable_1<System_Internal.Int32>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder>;
490
+ HasColumnOrder(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder, order: System.Nullable_1<System_Internal.Int32>, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder | undefined>;
491
+ HasColumnOrder<TProperty>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<TProperty>, order: System.Nullable_1<System_Internal.Int32>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<TProperty>>;
492
+ HasColumnOrder(this: Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder, order: System.Nullable_1<System_Internal.Int32>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder>;
493
+ HasColumnOrder<TProperty>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>, order: System.Nullable_1<System_Internal.Int32>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>>;
494
+ HasColumnOrder(this: Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder, order: System.Nullable_1<System_Internal.Int32>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
495
+ HasColumnType<TComplex>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionBuilder_1<TComplex>, columnType: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionBuilder_1<TComplex>>;
496
+ HasColumnType(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionBuilder, columnType: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionBuilder>;
497
+ HasColumnType<TComplex>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexPropertyBuilder_1<TComplex>, columnType: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexPropertyBuilder_1<TComplex>>;
498
+ HasColumnType(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexPropertyBuilder, columnType: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexPropertyBuilder>;
499
+ HasColumnType<TProperty>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<TProperty>, typeName: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<TProperty>>;
500
+ HasColumnType(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder, typeName: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder>;
501
+ HasColumnType<TProperty>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>, typeName: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>>;
502
+ HasColumnType(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder, typeName: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder>;
503
+ HasColumnType(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder, typeName: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder | undefined>;
504
+ HasColumnType<TOwnerEntity, TDependentEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, columnType: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
505
+ HasColumnType(this: Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder, columnType: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
506
+ HasColumnType<TProperty>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<TProperty>, typeName: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<TProperty>>;
507
+ HasColumnType(this: Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder, typeName: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder>;
508
+ HasColumnType<TProperty>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>, typeName: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>>;
509
+ HasColumnType(this: Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder, typeName: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
510
+ HasColumnType<TScalar>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.TypeMappingConfigurationBuilder_1<TScalar>, typeName: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.TypeMappingConfigurationBuilder_1<TScalar>>;
511
+ HasColumnType(this: Microsoft_EntityFrameworkCore_Metadata_Builders.TypeMappingConfigurationBuilder, typeName: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.TypeMappingConfigurationBuilder>;
512
+ HasComment<TProperty>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<TProperty>, comment: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<TProperty>>;
513
+ HasComment(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder, comment: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder>;
514
+ HasComment<TProperty>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>, comment: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>>;
515
+ HasComment(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder, comment: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder>;
516
+ HasComment<TEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>, comment: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
517
+ HasComment(this: Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder, comment: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
518
+ HasComment(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder, comment: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder | undefined>;
519
+ HasComment(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder, comment: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder | undefined>;
520
+ HasComment<TProperty>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<TProperty>, comment: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<TProperty>>;
521
+ HasComment(this: Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder, comment: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder>;
522
+ HasComment<TProperty>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>, comment: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>>;
523
+ HasComment(this: Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder, comment: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
524
+ HasComputedColumnSql<TProperty>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<TProperty>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<TProperty>>;
525
+ HasComputedColumnSql<TProperty>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<TProperty>, sql: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<TProperty>>;
526
+ HasComputedColumnSql<TProperty>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<TProperty>, sql: string, stored: System.Nullable_1<System_Internal.Boolean>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<TProperty>>;
527
+ HasComputedColumnSql(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder>;
528
+ HasComputedColumnSql(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder, sql: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder>;
529
+ HasComputedColumnSql(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder, sql: string, stored: System.Nullable_1<System_Internal.Boolean>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder>;
530
+ HasComputedColumnSql<TProperty>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>>;
531
+ HasComputedColumnSql<TProperty>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>, sql: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>>;
532
+ HasComputedColumnSql<TProperty>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>, sql: string, stored: System.Nullable_1<System_Internal.Boolean>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>>;
533
+ HasComputedColumnSql(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder>;
534
+ HasComputedColumnSql(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder, sql: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder>;
535
+ HasComputedColumnSql(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder, sql: string, stored: System.Nullable_1<System_Internal.Boolean>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder>;
536
+ HasComputedColumnSql(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder, sql: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder | undefined>;
537
+ HasComputedColumnSql<TProperty>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<TProperty>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<TProperty>>;
538
+ HasComputedColumnSql<TProperty>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<TProperty>, sql: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<TProperty>>;
539
+ HasComputedColumnSql<TProperty>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<TProperty>, sql: string, stored: System.Nullable_1<System_Internal.Boolean>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<TProperty>>;
540
+ HasComputedColumnSql(this: Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder>;
541
+ HasComputedColumnSql(this: Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder, sql: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder>;
542
+ HasComputedColumnSql(this: Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder, sql: string, stored: System.Nullable_1<System_Internal.Boolean>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder>;
543
+ HasComputedColumnSql<TProperty>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>>;
544
+ HasComputedColumnSql<TProperty>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>, sql: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>>;
545
+ HasComputedColumnSql<TProperty>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>, sql: string, stored: System.Nullable_1<System_Internal.Boolean>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>>;
546
+ HasComputedColumnSql(this: Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
547
+ HasComputedColumnSql(this: Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder, sql: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
548
+ HasComputedColumnSql(this: Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder, sql: string, stored: System.Nullable_1<System_Internal.Boolean>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
549
+ HasConstraintName(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionForeignKeyBuilder, name: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionForeignKeyBuilder | undefined>;
550
+ HasConstraintName<TEntity, TDependentEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.OwnershipBuilder_2<TEntity, TDependentEntity>, name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnershipBuilder_2<TEntity, TDependentEntity>>;
551
+ HasConstraintName(this: Microsoft_EntityFrameworkCore_Metadata_Builders.OwnershipBuilder, name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnershipBuilder>;
552
+ HasConstraintName<TEntity, TRelatedEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ReferenceCollectionBuilder_2<TEntity, TRelatedEntity>, name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ReferenceCollectionBuilder_2<TEntity, TRelatedEntity>>;
553
+ HasConstraintName(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ReferenceCollectionBuilder, name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ReferenceCollectionBuilder>;
554
+ HasConstraintName<TEntity, TRelatedEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ReferenceReferenceBuilder_2<TEntity, TRelatedEntity>, name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ReferenceReferenceBuilder_2<TEntity, TRelatedEntity>>;
555
+ HasConstraintName(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ReferenceReferenceBuilder, name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ReferenceReferenceBuilder>;
556
+ HasDatabaseName(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionIndexBuilder, name: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionIndexBuilder | undefined>;
557
+ HasDatabaseName(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionTriggerBuilder, name: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionTriggerBuilder | undefined>;
558
+ HasDatabaseName<TEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder_1<TEntity>, name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder_1<TEntity>>;
559
+ HasDatabaseName(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder, name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder>;
560
+ HasDbFunction(this: Microsoft_EntityFrameworkCore.ModelBuilder, methodInfo: System_Reflection.MethodInfo): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.DbFunctionBuilder>;
561
+ HasDbFunction<TResult>(this: Microsoft_EntityFrameworkCore.ModelBuilder, expression: System_Linq_Expressions.Expression_1<System.Func_1<TResult>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.DbFunctionBuilder>;
562
+ HasDbFunction(this: Microsoft_EntityFrameworkCore.ModelBuilder, methodInfo: System_Reflection.MethodInfo, builderAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.DbFunctionBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore.ModelBuilder>;
563
+ HasDbFunction(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionModelBuilder, methodInfo: System_Reflection.MethodInfo, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionDbFunctionBuilder>;
564
+ HasDbFunction(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionModelBuilder, name: string, returnType: System.Type, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionDbFunctionBuilder>;
565
+ HasDefaultSchema(this: Microsoft_EntityFrameworkCore.ModelBuilder, schema: string): Rewrap<this, Microsoft_EntityFrameworkCore.ModelBuilder>;
566
+ HasDefaultSchema(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionModelBuilder, schema: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionModelBuilder | undefined>;
567
+ HasDefaultValue<TProperty>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<TProperty>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<TProperty>>;
568
+ HasDefaultValue<TProperty>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<TProperty>, value: unknown): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<TProperty>>;
569
+ HasDefaultValue(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder>;
570
+ HasDefaultValue(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder, value: unknown): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder>;
571
+ HasDefaultValue<TProperty>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>>;
572
+ HasDefaultValue<TProperty>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>, value: unknown): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>>;
573
+ HasDefaultValue(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder>;
574
+ HasDefaultValue(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder, value: unknown): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder>;
575
+ HasDefaultValue(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder, value: unknown, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder | undefined>;
576
+ HasDefaultValue<TProperty>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<TProperty>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<TProperty>>;
577
+ HasDefaultValue<TProperty>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<TProperty>, value: unknown): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<TProperty>>;
578
+ HasDefaultValue(this: Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder>;
579
+ HasDefaultValue(this: Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder, value: unknown): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder>;
580
+ HasDefaultValue<TProperty>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>>;
581
+ HasDefaultValue<TProperty>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>, value: unknown): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>>;
582
+ HasDefaultValue(this: Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
583
+ HasDefaultValue(this: Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder, value: unknown): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
584
+ HasDefaultValueSql<TProperty>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<TProperty>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<TProperty>>;
585
+ HasDefaultValueSql<TProperty>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<TProperty>, sql: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<TProperty>>;
586
+ HasDefaultValueSql(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder>;
587
+ HasDefaultValueSql(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder, sql: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder>;
588
+ HasDefaultValueSql<TProperty>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>>;
589
+ HasDefaultValueSql<TProperty>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>, sql: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>>;
590
+ HasDefaultValueSql(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder>;
591
+ HasDefaultValueSql(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder, sql: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder>;
592
+ HasDefaultValueSql(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder, sql: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder | undefined>;
593
+ HasDefaultValueSql<TProperty>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<TProperty>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<TProperty>>;
594
+ HasDefaultValueSql<TProperty>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<TProperty>, sql: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<TProperty>>;
595
+ HasDefaultValueSql(this: Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder>;
596
+ HasDefaultValueSql(this: Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder, sql: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder>;
597
+ HasDefaultValueSql<TProperty>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>>;
598
+ HasDefaultValueSql<TProperty>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>, sql: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>>;
599
+ HasDefaultValueSql(this: Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
600
+ HasDefaultValueSql(this: Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder, sql: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
601
+ HasFilter(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionIndexBuilder, sql: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionIndexBuilder | undefined>;
602
+ HasFilter<TEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder_1<TEntity>, sql: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder_1<TEntity>>;
603
+ HasFilter(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder, sql: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder>;
604
+ HasJsonPropertyName<TComplex>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionBuilder_1<TComplex>, name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionBuilder_1<TComplex>>;
605
+ HasJsonPropertyName(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionBuilder, name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionBuilder>;
606
+ HasJsonPropertyName<TProperty>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionTypePropertyBuilder_1<TProperty>, name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionTypePropertyBuilder_1<TProperty>>;
607
+ HasJsonPropertyName(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionTypePropertyBuilder, name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionTypePropertyBuilder>;
608
+ HasJsonPropertyName<TComplex>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexPropertyBuilder_1<TComplex>, name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexPropertyBuilder_1<TComplex>>;
609
+ HasJsonPropertyName(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexPropertyBuilder, name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexPropertyBuilder>;
610
+ HasJsonPropertyName<TProperty>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<TProperty>, name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<TProperty>>;
611
+ HasJsonPropertyName(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder, name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder>;
612
+ HasJsonPropertyName<TProperty>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>, name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>>;
613
+ HasJsonPropertyName(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder, name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder>;
614
+ HasJsonPropertyName(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder, name: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder | undefined>;
615
+ HasJsonPropertyName(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder, name: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder | undefined>;
616
+ HasJsonPropertyName<TSource, TTarget>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TSource, TTarget>, name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TSource, TTarget>>;
617
+ HasJsonPropertyName(this: Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder, name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
618
+ HasJsonPropertyName<TProperty>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<TProperty>, name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<TProperty>>;
619
+ HasJsonPropertyName(this: Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder, name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder>;
620
+ HasJsonPropertyName<TProperty>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>, name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>>;
621
+ HasJsonPropertyName(this: Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder, name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
622
+ HasMaxIdentifierLength(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionModelBuilder, length: System.Nullable_1<System_Internal.Int32>, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionModelBuilder | undefined>;
623
+ HasName(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionKeyBuilder, name: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionKeyBuilder | undefined>;
624
+ HasName(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder, name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder>;
625
+ HasName<TEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.KeyBuilder_1<TEntity>, name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.KeyBuilder_1<TEntity>>;
626
+ HasName(this: Microsoft_EntityFrameworkCore_Metadata_Builders.KeyBuilder, name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.KeyBuilder>;
627
+ HasPendingModelChanges(this: Microsoft_EntityFrameworkCore_Infrastructure.DatabaseFacade): Rewrap<this, boolean>;
628
+ HasSequence(this: Microsoft_EntityFrameworkCore.ModelBuilder, name: string, schema?: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.SequenceBuilder>;
629
+ HasSequence(this: Microsoft_EntityFrameworkCore.ModelBuilder, name: string, builderAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.SequenceBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore.ModelBuilder>;
630
+ HasSequence(this: Microsoft_EntityFrameworkCore.ModelBuilder, name: string, schema: string, builderAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.SequenceBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore.ModelBuilder>;
631
+ HasSequence(this: Microsoft_EntityFrameworkCore.ModelBuilder, type: System.Type, name: string, schema?: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.SequenceBuilder>;
632
+ HasSequence(this: Microsoft_EntityFrameworkCore.ModelBuilder, type: System.Type, name: string, builderAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.SequenceBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore.ModelBuilder>;
633
+ HasSequence(this: Microsoft_EntityFrameworkCore.ModelBuilder, type: System.Type, name: string, schema: string, builderAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.SequenceBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore.ModelBuilder>;
634
+ HasSequence(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionModelBuilder, name: string, schema?: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionSequenceBuilder>;
635
+ HasStoreType(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ElementTypeBuilder, typeName: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ElementTypeBuilder>;
636
+ HasStoreType(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionElementTypeBuilder, typeName: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionElementTypeBuilder | undefined>;
637
+ HasTableName(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionTriggerBuilder, name: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionTriggerBuilder | undefined>;
638
+ HasTableSchema(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionTriggerBuilder, schema: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionTriggerBuilder | undefined>;
639
+ HaveColumnType<TProperty>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.PropertiesConfigurationBuilder_1<TProperty>, typeName: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertiesConfigurationBuilder_1<TProperty>>;
640
+ HaveColumnType(this: Microsoft_EntityFrameworkCore_Metadata_Builders.PropertiesConfigurationBuilder, typeName: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertiesConfigurationBuilder>;
641
+ IgnoreAutoIncludes<TEntity>(this: System_Linq.IQueryable_1<TEntity>): Rewrap<this, System_Linq.IQueryable_1<TEntity>>;
642
+ IgnoreQueryFilters<TEntity>(this: System_Linq.IQueryable_1<TEntity>): Rewrap<this, System_Linq.IQueryable_1<TEntity>>;
643
+ IgnoreQueryFilters<TEntity>(this: System_Linq.IQueryable_1<TEntity>, filterKeys: System_Collections_Generic.IReadOnlyCollection_1<System_Internal.String>): Rewrap<this, System_Linq.IQueryable_1<TEntity>>;
644
+ Include<TEntity, TProperty>(this: System_Linq.IQueryable_1<TEntity>, navigationPropertyPath: System_Linq_Expressions.Expression_1<System.Func_2<TEntity, TProperty>>): Rewrap<this, Microsoft_EntityFrameworkCore_Query.IIncludableQueryable_2<TEntity, TProperty>>;
645
+ Include<TEntity>(this: System_Linq.IQueryable_1<TEntity>, navigationPropertyPath: string): Rewrap<this, System_Linq.IQueryable_1<TEntity>>;
646
+ InsertUsingStoredProcedure<TEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder_1<TEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
647
+ InsertUsingStoredProcedure<TEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>, name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder_1<TEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
648
+ InsertUsingStoredProcedure<TEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>, name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder_1<TEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
649
+ InsertUsingStoredProcedure(this: Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
650
+ InsertUsingStoredProcedure(this: Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder, name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
651
+ InsertUsingStoredProcedure(this: Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder, name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
652
+ InsertUsingStoredProcedure(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionStoredProcedureBuilder | undefined>;
653
+ InsertUsingStoredProcedure<TOwnerEntity, TDependentEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder_2<TOwnerEntity, TDependentEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
654
+ InsertUsingStoredProcedure<TOwnerEntity, TDependentEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder_2<TOwnerEntity, TDependentEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
655
+ InsertUsingStoredProcedure<TOwnerEntity, TDependentEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder_2<TOwnerEntity, TDependentEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
656
+ InsertUsingStoredProcedure(this: Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
657
+ InsertUsingStoredProcedure(this: Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder, name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
658
+ InsertUsingStoredProcedure(this: Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder, name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
659
+ IsColumnNullable(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty): Rewrap<this, boolean>;
660
+ IsColumnNullable(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, boolean>;
661
+ IsFixedLength(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyElementType): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
662
+ IsFixedLength(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyElementType, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
663
+ IsFixedLength(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
664
+ IsFixedLength(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
665
+ IsFixedLength<TProperty>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<TProperty>, fixedLength?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<TProperty>>;
666
+ IsFixedLength(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder, fixedLength?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder>;
667
+ IsFixedLength<TProperty>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>, fixedLength?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>>;
668
+ IsFixedLength(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder, fixedLength?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder>;
669
+ IsFixedLength(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ElementTypeBuilder, fixedLength?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ElementTypeBuilder>;
670
+ IsFixedLength(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionElementTypeBuilder, fixedLength: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionElementTypeBuilder | undefined>;
671
+ IsFixedLength(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder, fixedLength: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder | undefined>;
672
+ IsFixedLength<TProperty>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<TProperty>, fixedLength?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<TProperty>>;
673
+ IsFixedLength(this: Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder, fixedLength?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder>;
674
+ IsFixedLength<TProperty>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>, fixedLength?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>>;
675
+ IsFixedLength(this: Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder, fixedLength?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
676
+ IsFixedLength<TScalar>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.TypeMappingConfigurationBuilder_1<TScalar>, fixedLength?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.TypeMappingConfigurationBuilder_1<TScalar>>;
677
+ IsFixedLength(this: Microsoft_EntityFrameworkCore_Metadata_Builders.TypeMappingConfigurationBuilder, fixedLength?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.TypeMappingConfigurationBuilder>;
678
+ IsMappedToJson(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType): Rewrap<this, boolean>;
679
+ IsMappedToJson(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyTypeBase): Rewrap<this, boolean>;
680
+ IsRelational(this: Microsoft_EntityFrameworkCore_Infrastructure.DatabaseFacade): Rewrap<this, boolean>;
681
+ IsRowInternal(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyForeignKey, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, boolean>;
682
+ IsStoredComputedColumn(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder, stored: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder | undefined>;
683
+ IsTableExcludedFromMigrations(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType): Rewrap<this, boolean>;
684
+ IsTableExcludedFromMigrations(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, boolean>;
685
+ IsUnicode(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
686
+ LastAsync<TSource>(this: System_Linq.IQueryable_1<TSource>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<TSource>>;
687
+ LastAsync<TSource>(this: System_Linq.IQueryable_1<TSource>, predicate: System_Linq_Expressions.Expression_1<System.Func_2<TSource, System_Internal.Boolean>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<TSource>>;
688
+ LastOrDefaultAsync<TSource>(this: System_Linq.IQueryable_1<TSource>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<TSource | undefined>>;
689
+ LastOrDefaultAsync<TSource>(this: System_Linq.IQueryable_1<TSource>, predicate: System_Linq_Expressions.Expression_1<System.Func_2<TSource, System_Internal.Boolean>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<TSource | undefined>>;
690
+ Least<T>(this: Microsoft_EntityFrameworkCore.DbFunctions, ...values: T[]): Rewrap<this, T>;
691
+ Like(this: Microsoft_EntityFrameworkCore.DbFunctions, matchExpression: string, pattern: string): Rewrap<this, boolean>;
692
+ Like(this: Microsoft_EntityFrameworkCore.DbFunctions, matchExpression: string, pattern: string, escapeCharacter: string): Rewrap<this, boolean>;
693
+ Load<TSource>(this: System_Linq.IQueryable_1<TSource>): Rewrap<this, void>;
694
+ LoadAsync<TSource>(this: System_Linq.IQueryable_1<TSource>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
695
+ LongCountAsync<TSource>(this: System_Linq.IQueryable_1<TSource>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Int64>>;
696
+ LongCountAsync<TSource>(this: System_Linq.IQueryable_1<TSource>, predicate: System_Linq_Expressions.Expression_1<System.Func_2<TSource, System_Internal.Boolean>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Int64>>;
697
+ MaxAsync<TSource>(this: System_Linq.IQueryable_1<TSource>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<TSource>>;
698
+ MaxAsync<TSource, TResult>(this: System_Linq.IQueryable_1<TSource>, selector: System_Linq_Expressions.Expression_1<System.Func_2<TSource, TResult>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<TResult>>;
699
+ Migrate(this: Microsoft_EntityFrameworkCore_Infrastructure.DatabaseFacade): Rewrap<this, void>;
700
+ Migrate(this: Microsoft_EntityFrameworkCore_Infrastructure.DatabaseFacade, targetMigration: string): Rewrap<this, void>;
701
+ MigrateAsync(this: Microsoft_EntityFrameworkCore_Infrastructure.DatabaseFacade, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
702
+ MigrateAsync(this: Microsoft_EntityFrameworkCore_Infrastructure.DatabaseFacade, targetMigration: string, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
703
+ MinAsync<TSource>(this: System_Linq.IQueryable_1<TSource>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<TSource>>;
704
+ MinAsync<TSource, TResult>(this: System_Linq.IQueryable_1<TSource>, selector: System_Linq_Expressions.Expression_1<System.Func_2<TSource, TResult>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<TResult>>;
705
+ OpenConnection(this: Microsoft_EntityFrameworkCore_Infrastructure.DatabaseFacade): Rewrap<this, void>;
706
+ OpenConnectionAsync(this: Microsoft_EntityFrameworkCore_Infrastructure.DatabaseFacade, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
707
+ Random(this: Microsoft_EntityFrameworkCore.DbFunctions): Rewrap<this, double>;
708
+ RemoveCheckConstraint(this: Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType, name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionCheckConstraint | undefined>;
709
+ RemoveCheckConstraint(this: Microsoft_EntityFrameworkCore_Metadata.IMutableEntityType, name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableCheckConstraint | undefined>;
710
+ RemoveDbFunction(this: Microsoft_EntityFrameworkCore_Metadata.IConventionModel, method: System_Reflection.MethodInfo): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionDbFunction | undefined>;
711
+ RemoveDbFunction(this: Microsoft_EntityFrameworkCore_Metadata.IConventionModel, name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionDbFunction | undefined>;
712
+ RemoveDbFunction(this: Microsoft_EntityFrameworkCore_Metadata.IMutableModel, method: System_Reflection.MethodInfo): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableDbFunction | undefined>;
713
+ RemoveDbFunction(this: Microsoft_EntityFrameworkCore_Metadata.IMutableModel, name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableDbFunction | undefined>;
714
+ RemoveDeleteStoredProcedure(this: Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionStoredProcedure | undefined>;
715
+ RemoveDeleteStoredProcedure(this: Microsoft_EntityFrameworkCore_Metadata.IMutableEntityType): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableStoredProcedure | undefined>;
716
+ RemoveInsertStoredProcedure(this: Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionStoredProcedure | undefined>;
717
+ RemoveInsertStoredProcedure(this: Microsoft_EntityFrameworkCore_Metadata.IMutableEntityType): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableStoredProcedure | undefined>;
718
+ RemoveMappingFragment(this: Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionEntityTypeMappingFragment | undefined>;
719
+ RemoveMappingFragment(this: Microsoft_EntityFrameworkCore_Metadata.IMutableEntityType, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableEntityTypeMappingFragment | undefined>;
720
+ RemoveOverrides(this: Microsoft_EntityFrameworkCore_Metadata.IConventionProperty, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionRelationalPropertyOverrides | undefined>;
721
+ RemoveOverrides(this: Microsoft_EntityFrameworkCore_Metadata.IMutableProperty, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableRelationalPropertyOverrides | undefined>;
722
+ RemoveSequence(this: Microsoft_EntityFrameworkCore_Metadata.IConventionModel, name: string, schema?: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionSequence | undefined>;
723
+ RemoveSequence(this: Microsoft_EntityFrameworkCore_Metadata.IMutableModel, name: string, schema?: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableSequence | undefined>;
724
+ RemoveUpdateStoredProcedure(this: Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionStoredProcedure | undefined>;
725
+ RemoveUpdateStoredProcedure(this: Microsoft_EntityFrameworkCore_Metadata.IMutableEntityType): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableStoredProcedure | undefined>;
726
+ SetCollation(this: Microsoft_EntityFrameworkCore_Metadata.IConventionModel, value: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
727
+ SetCollation(this: Microsoft_EntityFrameworkCore_Metadata.IConventionProperty, collation: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
728
+ SetCollation(this: Microsoft_EntityFrameworkCore_Metadata.IMutableModel, value: string): Rewrap<this, void>;
729
+ SetCollation(this: Microsoft_EntityFrameworkCore_Metadata.IMutableProperty, collation: string): Rewrap<this, void>;
730
+ SetColumnName(this: Microsoft_EntityFrameworkCore_Metadata.IConventionProperty, name: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
731
+ SetColumnName(this: Microsoft_EntityFrameworkCore_Metadata.IConventionProperty, name: string, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
732
+ SetColumnName(this: Microsoft_EntityFrameworkCore_Metadata.IMutableProperty, name: string): Rewrap<this, void>;
733
+ SetColumnName(this: Microsoft_EntityFrameworkCore_Metadata.IMutableProperty, name: string, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, void>;
734
+ SetColumnOrder(this: Microsoft_EntityFrameworkCore_Metadata.IConventionProperty, order: System.Nullable_1<System_Internal.Int32>, fromDataAnnotation?: boolean): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
735
+ SetColumnOrder(this: Microsoft_EntityFrameworkCore_Metadata.IMutableProperty, order: System.Nullable_1<System_Internal.Int32>): Rewrap<this, void>;
736
+ SetColumnType(this: Microsoft_EntityFrameworkCore_Metadata.IConventionProperty, value: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
737
+ SetColumnType(this: Microsoft_EntityFrameworkCore_Metadata.IMutableProperty, value: string): Rewrap<this, void>;
738
+ SetCommandTimeout(this: Microsoft_EntityFrameworkCore_Infrastructure.DatabaseFacade, timeout: System.Nullable_1<System_Internal.Int32>): Rewrap<this, void>;
739
+ SetCommandTimeout(this: Microsoft_EntityFrameworkCore_Infrastructure.DatabaseFacade, timeout: System.TimeSpan): Rewrap<this, void>;
740
+ SetComment(this: Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType, comment: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
741
+ SetComment(this: Microsoft_EntityFrameworkCore_Metadata.IConventionProperty, comment: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
742
+ SetComment(this: Microsoft_EntityFrameworkCore_Metadata.IMutableEntityType, comment: string): Rewrap<this, void>;
743
+ SetComment(this: Microsoft_EntityFrameworkCore_Metadata.IMutableProperty, comment: string): Rewrap<this, void>;
744
+ SetComputedColumnSql(this: Microsoft_EntityFrameworkCore_Metadata.IConventionProperty, value: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
745
+ SetComputedColumnSql(this: Microsoft_EntityFrameworkCore_Metadata.IMutableProperty, value: string): Rewrap<this, void>;
746
+ SetConnectionString(this: Microsoft_EntityFrameworkCore_Infrastructure.DatabaseFacade, connectionString: string): Rewrap<this, void>;
747
+ SetConstraintName(this: Microsoft_EntityFrameworkCore_Metadata.IConventionForeignKey, value: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
748
+ SetConstraintName(this: Microsoft_EntityFrameworkCore_Metadata.IMutableForeignKey, value: string): Rewrap<this, void>;
749
+ SetContainerColumnName(this: Microsoft_EntityFrameworkCore_Metadata.IConventionTypeBase, columnName: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
750
+ SetContainerColumnName(this: Microsoft_EntityFrameworkCore_Metadata.IMutableTypeBase, columnName: string): Rewrap<this, void>;
751
+ SetContainerColumnType(this: Microsoft_EntityFrameworkCore_Metadata.IConventionTypeBase, columnType: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
752
+ SetContainerColumnType(this: Microsoft_EntityFrameworkCore_Metadata.IMutableTypeBase, columnType: string): Rewrap<this, void>;
753
+ SetContainerColumnTypeMapping(this: Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType, typeMapping: Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping | undefined>;
754
+ SetContainerColumnTypeMapping(this: Microsoft_EntityFrameworkCore_Metadata.IMutableEntityType, typeMapping: Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping): Rewrap<this, void>;
755
+ SetDatabaseName(this: Microsoft_EntityFrameworkCore_Metadata.IConventionIndex, name: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
756
+ SetDatabaseName(this: Microsoft_EntityFrameworkCore_Metadata.IConventionTrigger, name: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
757
+ SetDatabaseName(this: Microsoft_EntityFrameworkCore_Metadata.IMutableIndex, name: string): Rewrap<this, void>;
758
+ SetDatabaseName(this: Microsoft_EntityFrameworkCore_Metadata.IMutableTrigger, name: string): Rewrap<this, void>;
759
+ SetDbConnection(this: Microsoft_EntityFrameworkCore_Infrastructure.DatabaseFacade, connection: System_Data_Common.DbConnection, contextOwnsConnection?: boolean): Rewrap<this, void>;
760
+ SetDefaultConstraintName(this: Microsoft_EntityFrameworkCore_Metadata.IConventionProperty, defaultConstraintName: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
761
+ SetDefaultConstraintName(this: Microsoft_EntityFrameworkCore_Metadata.IMutableProperty, defaultConstraintName: string): Rewrap<this, void>;
762
+ SetDefaultSchema(this: Microsoft_EntityFrameworkCore_Metadata.IConventionModel, value: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
763
+ SetDefaultSchema(this: Microsoft_EntityFrameworkCore_Metadata.IMutableModel, value: string): Rewrap<this, void>;
764
+ SetDefaultValue(this: Microsoft_EntityFrameworkCore_Metadata.IConventionProperty, value: unknown, fromDataAnnotation?: boolean): Rewrap<this, unknown | undefined>;
765
+ SetDefaultValue(this: Microsoft_EntityFrameworkCore_Metadata.IMutableProperty, value: unknown): Rewrap<this, void>;
766
+ SetDefaultValueSql(this: Microsoft_EntityFrameworkCore_Metadata.IConventionProperty, value: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
767
+ SetDefaultValueSql(this: Microsoft_EntityFrameworkCore_Metadata.IMutableProperty, value: string): Rewrap<this, void>;
768
+ SetDeleteStoredProcedure(this: Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionStoredProcedure | undefined>;
769
+ SetDeleteStoredProcedure(this: Microsoft_EntityFrameworkCore_Metadata.IMutableEntityType): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableStoredProcedure>;
770
+ SetFilter(this: Microsoft_EntityFrameworkCore_Metadata.IConventionIndex, value: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
771
+ SetFilter(this: Microsoft_EntityFrameworkCore_Metadata.IMutableIndex, value: string): Rewrap<this, void>;
772
+ SetFunctionName(this: Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType, name: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
773
+ SetFunctionName(this: Microsoft_EntityFrameworkCore_Metadata.IMutableEntityType, name: string): Rewrap<this, void>;
774
+ SetInsertStoredProcedure(this: Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionStoredProcedure | undefined>;
775
+ SetInsertStoredProcedure(this: Microsoft_EntityFrameworkCore_Metadata.IMutableEntityType): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableStoredProcedure>;
776
+ SetIsFixedLength(this: Microsoft_EntityFrameworkCore_Metadata.IConventionElementType, fixedLength: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
777
+ SetIsFixedLength(this: Microsoft_EntityFrameworkCore_Metadata.IConventionProperty, fixedLength: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
778
+ SetIsFixedLength(this: Microsoft_EntityFrameworkCore_Metadata.IMutableElementType, fixedLength: System.Nullable_1<System_Internal.Boolean>): Rewrap<this, void>;
779
+ SetIsFixedLength(this: Microsoft_EntityFrameworkCore_Metadata.IMutableProperty, fixedLength: System.Nullable_1<System_Internal.Boolean>): Rewrap<this, void>;
780
+ SetIsStored(this: Microsoft_EntityFrameworkCore_Metadata.IConventionProperty, value: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
781
+ SetIsStored(this: Microsoft_EntityFrameworkCore_Metadata.IMutableProperty, value: System.Nullable_1<System_Internal.Boolean>): Rewrap<this, void>;
782
+ SetIsTableExcludedFromMigrations(this: Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType, excluded: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
783
+ SetIsTableExcludedFromMigrations(this: Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType, excluded: System.Nullable_1<System_Internal.Boolean>, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, fromDataAnnotation?: boolean): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
784
+ SetIsTableExcludedFromMigrations(this: Microsoft_EntityFrameworkCore_Metadata.IMutableEntityType, excluded: System.Nullable_1<System_Internal.Boolean>): Rewrap<this, void>;
785
+ SetIsTableExcludedFromMigrations(this: Microsoft_EntityFrameworkCore_Metadata.IMutableEntityType, excluded: System.Nullable_1<System_Internal.Boolean>, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, void>;
786
+ SetJsonPropertyName(this: Microsoft_EntityFrameworkCore_Metadata.IConventionComplexProperty, name: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
787
+ SetJsonPropertyName(this: Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType, name: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
788
+ SetJsonPropertyName(this: Microsoft_EntityFrameworkCore_Metadata.IConventionProperty, name: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
789
+ SetJsonPropertyName(this: Microsoft_EntityFrameworkCore_Metadata.IMutableComplexProperty, name: string): Rewrap<this, void>;
790
+ SetJsonPropertyName(this: Microsoft_EntityFrameworkCore_Metadata.IMutableEntityType, name: string): Rewrap<this, void>;
791
+ SetJsonPropertyName(this: Microsoft_EntityFrameworkCore_Metadata.IMutableProperty, name: string): Rewrap<this, void>;
792
+ SetMappingStrategy(this: Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType, strategy: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
793
+ SetMappingStrategy(this: Microsoft_EntityFrameworkCore_Metadata.IMutableEntityType, strategy: string): Rewrap<this, void>;
794
+ SetMaxIdentifierLength(this: Microsoft_EntityFrameworkCore_Metadata.IConventionModel, length: System.Nullable_1<System_Internal.Int32>, fromDataAnnotation?: boolean): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
795
+ SetMaxIdentifierLength(this: Microsoft_EntityFrameworkCore_Metadata.IMutableModel, length: System.Nullable_1<System_Internal.Int32>): Rewrap<this, void>;
796
+ SetName(this: Microsoft_EntityFrameworkCore_Metadata.IConventionKey, name: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
797
+ SetName(this: Microsoft_EntityFrameworkCore_Metadata.IMutableKey, name: string): Rewrap<this, void>;
798
+ SetSchema(this: Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType, value: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
799
+ SetSchema(this: Microsoft_EntityFrameworkCore_Metadata.IMutableEntityType, value: string): Rewrap<this, void>;
800
+ SetSqlQuery(this: Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType, name: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
801
+ SetSqlQuery(this: Microsoft_EntityFrameworkCore_Metadata.IMutableEntityType, name: string): Rewrap<this, void>;
802
+ SetStoreType(this: Microsoft_EntityFrameworkCore_Metadata.IConventionElementType, value: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
803
+ SetStoreType(this: Microsoft_EntityFrameworkCore_Metadata.IMutableElementType, value: string): Rewrap<this, void>;
804
+ SetTableName(this: Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType, name: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
805
+ SetTableName(this: Microsoft_EntityFrameworkCore_Metadata.IConventionTrigger, name: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
806
+ SetTableName(this: Microsoft_EntityFrameworkCore_Metadata.IMutableEntityType, name: string): Rewrap<this, void>;
807
+ SetTableName(this: Microsoft_EntityFrameworkCore_Metadata.IMutableTrigger, name: string): Rewrap<this, void>;
808
+ SetTableSchema(this: Microsoft_EntityFrameworkCore_Metadata.IConventionTrigger, schema: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
809
+ SetTableSchema(this: Microsoft_EntityFrameworkCore_Metadata.IMutableTrigger, schema: string): Rewrap<this, void>;
810
+ SetUpdateStoredProcedure(this: Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionStoredProcedure | undefined>;
811
+ SetUpdateStoredProcedure(this: Microsoft_EntityFrameworkCore_Metadata.IMutableEntityType): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableStoredProcedure>;
812
+ SetViewName(this: Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType, name: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
813
+ SetViewName(this: Microsoft_EntityFrameworkCore_Metadata.IMutableEntityType, name: string): Rewrap<this, void>;
814
+ SetViewSchema(this: Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType, value: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
815
+ SetViewSchema(this: Microsoft_EntityFrameworkCore_Metadata.IMutableEntityType, value: string): Rewrap<this, void>;
816
+ SingleAsync<TSource>(this: System_Linq.IQueryable_1<TSource>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<TSource>>;
817
+ SingleAsync<TSource>(this: System_Linq.IQueryable_1<TSource>, predicate: System_Linq_Expressions.Expression_1<System.Func_2<TSource, System_Internal.Boolean>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<TSource>>;
818
+ SingleOrDefaultAsync<TSource>(this: System_Linq.IQueryable_1<TSource>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<TSource | undefined>>;
819
+ SingleOrDefaultAsync<TSource>(this: System_Linq.IQueryable_1<TSource>, predicate: System_Linq_Expressions.Expression_1<System.Func_2<TSource, System_Internal.Boolean>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<TSource | undefined>>;
820
+ SplitToTable<TEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>, name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.SplitTableBuilder_1<TEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
821
+ SplitToTable<TEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>, name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.SplitTableBuilder_1<TEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
822
+ SplitToTable(this: Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder, name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.SplitTableBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
823
+ SplitToTable(this: Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder, name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.SplitTableBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
824
+ SplitToTable<TOwnerEntity, TDependentEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationSplitTableBuilder_2<TOwnerEntity, TDependentEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
825
+ SplitToTable<TOwnerEntity, TDependentEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationSplitTableBuilder_2<TOwnerEntity, TDependentEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
826
+ SplitToTable(this: Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder, name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationSplitTableBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
827
+ SplitToTable(this: Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder, name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationSplitTableBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
828
+ SplitToView<TEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>, name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.SplitViewBuilder_1<TEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
829
+ SplitToView<TEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>, name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.SplitViewBuilder_1<TEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
830
+ SplitToView(this: Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder, name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.SplitViewBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
831
+ SplitToView(this: Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder, name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.SplitViewBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
832
+ SplitToView<TOwnerEntity, TDependentEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationSplitViewBuilder_2<TOwnerEntity, TDependentEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
833
+ SplitToView<TOwnerEntity, TDependentEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationSplitViewBuilder_2<TOwnerEntity, TDependentEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
834
+ SplitToView(this: Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder, name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationSplitViewBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
835
+ SplitToView(this: Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder, name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationSplitViewBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
836
+ SqlQuery<TResult>(this: Microsoft_EntityFrameworkCore_Infrastructure.DatabaseFacade, sql: System.FormattableString): Rewrap<this, System_Linq.IQueryable_1<TResult>>;
837
+ SqlQueryRaw<TResult>(this: Microsoft_EntityFrameworkCore_Infrastructure.DatabaseFacade, sql: string, ...parameters: unknown[]): Rewrap<this, System_Linq.IQueryable_1<TResult>>;
838
+ SumAsync(this: System_Linq.IQueryable_1<System_Internal.Decimal>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Decimal>>;
839
+ SumAsync(this: System_Linq.IQueryable_1<System.Nullable_1<System_Internal.Decimal>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Decimal>>>;
840
+ SumAsync<TSource>(this: System_Linq.IQueryable_1<TSource>, selector: System_Linq_Expressions.Expression_1<System.Func_2<TSource, System_Internal.Decimal>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Decimal>>;
841
+ SumAsync<TSource>(this: System_Linq.IQueryable_1<TSource>, selector: System_Linq_Expressions.Expression_1<System.Func_2<TSource, System.Nullable_1<System_Internal.Decimal>>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Decimal>>>;
842
+ SumAsync(this: System_Linq.IQueryable_1<System_Internal.Int32>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Int32>>;
843
+ SumAsync(this: System_Linq.IQueryable_1<System.Nullable_1<System_Internal.Int32>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Int32>>>;
844
+ SumAsync<TSource>(this: System_Linq.IQueryable_1<TSource>, selector: System_Linq_Expressions.Expression_1<System.Func_2<TSource, System_Internal.Int32>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Int32>>;
845
+ SumAsync<TSource>(this: System_Linq.IQueryable_1<TSource>, selector: System_Linq_Expressions.Expression_1<System.Func_2<TSource, System.Nullable_1<System_Internal.Int32>>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Int32>>>;
846
+ SumAsync(this: System_Linq.IQueryable_1<System_Internal.Int64>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Int64>>;
847
+ SumAsync(this: System_Linq.IQueryable_1<System.Nullable_1<System_Internal.Int64>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Int64>>>;
848
+ SumAsync<TSource>(this: System_Linq.IQueryable_1<TSource>, selector: System_Linq_Expressions.Expression_1<System.Func_2<TSource, System_Internal.Int64>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Int64>>;
849
+ SumAsync<TSource>(this: System_Linq.IQueryable_1<TSource>, selector: System_Linq_Expressions.Expression_1<System.Func_2<TSource, System.Nullable_1<System_Internal.Int64>>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Int64>>>;
850
+ SumAsync(this: System_Linq.IQueryable_1<System_Internal.Double>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Double>>;
851
+ SumAsync(this: System_Linq.IQueryable_1<System.Nullable_1<System_Internal.Double>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Double>>>;
852
+ SumAsync<TSource>(this: System_Linq.IQueryable_1<TSource>, selector: System_Linq_Expressions.Expression_1<System.Func_2<TSource, System_Internal.Double>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Double>>;
853
+ SumAsync<TSource>(this: System_Linq.IQueryable_1<TSource>, selector: System_Linq_Expressions.Expression_1<System.Func_2<TSource, System.Nullable_1<System_Internal.Double>>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Double>>>;
854
+ SumAsync(this: System_Linq.IQueryable_1<System_Internal.Single>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Single>>;
855
+ SumAsync(this: System_Linq.IQueryable_1<System.Nullable_1<System_Internal.Single>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Single>>>;
856
+ SumAsync<TSource>(this: System_Linq.IQueryable_1<TSource>, selector: System_Linq_Expressions.Expression_1<System.Func_2<TSource, System_Internal.Single>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Internal.Single>>;
857
+ SumAsync<TSource>(this: System_Linq.IQueryable_1<TSource>, selector: System_Linq_Expressions.Expression_1<System.Func_2<TSource, System.Nullable_1<System_Internal.Single>>>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System.Nullable_1<System_Internal.Single>>>;
858
+ TagWith<T>(this: System_Linq.IQueryable_1<T>, tag: string): Rewrap<this, System_Linq.IQueryable_1<T>>;
859
+ TagWithCallSite<T>(this: System_Linq.IQueryable_1<T>, filePath?: string, lineNumber?: int): Rewrap<this, System_Linq.IQueryable_1<T>>;
860
+ ThenInclude<TEntity, TPreviousProperty, TProperty>(this: Microsoft_EntityFrameworkCore_Query.IIncludableQueryable_2<TEntity, System_Collections_Generic.IEnumerable_1<TPreviousProperty>>, navigationPropertyPath: System_Linq_Expressions.Expression_1<System.Func_2<TPreviousProperty, TProperty>>): Rewrap<this, Microsoft_EntityFrameworkCore_Query.IIncludableQueryable_2<TEntity, TProperty>>;
861
+ ToArrayAsync<TSource>(this: System_Linq.IQueryable_1<TSource>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<TSource[]>>;
862
+ ToBindingList<T>(this: System_Collections_ObjectModel.ObservableCollection_1<T>): Rewrap<this, System_ComponentModel.BindingList_1<T>>;
863
+ ToDebugString(this: Microsoft_EntityFrameworkCore_ChangeTracking.ChangeTracker, options?: Microsoft_EntityFrameworkCore_ChangeTracking.ChangeTrackerDebugStringOptions, indent?: int): Rewrap<this, string>;
864
+ ToDictionaryAsync<TSource, TKey>(this: System_Linq.IQueryable_1<TSource>, keySelector: System.Func_2<TSource, TKey>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Collections_Generic.Dictionary_2<TKey, TSource>>>;
865
+ ToDictionaryAsync<TSource, TKey>(this: System_Linq.IQueryable_1<TSource>, keySelector: System.Func_2<TSource, TKey>, comparer: System_Collections_Generic.IEqualityComparer_1<TKey>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Collections_Generic.Dictionary_2<TKey, TSource>>>;
866
+ ToDictionaryAsync<TSource, TKey, TElement>(this: System_Linq.IQueryable_1<TSource>, keySelector: System.Func_2<TSource, TKey>, elementSelector: System.Func_2<TSource, TElement>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Collections_Generic.Dictionary_2<TKey, TElement>>>;
867
+ ToDictionaryAsync<TSource, TKey, TElement>(this: System_Linq.IQueryable_1<TSource>, keySelector: System.Func_2<TSource, TKey>, elementSelector: System.Func_2<TSource, TElement>, comparer: System_Collections_Generic.IEqualityComparer_1<TKey>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Collections_Generic.Dictionary_2<TKey, TElement>>>;
868
+ ToFunction<TEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>, name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
869
+ ToFunction<TEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>, function_: System_Reflection.MethodInfo): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
870
+ ToFunction<TEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>, name: string, configureFunction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.TableValuedFunctionBuilder_1<TEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
871
+ ToFunction<TEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>, function_: System_Reflection.MethodInfo, configureFunction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.TableValuedFunctionBuilder_1<TEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
872
+ ToFunction(this: Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder, name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
873
+ ToFunction(this: Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder, function_: System_Reflection.MethodInfo): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
874
+ ToFunction(this: Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder, name: string, configureFunction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.TableValuedFunctionBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
875
+ ToFunction(this: Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder, function_: System_Reflection.MethodInfo, configureFunction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.TableValuedFunctionBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
876
+ ToFunction(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder, name: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder | undefined>;
877
+ ToFunction(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder, function_: System_Reflection.MethodInfo, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder | undefined>;
878
+ ToFunction<TOwnerEntity, TDependentEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
879
+ ToFunction<TOwnerEntity, TDependentEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, function_: System_Reflection.MethodInfo): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
880
+ ToFunction<TOwnerEntity, TDependentEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, name: string, configureFunction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationTableValuedFunctionBuilder_2<TOwnerEntity, TDependentEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
881
+ ToFunction<TOwnerEntity, TDependentEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, function_: System_Reflection.MethodInfo, configureFunction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationTableValuedFunctionBuilder_2<TOwnerEntity, TDependentEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
882
+ ToFunction(this: Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder, name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
883
+ ToFunction(this: Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder, function_: System_Reflection.MethodInfo): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
884
+ ToFunction(this: Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder, name: string, configureFunction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationTableValuedFunctionBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
885
+ ToFunction(this: Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder, function_: System_Reflection.MethodInfo, configureFunction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationTableValuedFunctionBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
886
+ ToHashSetAsync<TSource>(this: System_Linq.IQueryable_1<TSource>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Collections_Generic.HashSet_1<TSource>>>;
887
+ ToHashSetAsync<TSource>(this: System_Linq.IQueryable_1<TSource>, comparer: System_Collections_Generic.IEqualityComparer_1<TSource>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Collections_Generic.HashSet_1<TSource>>>;
888
+ ToJson<TComplex>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionBuilder_1<TComplex>, jsonColumnName?: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionBuilder_1<TComplex>>;
889
+ ToJson(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionBuilder, jsonColumnName?: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionBuilder>;
890
+ ToJson<TComplex>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexPropertyBuilder_1<TComplex>, jsonColumnName?: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexPropertyBuilder_1<TComplex>>;
891
+ ToJson(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexPropertyBuilder, jsonColumnName?: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexPropertyBuilder>;
892
+ ToJson<TOwnerEntity, TDependentEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
893
+ ToJson<TOwnerEntity, TDependentEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, jsonColumnName: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
894
+ ToJson(this: Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
895
+ ToJson(this: Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder, jsonColumnName: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
896
+ ToListAsync<TSource>(this: System_Linq.IQueryable_1<TSource>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<System_Collections_Generic.List_1<TSource>>>;
897
+ ToQueryString(this: System_Linq.IQueryable): Rewrap<this, string>;
898
+ ToSchema(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder, schema: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder | undefined>;
899
+ ToSqlQuery<TEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>, query: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
900
+ ToSqlQuery(this: Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder, query: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
901
+ ToSqlQuery(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder, name: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder | undefined>;
902
+ ToTable<TEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>, name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
903
+ ToTable<TEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.TableBuilder_1<TEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
904
+ ToTable<TEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>, name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.TableBuilder_1<TEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
905
+ ToTable<TEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>, name: string, schema: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
906
+ ToTable<TEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>, name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.TableBuilder_1<TEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
907
+ ToTable(this: Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder, name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
908
+ ToTable(this: Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.TableBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
909
+ ToTable(this: Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder, name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.TableBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
910
+ ToTable(this: Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder, name: string, schema: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
911
+ ToTable(this: Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder, name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.TableBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
912
+ ToTable(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder, name: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder | undefined>;
913
+ ToTable(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder, name: string, schema: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder | undefined>;
914
+ ToTable<TOwnerEntity, TDependentEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationTableBuilder_2<TOwnerEntity, TDependentEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
915
+ ToTable<TOwnerEntity, TDependentEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
916
+ ToTable<TOwnerEntity, TDependentEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationTableBuilder_2<TOwnerEntity, TDependentEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
917
+ ToTable<TOwnerEntity, TDependentEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, name: string, schema: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
918
+ ToTable<TOwnerEntity, TDependentEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationTableBuilder_2<TOwnerEntity, TDependentEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
919
+ ToTable(this: Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder, name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
920
+ ToTable(this: Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationTableBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
921
+ ToTable(this: Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder, name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationTableBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
922
+ ToTable(this: Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder, name: string, schema: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
923
+ ToTable(this: Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder, name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationTableBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
924
+ ToView<TEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>, name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
925
+ ToView<TEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>, name: string, schema: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
926
+ ToView<TEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>, name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.ViewBuilder_1<TEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
927
+ ToView<TEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>, name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.ViewBuilder_1<TEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
928
+ ToView(this: Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder, name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
929
+ ToView(this: Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder, name: string, schema: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
930
+ ToView(this: Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder, name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.ViewBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
931
+ ToView(this: Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder, name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.ViewBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
932
+ ToView(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder, name: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder | undefined>;
933
+ ToView(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder, name: string, schema: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder | undefined>;
934
+ ToView<TOwnerEntity, TDependentEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
935
+ ToView<TOwnerEntity, TDependentEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, name: string, schema: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
936
+ ToView<TOwnerEntity, TDependentEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationViewBuilder_2<TOwnerEntity, TDependentEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
937
+ ToView<TOwnerEntity, TDependentEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationViewBuilder_2<TOwnerEntity, TDependentEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
938
+ ToView(this: Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder, name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
939
+ ToView(this: Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder, name: string, schema: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
940
+ ToView(this: Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder, name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationViewBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
941
+ ToView(this: Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder, name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationViewBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
942
+ ToViewSchema(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder, schema: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder | undefined>;
943
+ TryGetDefaultValue(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty, defaultValue: unknown): Rewrap<this, boolean>;
944
+ TryGetDefaultValue(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, defaultValue: unknown): Rewrap<this, boolean>;
945
+ UnwrapJoin(this: Microsoft_EntityFrameworkCore_Query_SqlExpressions.TableExpressionBase): Rewrap<this, Microsoft_EntityFrameworkCore_Query_SqlExpressions.TableExpressionBase>;
946
+ UpdateUsingStoredProcedure<TEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder_1<TEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
947
+ UpdateUsingStoredProcedure<TEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>, name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder_1<TEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
948
+ UpdateUsingStoredProcedure<TEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>, name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder_1<TEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
949
+ UpdateUsingStoredProcedure(this: Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
950
+ UpdateUsingStoredProcedure(this: Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder, name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
951
+ UpdateUsingStoredProcedure(this: Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder, name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.StoredProcedureBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
952
+ UpdateUsingStoredProcedure(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionStoredProcedureBuilder | undefined>;
953
+ UpdateUsingStoredProcedure<TOwnerEntity, TDependentEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder_2<TOwnerEntity, TDependentEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
954
+ UpdateUsingStoredProcedure<TOwnerEntity, TDependentEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder_2<TOwnerEntity, TDependentEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
955
+ UpdateUsingStoredProcedure<TOwnerEntity, TDependentEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder_2<TOwnerEntity, TDependentEntity>>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>>;
956
+ UpdateUsingStoredProcedure(this: Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
957
+ UpdateUsingStoredProcedure(this: Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder, name: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
958
+ UpdateUsingStoredProcedure(this: Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder, name: string, schema: string, buildAction: System.Action_1<Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationStoredProcedureBuilder>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder>;
959
+ UseCollation(this: Microsoft_EntityFrameworkCore.ModelBuilder, collation: string): Rewrap<this, Microsoft_EntityFrameworkCore.ModelBuilder>;
960
+ UseCollation<TProperty>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<TProperty>, collation: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<TProperty>>;
961
+ UseCollation(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder, collation: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder>;
962
+ UseCollation<TProperty>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>, collation: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<TProperty>>;
963
+ UseCollation(this: Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder, collation: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder>;
964
+ UseCollation(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionModelBuilder, collation: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionModelBuilder | undefined>;
965
+ UseCollation(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder, collation: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder | undefined>;
966
+ UseCollation<TProperty>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<TProperty>, collation: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<TProperty>>;
967
+ UseCollation(this: Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder, collation: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder>;
968
+ UseCollation<TProperty>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.PropertiesConfigurationBuilder_1<TProperty>, collation: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertiesConfigurationBuilder_1<TProperty>>;
969
+ UseCollation(this: Microsoft_EntityFrameworkCore_Metadata_Builders.PropertiesConfigurationBuilder, collation: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertiesConfigurationBuilder>;
970
+ UseCollation<TProperty>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>, collation: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<TProperty>>;
971
+ UseCollation(this: Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder, collation: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder>;
972
+ UseMappingStrategy(this: Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder, strategy: string, fromDataAnnotation?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder | undefined>;
973
+ UseNamedDefaultConstraints(this: Microsoft_EntityFrameworkCore_Metadata.IConventionModel, value: System.Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
974
+ UseNamedDefaultConstraints(this: Microsoft_EntityFrameworkCore_Metadata.IMutableModel, value: boolean): Rewrap<this, void>;
975
+ UseNamedDefaultConstraintsConfigurationSource(this: Microsoft_EntityFrameworkCore_Metadata.IConventionModel): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
976
+ UseTpcMappingStrategy<TEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
977
+ UseTpcMappingStrategy(this: Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
978
+ UseTphMappingStrategy<TEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
979
+ UseTphMappingStrategy(this: Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
980
+ UseTptMappingStrategy<TEntity>(this: Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<TEntity>>;
981
+ UseTptMappingStrategy(this: Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder>;
982
+ UseTransaction(this: Microsoft_EntityFrameworkCore_Infrastructure.DatabaseFacade, transaction: System_Data_Common.DbTransaction): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.IDbContextTransaction | undefined>;
983
+ UseTransaction(this: Microsoft_EntityFrameworkCore_Infrastructure.DatabaseFacade, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.IDbContextTransaction | undefined>;
984
+ UseTransactionAsync(this: Microsoft_EntityFrameworkCore_Infrastructure.DatabaseFacade, transaction: System_Data_Common.DbTransaction, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<Microsoft_EntityFrameworkCore_Storage.IDbContextTransaction | undefined>>;
985
+ UseTransactionAsync(this: Microsoft_EntityFrameworkCore_Infrastructure.DatabaseFacade, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<Microsoft_EntityFrameworkCore_Storage.IDbContextTransaction | undefined>>;
986
+ }
2078
987
 
988
+ // Generic helper type for extension methods in namespace: Microsoft.EntityFrameworkCore
2079
989
  interface __TsonicExtApplier_Microsoft_EntityFrameworkCore {
2080
990
  __tsonic_shape: unknown;
2081
- __tsonic_type: __TsonicExtSurface_Microsoft_EntityFrameworkCore<this["__tsonic_shape"]>;
991
+ __tsonic_type: __TsonicExtMethods_Microsoft_EntityFrameworkCore;
2082
992
  }
2083
993
 
2084
994
  export type ExtensionMethods_Microsoft_EntityFrameworkCore<TShape> =
2085
995
  TShape extends null | undefined ? TShape
2086
996
  : TShape extends void ? void
2087
- : TShape & __TsonicWithExt<TShape, "Microsoft.EntityFrameworkCore", __TsonicExtApplier_Microsoft_EntityFrameworkCore> & __TsonicExtSurface_Microsoft_EntityFrameworkCore<TShape>;
997
+ : TShape extends (infer T)[] ? (TShape & System_Collections_Generic.IEnumerable_1<T> & __TsonicWithExt<TShape, "Microsoft.EntityFrameworkCore", __TsonicExtApplier_Microsoft_EntityFrameworkCore> & __TsonicExtMethods_Microsoft_EntityFrameworkCore)
998
+ : TShape & __TsonicWithExt<TShape, "Microsoft.EntityFrameworkCore", __TsonicExtApplier_Microsoft_EntityFrameworkCore> & __TsonicExtMethods_Microsoft_EntityFrameworkCore;
2088
999
 
2089
- // Generic helper type for extension methods in namespace: Microsoft.EntityFrameworkCore.ChangeTracking
2090
- type __TsonicExtSurface_Microsoft_EntityFrameworkCore_ChangeTracking<TShape> =
2091
- (
2092
- (TShape extends Microsoft_EntityFrameworkCore_ChangeTracking.ValueComparer ? __Ext_Microsoft_EntityFrameworkCore_ChangeTracking_ValueComparer : {})
2093
- );
1000
+ // Extension method table for namespace: Microsoft.EntityFrameworkCore.ChangeTracking
1001
+ interface __TsonicExtMethods_Microsoft_EntityFrameworkCore_ChangeTracking {
1002
+ IsDefault(this: Microsoft_EntityFrameworkCore_ChangeTracking.ValueComparer): Rewrap<this, boolean>;
1003
+ }
2094
1004
 
1005
+ // Generic helper type for extension methods in namespace: Microsoft.EntityFrameworkCore.ChangeTracking
2095
1006
  interface __TsonicExtApplier_Microsoft_EntityFrameworkCore_ChangeTracking {
2096
1007
  __tsonic_shape: unknown;
2097
- __tsonic_type: __TsonicExtSurface_Microsoft_EntityFrameworkCore_ChangeTracking<this["__tsonic_shape"]>;
1008
+ __tsonic_type: __TsonicExtMethods_Microsoft_EntityFrameworkCore_ChangeTracking;
2098
1009
  }
2099
1010
 
2100
1011
  export type ExtensionMethods_Microsoft_EntityFrameworkCore_ChangeTracking<TShape> =
2101
1012
  TShape extends null | undefined ? TShape
2102
1013
  : TShape extends void ? void
2103
- : TShape & __TsonicWithExt<TShape, "Microsoft.EntityFrameworkCore.ChangeTracking", __TsonicExtApplier_Microsoft_EntityFrameworkCore_ChangeTracking> & __TsonicExtSurface_Microsoft_EntityFrameworkCore_ChangeTracking<TShape>;
1014
+ : TShape & __TsonicWithExt<TShape, "Microsoft.EntityFrameworkCore.ChangeTracking", __TsonicExtApplier_Microsoft_EntityFrameworkCore_ChangeTracking> & __TsonicExtMethods_Microsoft_EntityFrameworkCore_ChangeTracking;
2104
1015
 
2105
- // Generic helper type for extension methods in namespace: Microsoft.EntityFrameworkCore.ChangeTracking.Internal
2106
- type __TsonicExtSurface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal<TShape> =
2107
- (
2108
- (TShape extends Microsoft_EntityFrameworkCore_ChangeTracking.ValueComparer ? __Ext_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_ValueComparer : {}) & (TShape extends Microsoft_EntityFrameworkCore_ChangeTracking_Internal.IStateManager ? __Ext_Microsoft_EntityFrameworkCore_ChangeTracking_Internal_IStateManager : {})
2109
- );
1016
+ // Extension method table for namespace: Microsoft.EntityFrameworkCore.ChangeTracking.Internal
1017
+ interface __TsonicExtMethods_Microsoft_EntityFrameworkCore_ChangeTracking_Internal {
1018
+ ComposeConversion(this: Microsoft_EntityFrameworkCore_ChangeTracking.ValueComparer, targetClrType: System.Type): Rewrap<this, Microsoft_EntityFrameworkCore_ChangeTracking.ValueComparer | undefined>;
1019
+ ToList(this: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.IStateManager): Rewrap<this, System_Collections_Generic.IReadOnlyList_1<Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry>>;
1020
+ ToListForState(this: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.IStateManager, added?: boolean, modified?: boolean, deleted?: boolean, unchanged?: boolean, returnDeletedSharedIdentity?: boolean): Rewrap<this, System_Collections_Generic.IReadOnlyList_1<Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry>>;
1021
+ ToNullableComparer(this: Microsoft_EntityFrameworkCore_ChangeTracking.ValueComparer, clrType: System.Type): Rewrap<this, Microsoft_EntityFrameworkCore_ChangeTracking.ValueComparer | undefined>;
1022
+ }
2110
1023
 
1024
+ // Generic helper type for extension methods in namespace: Microsoft.EntityFrameworkCore.ChangeTracking.Internal
2111
1025
  interface __TsonicExtApplier_Microsoft_EntityFrameworkCore_ChangeTracking_Internal {
2112
1026
  __tsonic_shape: unknown;
2113
- __tsonic_type: __TsonicExtSurface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal<this["__tsonic_shape"]>;
1027
+ __tsonic_type: __TsonicExtMethods_Microsoft_EntityFrameworkCore_ChangeTracking_Internal;
2114
1028
  }
2115
1029
 
2116
1030
  export type ExtensionMethods_Microsoft_EntityFrameworkCore_ChangeTracking_Internal<TShape> =
2117
1031
  TShape extends null | undefined ? TShape
2118
1032
  : TShape extends void ? void
2119
- : TShape & __TsonicWithExt<TShape, "Microsoft.EntityFrameworkCore.ChangeTracking.Internal", __TsonicExtApplier_Microsoft_EntityFrameworkCore_ChangeTracking_Internal> & __TsonicExtSurface_Microsoft_EntityFrameworkCore_ChangeTracking_Internal<TShape>;
1033
+ : TShape & __TsonicWithExt<TShape, "Microsoft.EntityFrameworkCore.ChangeTracking.Internal", __TsonicExtApplier_Microsoft_EntityFrameworkCore_ChangeTracking_Internal> & __TsonicExtMethods_Microsoft_EntityFrameworkCore_ChangeTracking_Internal;
1034
+
1035
+ // Extension method table for namespace: Microsoft.EntityFrameworkCore.Diagnostics
1036
+ interface __TsonicExtMethods_Microsoft_EntityFrameworkCore_Diagnostics {
1037
+ AccidentalComplexPropertyCollection(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Model_Validation>, complexProperty: Microsoft_EntityFrameworkCore_Metadata.IComplexProperty): Rewrap<this, void>;
1038
+ AccidentalEntityType(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Model_Validation>, entityType: Microsoft_EntityFrameworkCore_Metadata.IEntityType): Rewrap<this, void>;
1039
+ AcquiringMigrationLock(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Migrations>): Rewrap<this, void>;
1040
+ AllIndexPropertiesNotToMappedToAnyTable(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Model_Validation>, entityType: Microsoft_EntityFrameworkCore_Metadata.IEntityType, index: Microsoft_EntityFrameworkCore_Metadata.IIndex): Rewrap<this, void>;
1041
+ AmbientTransactionEnlisted(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Database_Transaction>, connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Transactions.Transaction): Rewrap<this, void>;
1042
+ AmbientTransactionWarning(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Database_Transaction>, connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, startTime: System.DateTimeOffset): Rewrap<this, void>;
1043
+ AmbiguousEndRequiredWarning(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Model>, foreignKey: Microsoft_EntityFrameworkCore_Metadata.IForeignKey): Rewrap<this, void>;
1044
+ BatchExecutorFailedToReleaseSavepoint(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Update>, contextType: System.Type, exception: System.Exception): Rewrap<this, void>;
1045
+ BatchExecutorFailedToRollbackToSavepoint(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Update>, contextType: System.Type, exception: System.Exception): Rewrap<this, void>;
1046
+ BatchReadyForExecution(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Update>, entries: System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Update.IUpdateEntry>, commandCount: int): Rewrap<this, void>;
1047
+ BatchSmallerThanMinBatchSize(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Update>, entries: System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Update.IUpdateEntry>, commandCount: int, minBatchSize: int): Rewrap<this, void>;
1048
+ BoolWithDefaultWarning(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Model_Validation>, property: Microsoft_EntityFrameworkCore_Metadata.IProperty): Rewrap<this, void>;
1049
+ CascadeDelete(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Update>, internalChildEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, internalParentEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, state: Microsoft_EntityFrameworkCore.EntityState): Rewrap<this, void>;
1050
+ CascadeDeleteOrphan(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Update>, internalChildEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, parentEntityType: Microsoft_EntityFrameworkCore_Metadata.IEntityType, state: Microsoft_EntityFrameworkCore.EntityState): Rewrap<this, void>;
1051
+ CascadeDeleteOrphanSensitive(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Update>, internalChildEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, parentEntityType: Microsoft_EntityFrameworkCore_Metadata.IEntityType, state: Microsoft_EntityFrameworkCore.EntityState): Rewrap<this, void>;
1052
+ CascadeDeleteSensitive(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Update>, internalChildEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, internalParentEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, state: Microsoft_EntityFrameworkCore.EntityState): Rewrap<this, void>;
1053
+ CollectionChangeDetected(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_ChangeTracking>, internalEntityEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, navigation: Microsoft_EntityFrameworkCore_Metadata.INavigation, added: System_Collections_Generic.ISet_1<unknown>, removed: System_Collections_Generic.ISet_1<unknown>): Rewrap<this, void>;
1054
+ CollectionChangeDetectedSensitive(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_ChangeTracking>, internalEntityEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, navigation: Microsoft_EntityFrameworkCore_Metadata.INavigation, added: System_Collections_Generic.ISet_1<unknown>, removed: System_Collections_Generic.ISet_1<unknown>): Rewrap<this, void>;
1055
+ CollectionWithoutComparer(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Model_Validation>, property: Microsoft_EntityFrameworkCore_Metadata.IProperty): Rewrap<this, void>;
1056
+ ColumnOrderIgnoredWarning(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Migrations>, operation: Microsoft_EntityFrameworkCore_Migrations_Operations.ColumnOperation): Rewrap<this, void>;
1057
+ ComplexElementPropertyChangeDetected(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_ChangeTracking>, internalComplexEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalComplexEntry, property: Microsoft_EntityFrameworkCore_Metadata.IProperty, oldValue: unknown, newValue: unknown): Rewrap<this, void>;
1058
+ ComplexElementPropertyChangeDetectedSensitive(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_ChangeTracking>, internalComplexEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalComplexEntry, property: Microsoft_EntityFrameworkCore_Metadata.IProperty, oldValue: unknown, newValue: unknown): Rewrap<this, void>;
1059
+ ConflictingForeignKeyAttributesOnNavigationAndPropertyWarning(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Model>, navigation: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyNavigation, property: System_Reflection.MemberInfo): Rewrap<this, void>;
1060
+ ConflictingKeylessAndKeyAttributesWarning(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Model>, property: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty): Rewrap<this, void>;
1061
+ ConflictingShadowForeignKeysWarning(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Model>, foreignKey: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyForeignKey): Rewrap<this, void>;
1062
+ ContextDisposed(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Infrastructure>, context: Microsoft_EntityFrameworkCore.DbContext): Rewrap<this, void>;
1063
+ ContextInitialized(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Infrastructure>, context: Microsoft_EntityFrameworkCore.DbContext, contextOptions: Microsoft_EntityFrameworkCore.DbContextOptions): Rewrap<this, void>;
1064
+ CreatedTransactionSavepoint(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Database_Transaction>, connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset): Rewrap<this, void>;
1065
+ CreatedTransactionSavepointAsync(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Database_Transaction>, connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
1066
+ CreatingTransactionSavepoint(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Database_Transaction>, connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset): Rewrap<this, Microsoft_EntityFrameworkCore_Diagnostics.InterceptionResult>;
1067
+ CreatingTransactionSavepointAsync(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Database_Transaction>, connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.ValueTask_1<Microsoft_EntityFrameworkCore_Diagnostics.InterceptionResult>>;
1068
+ DetachedLazyLoadingWarning(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Infrastructure>, context: Microsoft_EntityFrameworkCore.DbContext, entityType: unknown, navigationName: string): Rewrap<this, void>;
1069
+ DetectChangesCompleted(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_ChangeTracking>, context: Microsoft_EntityFrameworkCore.DbContext): Rewrap<this, void>;
1070
+ DetectChangesStarting(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_ChangeTracking>, context: Microsoft_EntityFrameworkCore.DbContext): Rewrap<this, void>;
1071
+ DistinctAfterOrderByWithoutRowLimitingOperatorWarning(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Query>): Rewrap<this, void>;
1072
+ DuplicateColumnOrders(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Model_Validation>, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, columns: System_Collections_Generic.IReadOnlyList_1<System_Internal.String>): Rewrap<this, void>;
1073
+ DuplicateDependentEntityTypeInstanceWarning(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Update>, dependent1: Microsoft_EntityFrameworkCore_Metadata.IEntityType, dependent2: Microsoft_EntityFrameworkCore_Metadata.IEntityType): Rewrap<this, void>;
1074
+ ExecuteDeleteFailed(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Query>, contextType: System.Type, exception: System.Exception): Rewrap<this, void>;
1075
+ ExecuteUpdateFailed(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Query>, contextType: System.Type, exception: System.Exception): Rewrap<this, void>;
1076
+ ExecutionStrategyRetrying(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Infrastructure>, exceptionsEncountered: System_Collections_Generic.IReadOnlyList_1<System.Exception>, delay: System.TimeSpan, async: boolean): Rewrap<this, void>;
1077
+ ExplicitTransactionEnlisted(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Database_Transaction>, connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Transactions.Transaction): Rewrap<this, void>;
1078
+ FirstWithoutOrderByAndFilterWarning(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Query>): Rewrap<this, void>;
1079
+ ForeignKeyAttributesOnBothNavigationsWarning(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Model>, firstNavigation: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyNavigation, secondNavigation: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyNavigation): Rewrap<this, void>;
1080
+ ForeignKeyAttributesOnBothPropertiesWarning(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Model>, firstNavigation: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyNavigation, secondNavigation: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyNavigation, firstProperty: System_Reflection.MemberInfo, secondProperty: System_Reflection.MemberInfo): Rewrap<this, void>;
1081
+ ForeignKeyChangeDetected(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_ChangeTracking>, internalEntityEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, property: Microsoft_EntityFrameworkCore_Metadata.IProperty, oldValue: unknown, newValue: unknown): Rewrap<this, void>;
1082
+ ForeignKeyChangeDetectedSensitive(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_ChangeTracking>, internalEntityEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, property: Microsoft_EntityFrameworkCore_Metadata.IProperty, oldValue: unknown, newValue: unknown): Rewrap<this, void>;
1083
+ ForeignKeyPropertiesMappedToUnrelatedTables(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Model_Validation>, foreignKey: Microsoft_EntityFrameworkCore_Metadata.IForeignKey): Rewrap<this, void>;
1084
+ ForeignKeyTpcPrincipalWarning(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Model_Validation>, foreignKey: Microsoft_EntityFrameworkCore_Metadata.IForeignKey): Rewrap<this, void>;
1085
+ IncompatibleMatchingForeignKeyProperties(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Model>, dependentToPrincipalNavigationSpecification: string, principalToDependentNavigationSpecification: string, foreignKeyProperties: System_Collections_Generic.IReadOnlyList_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyPropertyBase>, principalKeyProperties: System_Collections_Generic.IReadOnlyList_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyPropertyBase>): Rewrap<this, void>;
1086
+ IndexPropertiesBothMappedAndNotMappedToTable(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Model_Validation>, entityType: Microsoft_EntityFrameworkCore_Metadata.IEntityType, index: Microsoft_EntityFrameworkCore_Metadata.IIndex, unmappedPropertyName: string): Rewrap<this, void>;
1087
+ IndexPropertiesMappedToNonOverlappingTables(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Model_Validation>, entityType: Microsoft_EntityFrameworkCore_Metadata.IEntityType, index: Microsoft_EntityFrameworkCore_Metadata.IIndex, property1Name: string, tablesMappedToProperty1: System_Collections_Generic.List_1<System.ValueTuple_2<System_Internal.String, System_Internal.String>>, property2Name: string, tablesMappedToProperty2: System_Collections_Generic.List_1<System.ValueTuple_2<System_Internal.String, System_Internal.String>>): Rewrap<this, void>;
1088
+ InvalidIncludePathError(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Query>, navigationChain: string, navigationName: string): Rewrap<this, void>;
1089
+ KeyPropertiesNotMappedToTable(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Model_Validation>, key: Microsoft_EntityFrameworkCore_Metadata.IKey): Rewrap<this, void>;
1090
+ LazyLoadOnDisposedContextWarning(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Infrastructure>, context: Microsoft_EntityFrameworkCore.DbContext, entityType: unknown, navigationName: string): Rewrap<this, void>;
1091
+ ManyServiceProvidersCreatedWarning(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Infrastructure>, serviceProviders: System_Collections_Generic.ICollection_1<System.IServiceProvider>): Rewrap<this, void>;
1092
+ MappedComplexPropertyIgnoredWarning(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Model>, property: Microsoft_EntityFrameworkCore_Metadata.IComplexProperty): Rewrap<this, void>;
1093
+ MappedEntityTypeIgnoredWarning(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Model>, entityType: Microsoft_EntityFrameworkCore_Metadata.IEntityType): Rewrap<this, void>;
1094
+ MappedNavigationIgnoredWarning(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Model>, navigation: Microsoft_EntityFrameworkCore_Metadata.INavigationBase): Rewrap<this, void>;
1095
+ MappedPropertyIgnoredWarning(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Model>, property: Microsoft_EntityFrameworkCore_Metadata.IProperty): Rewrap<this, void>;
1096
+ MigrateUsingConnection(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Migrations>, migrator: Microsoft_EntityFrameworkCore_Migrations.IMigrator, connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection): Rewrap<this, void>;
1097
+ MigrationApplying(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Migrations>, migrator: Microsoft_EntityFrameworkCore_Migrations.IMigrator, migration: Microsoft_EntityFrameworkCore_Migrations.Migration): Rewrap<this, void>;
1098
+ MigrationAttributeMissingWarning(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Migrations>, migrationType: System_Reflection.TypeInfo): Rewrap<this, void>;
1099
+ MigrationGeneratingDownScript(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Migrations>, migrator: Microsoft_EntityFrameworkCore_Migrations.IMigrator, migration: Microsoft_EntityFrameworkCore_Migrations.Migration, fromMigration: string, toMigration: string, idempotent: boolean): Rewrap<this, void>;
1100
+ MigrationGeneratingUpScript(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Migrations>, migrator: Microsoft_EntityFrameworkCore_Migrations.IMigrator, migration: Microsoft_EntityFrameworkCore_Migrations.Migration, fromMigration: string, toMigration: string, idempotent: boolean): Rewrap<this, void>;
1101
+ MigrationReverting(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Migrations>, migrator: Microsoft_EntityFrameworkCore_Migrations.IMigrator, migration: Microsoft_EntityFrameworkCore_Migrations.Migration): Rewrap<this, void>;
1102
+ MigrationsNotApplied(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Migrations>, migrator: Microsoft_EntityFrameworkCore_Migrations.IMigrator): Rewrap<this, void>;
1103
+ MigrationsNotFound(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Migrations>, migrator: Microsoft_EntityFrameworkCore_Migrations.IMigrator, migrationsAssembly: Microsoft_EntityFrameworkCore_Migrations.IMigrationsAssembly): Rewrap<this, void>;
1104
+ MigrationsUserTransactionWarning(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Migrations>): Rewrap<this, void>;
1105
+ ModelSnapshotNotFound(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Migrations>, migrator: Microsoft_EntityFrameworkCore_Migrations.IMigrator, migrationsAssembly: Microsoft_EntityFrameworkCore_Migrations.IMigrationsAssembly): Rewrap<this, void>;
1106
+ ModelValidationKeyDefaultValueWarning(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Model_Validation>, property: Microsoft_EntityFrameworkCore_Metadata.IProperty): Rewrap<this, void>;
1107
+ MultipleCollectionIncludeWarning(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Query>): Rewrap<this, void>;
1108
+ MultipleInversePropertiesSameTargetWarning(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Model>, conflictingNavigations: System_Collections_Generic.IEnumerable_1<System.Tuple_2<System_Reflection.MemberInfo, System.Type>>, inverseNavigation: System_Reflection.MemberInfo, targetType: System.Type): Rewrap<this, void>;
1109
+ MultipleNavigationProperties(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Model>, firstPropertyCollection: System_Collections_Generic.IEnumerable_1<System.Tuple_2<System_Reflection.MemberInfo, System.Type>>, secondPropertyCollection: System_Collections_Generic.IEnumerable_1<System.Tuple_2<System_Reflection.MemberInfo, System.Type>>): Rewrap<this, void>;
1110
+ MultiplePrimaryKeyCandidates(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Model>, firstProperty: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty, secondProperty: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty): Rewrap<this, void>;
1111
+ NavigationBaseIncludeIgnored(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Query>, navigation: Microsoft_EntityFrameworkCore_Metadata.INavigationBase): Rewrap<this, void>;
1112
+ NavigationBaseIncluded(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Query>, navigation: Microsoft_EntityFrameworkCore_Metadata.INavigationBase): Rewrap<this, void>;
1113
+ NavigationLazyLoading(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Infrastructure>, context: Microsoft_EntityFrameworkCore.DbContext, entityType: unknown, navigationName: string): Rewrap<this, void>;
1114
+ NoEntityTypeConfigurationsWarning(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Model>, assembly: System_Reflection.Assembly): Rewrap<this, void>;
1115
+ NonDeterministicModel(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Migrations>, contextType: System.Type): Rewrap<this, void>;
1116
+ NonOwnershipInverseNavigationWarning(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Model>, declaringType: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType, navigation: System_Reflection.MemberInfo, targetType: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType, inverseNavigation: System_Reflection.MemberInfo, ownershipNavigation: System_Reflection.MemberInfo): Rewrap<this, void>;
1117
+ NonQueryOperationFailed(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Query>, contextType: System.Type, exception: System.Exception): Rewrap<this, void>;
1118
+ NonTransactionalMigrationOperationWarning(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Migrations>, migrator: Microsoft_EntityFrameworkCore_Migrations.IMigrator, migration: Microsoft_EntityFrameworkCore_Migrations.Migration, command: Microsoft_EntityFrameworkCore_Migrations.MigrationCommand): Rewrap<this, void>;
1119
+ OldModelVersionWarning(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Infrastructure>, context: Microsoft_EntityFrameworkCore.DbContext, contextOptions: Microsoft_EntityFrameworkCore.DbContextOptions): Rewrap<this, void>;
1120
+ OptimisticConcurrencyException(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Update>, context: Microsoft_EntityFrameworkCore.DbContext, entries: System_Collections_Generic.IReadOnlyList_1<Microsoft_EntityFrameworkCore_Update.IUpdateEntry>, exception: Microsoft_EntityFrameworkCore.DbUpdateConcurrencyException, createEventData: System.Func_5<Microsoft_EntityFrameworkCore.DbContext, Microsoft_EntityFrameworkCore.DbUpdateConcurrencyException, System_Collections_Generic.IReadOnlyList_1<Microsoft_EntityFrameworkCore_Update.IUpdateEntry>, Microsoft_EntityFrameworkCore_Diagnostics.EventDefinition_1<System.Exception>, Microsoft_EntityFrameworkCore_Diagnostics.ConcurrencyExceptionEventData>): Rewrap<this, Microsoft_EntityFrameworkCore_Diagnostics.InterceptionResult>;
1121
+ OptimisticConcurrencyExceptionAsync(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Update>, context: Microsoft_EntityFrameworkCore.DbContext, entries: System_Collections_Generic.IReadOnlyList_1<Microsoft_EntityFrameworkCore_Update.IUpdateEntry>, exception: Microsoft_EntityFrameworkCore.DbUpdateConcurrencyException, createEventData: System.Func_5<Microsoft_EntityFrameworkCore.DbContext, Microsoft_EntityFrameworkCore.DbUpdateConcurrencyException, System_Collections_Generic.IReadOnlyList_1<Microsoft_EntityFrameworkCore_Update.IUpdateEntry>, Microsoft_EntityFrameworkCore_Diagnostics.EventDefinition_1<System.Exception>, Microsoft_EntityFrameworkCore_Diagnostics.ConcurrencyExceptionEventData>, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.ValueTask_1<Microsoft_EntityFrameworkCore_Diagnostics.InterceptionResult>>;
1122
+ OptionalDependentWithAllNullPropertiesWarning(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Update>, entry: Microsoft_EntityFrameworkCore_Update.IUpdateEntry): Rewrap<this, void>;
1123
+ OptionalDependentWithAllNullPropertiesWarningSensitive(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Update>, entry: Microsoft_EntityFrameworkCore_Update.IUpdateEntry): Rewrap<this, void>;
1124
+ OptionalDependentWithoutIdentifyingPropertyWarning(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Model_Validation>, entityType: Microsoft_EntityFrameworkCore_Metadata.IEntityType): Rewrap<this, void>;
1125
+ PendingModelChangesWarning(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Migrations>, contextType: System.Type): Rewrap<this, void>;
1126
+ PossibleIncorrectRequiredNavigationWithQueryFilterInteractionWarning(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Model_Validation>, foreignKey: Microsoft_EntityFrameworkCore_Metadata.IForeignKey): Rewrap<this, void>;
1127
+ PossibleUnintendedCollectionNavigationNullComparisonWarning(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Query>, navigation: Microsoft_EntityFrameworkCore_Metadata.INavigation): Rewrap<this, void>;
1128
+ PossibleUnintendedReferenceComparisonWarning(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Query>, left: System_Linq_Expressions.Expression, right: System_Linq_Expressions.Expression): Rewrap<this, void>;
1129
+ PropertyChangeDetected(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_ChangeTracking>, internalEntityEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, property: Microsoft_EntityFrameworkCore_Metadata.IProperty, oldValue: unknown, newValue: unknown): Rewrap<this, void>;
1130
+ PropertyChangeDetectedSensitive(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_ChangeTracking>, internalEntityEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, property: Microsoft_EntityFrameworkCore_Metadata.IProperty, oldValue: unknown, newValue: unknown): Rewrap<this, void>;
1131
+ QueryCanceled(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Query>, contextType: System.Type): Rewrap<this, void>;
1132
+ QueryCompilationStarting(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Query>, context: Microsoft_EntityFrameworkCore.DbContext, expressionPrinter: Microsoft_EntityFrameworkCore_Query.ExpressionPrinter, queryExpression: System_Linq_Expressions.Expression): Rewrap<this, System.ValueTuple_2<System_Linq_Expressions.Expression, Microsoft_EntityFrameworkCore_Diagnostics.QueryExpressionEventData>>;
1133
+ QueryExecutionPlanned(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Query>, context: Microsoft_EntityFrameworkCore.DbContext, expressionPrinter: Microsoft_EntityFrameworkCore_Query.ExpressionPrinter, queryExecutorExpression: System_Linq_Expressions.Expression): Rewrap<this, void>;
1134
+ QueryIterationFailed(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Query>, contextType: System.Type, exception: System.Exception): Rewrap<this, void>;
1135
+ QueryPossibleUnintendedUseOfEqualsWarning(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Query>, left: Microsoft_EntityFrameworkCore_Query_SqlExpressions.SqlExpression, right: Microsoft_EntityFrameworkCore_Query_SqlExpressions.SqlExpression): Rewrap<this, void>;
1136
+ RedundantAddServicesCallWarning(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Infrastructure>, serviceProvider: System.IServiceProvider): Rewrap<this, void>;
1137
+ RedundantForeignKeyWarning(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Model_Validation>, redundantForeignKey: Microsoft_EntityFrameworkCore_Metadata.IForeignKey): Rewrap<this, void>;
1138
+ RedundantIndexRemoved(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Model>, redundantIndex: System_Collections_Generic.IReadOnlyList_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyPropertyBase>, otherIndex: System_Collections_Generic.IReadOnlyList_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyPropertyBase>): Rewrap<this, void>;
1139
+ ReferenceChangeDetected(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_ChangeTracking>, internalEntityEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, navigation: Microsoft_EntityFrameworkCore_Metadata.INavigation, oldValue: unknown, newValue: unknown): Rewrap<this, void>;
1140
+ ReferenceChangeDetectedSensitive(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_ChangeTracking>, internalEntityEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, navigation: Microsoft_EntityFrameworkCore_Metadata.INavigation, oldValue: unknown, newValue: unknown): Rewrap<this, void>;
1141
+ ReleasedTransactionSavepoint(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Database_Transaction>, connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset): Rewrap<this, void>;
1142
+ ReleasedTransactionSavepointAsync(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Database_Transaction>, connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
1143
+ ReleasingTransactionSavepoint(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Database_Transaction>, connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset): Rewrap<this, Microsoft_EntityFrameworkCore_Diagnostics.InterceptionResult>;
1144
+ ReleasingTransactionSavepointAsync(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Database_Transaction>, connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.ValueTask_1<Microsoft_EntityFrameworkCore_Diagnostics.InterceptionResult>>;
1145
+ RequiredAttributeOnCollection(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Model>, navigation: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyNavigation): Rewrap<this, void>;
1146
+ RequiredAttributeOnSkipNavigation(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Model>, navigation: Microsoft_EntityFrameworkCore_Metadata.IReadOnlySkipNavigation): Rewrap<this, void>;
1147
+ RolledBackToTransactionSavepoint(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Database_Transaction>, connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset): Rewrap<this, void>;
1148
+ RolledBackToTransactionSavepointAsync(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Database_Transaction>, connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
1149
+ RollingBackToTransactionSavepoint(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Database_Transaction>, connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset): Rewrap<this, Microsoft_EntityFrameworkCore_Diagnostics.InterceptionResult>;
1150
+ RollingBackToTransactionSavepointAsync(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Database_Transaction>, connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.ValueTask_1<Microsoft_EntityFrameworkCore_Diagnostics.InterceptionResult>>;
1151
+ RowLimitingOperationWithoutOrderByWarning(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Query>): Rewrap<this, void>;
1152
+ SaveChangesCanceled(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Update>, context: Microsoft_EntityFrameworkCore.DbContext): Rewrap<this, void>;
1153
+ SaveChangesCanceledAsync(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Update>, context: Microsoft_EntityFrameworkCore.DbContext, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
1154
+ SaveChangesCompleted(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Update>, context: Microsoft_EntityFrameworkCore.DbContext, entitiesSavedCount: int): Rewrap<this, int>;
1155
+ SaveChangesCompletedAsync(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Update>, context: Microsoft_EntityFrameworkCore.DbContext, entitiesSavedCount: int, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.ValueTask_1<System_Internal.Int32>>;
1156
+ SaveChangesFailed(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Update>, context: Microsoft_EntityFrameworkCore.DbContext, exception: System.Exception): Rewrap<this, void>;
1157
+ SaveChangesFailedAsync(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Update>, context: Microsoft_EntityFrameworkCore.DbContext, exception: System.Exception, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
1158
+ SaveChangesStarting(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Update>, context: Microsoft_EntityFrameworkCore.DbContext): Rewrap<this, Microsoft_EntityFrameworkCore_Diagnostics.InterceptionResult_1<System_Internal.Int32>>;
1159
+ SaveChangesStartingAsync(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Update>, context: Microsoft_EntityFrameworkCore.DbContext, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.ValueTask_1<Microsoft_EntityFrameworkCore_Diagnostics.InterceptionResult_1<System_Internal.Int32>>>;
1160
+ SensitiveDataLoggingEnabledWarning<TLoggerCategory>(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<TLoggerCategory>): Rewrap<this, void>;
1161
+ ServiceProviderCreated(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Infrastructure>, serviceProvider: System.IServiceProvider): Rewrap<this, void>;
1162
+ ServiceProviderDebugInfo(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Infrastructure>, newDebugInfo: System_Collections_Generic.IDictionary_2<System_Internal.String, System_Internal.String>, cachedDebugInfos: System_Collections_Generic.IList_1<System_Collections_Generic.IDictionary_2<System_Internal.String, System_Internal.String>>): Rewrap<this, void>;
1163
+ ShadowForeignKeyPropertyCreated(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Model_Validation>, property: Microsoft_EntityFrameworkCore_Metadata.IProperty, basePropertyName: string): Rewrap<this, void>;
1164
+ ShadowPropertyCreated(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Model_Validation>, property: Microsoft_EntityFrameworkCore_Metadata.IProperty): Rewrap<this, void>;
1165
+ SkipCollectionChangeDetected(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_ChangeTracking>, internalEntityEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, navigation: Microsoft_EntityFrameworkCore_Metadata.ISkipNavigation, added: System_Collections_Generic.ISet_1<unknown>, removed: System_Collections_Generic.ISet_1<unknown>): Rewrap<this, void>;
1166
+ SkipCollectionChangeDetectedSensitive(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_ChangeTracking>, internalEntityEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, navigation: Microsoft_EntityFrameworkCore_Metadata.ISkipNavigation, added: System_Collections_Generic.ISet_1<unknown>, removed: System_Collections_Generic.ISet_1<unknown>): Rewrap<this, void>;
1167
+ SkippedEntityTypeConfigurationWarning(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Model>, type: System.Type): Rewrap<this, void>;
1168
+ StartedTracking(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_ChangeTracking>, internalEntityEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry): Rewrap<this, void>;
1169
+ StartedTrackingSensitive(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_ChangeTracking>, internalEntityEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry): Rewrap<this, void>;
1170
+ StateChanged(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_ChangeTracking>, internalEntityEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, oldState: Microsoft_EntityFrameworkCore.EntityState, newState: Microsoft_EntityFrameworkCore.EntityState): Rewrap<this, void>;
1171
+ StateChangedSensitive(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_ChangeTracking>, internalEntityEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, oldState: Microsoft_EntityFrameworkCore.EntityState, newState: Microsoft_EntityFrameworkCore.EntityState): Rewrap<this, void>;
1172
+ StoredProcedureConcurrencyTokenNotMapped(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Model_Validation>, entityType: Microsoft_EntityFrameworkCore_Metadata.IEntityType, concurrencyProperty: Microsoft_EntityFrameworkCore_Metadata.IProperty, storedProcedureName: string): Rewrap<this, void>;
1173
+ StringEnumValueInJson(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Query>, enumType: System.Type): Rewrap<this, void>;
1174
+ TpcStoreGeneratedIdentityWarning(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Model_Validation>, property: Microsoft_EntityFrameworkCore_Metadata.IProperty): Rewrap<this, void>;
1175
+ TransactionCommitted(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Database_Transaction>, connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset, duration: System.TimeSpan): Rewrap<this, void>;
1176
+ TransactionCommittedAsync(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Database_Transaction>, connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset, duration: System.TimeSpan, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
1177
+ TransactionCommitting(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Database_Transaction>, connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset): Rewrap<this, Microsoft_EntityFrameworkCore_Diagnostics.InterceptionResult>;
1178
+ TransactionCommittingAsync(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Database_Transaction>, connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.ValueTask_1<Microsoft_EntityFrameworkCore_Diagnostics.InterceptionResult>>;
1179
+ TransactionDisposed(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Database_Transaction>, connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset): Rewrap<this, void>;
1180
+ TransactionError(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Database_Transaction>, connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, action: string, exception: System.Exception, startTime: System.DateTimeOffset, duration: System.TimeSpan): Rewrap<this, void>;
1181
+ TransactionErrorAsync(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Database_Transaction>, connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, action: string, exception: System.Exception, startTime: System.DateTimeOffset, duration: System.TimeSpan, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
1182
+ TransactionRolledBack(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Database_Transaction>, connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset, duration: System.TimeSpan): Rewrap<this, void>;
1183
+ TransactionRolledBackAsync(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Database_Transaction>, connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset, duration: System.TimeSpan, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
1184
+ TransactionRollingBack(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Database_Transaction>, connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset): Rewrap<this, Microsoft_EntityFrameworkCore_Diagnostics.InterceptionResult>;
1185
+ TransactionRollingBackAsync(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Database_Transaction>, connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.ValueTask_1<Microsoft_EntityFrameworkCore_Diagnostics.InterceptionResult>>;
1186
+ TransactionStarted(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Database_Transaction>, connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset, duration: System.TimeSpan): Rewrap<this, System_Data_Common.DbTransaction>;
1187
+ TransactionStartedAsync(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Database_Transaction>, connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset, duration: System.TimeSpan, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.ValueTask_1<System_Data_Common.DbTransaction>>;
1188
+ TransactionStarting(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Database_Transaction>, connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, isolationLevel: System_Data.IsolationLevel, transactionId: System.Guid, startTime: System.DateTimeOffset): Rewrap<this, Microsoft_EntityFrameworkCore_Diagnostics.InterceptionResult_1<System_Data_Common.DbTransaction>>;
1189
+ TransactionStartingAsync(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Database_Transaction>, connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, isolationLevel: System_Data.IsolationLevel, transactionId: System.Guid, startTime: System.DateTimeOffset, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.ValueTask_1<Microsoft_EntityFrameworkCore_Diagnostics.InterceptionResult_1<System_Data_Common.DbTransaction>>>;
1190
+ TransactionUsed(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Database_Transaction>, connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset): Rewrap<this, System_Data_Common.DbTransaction>;
1191
+ TransactionUsedAsync(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Database_Transaction>, connection: Microsoft_EntityFrameworkCore_Storage.IRelationalConnection, transaction: System_Data_Common.DbTransaction, transactionId: System.Guid, startTime: System.DateTimeOffset, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.ValueTask_1<System_Data_Common.DbTransaction>>;
1192
+ TriggerOnNonRootTphEntity(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Model_Validation>, entityType: Microsoft_EntityFrameworkCore_Metadata.IEntityType): Rewrap<this, void>;
1193
+ TypeLoadingErrorWarning(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Model>, assembly: System_Reflection.Assembly, exception: System.Exception): Rewrap<this, void>;
1194
+ UnexpectedTrailingResultSetWhenSaving(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Update>): Rewrap<this, void>;
1195
+ ValueGenerated(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_ChangeTracking>, internalEntityEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, property: Microsoft_EntityFrameworkCore_Metadata.IProperty, value: unknown, temporary: boolean): Rewrap<this, void>;
1196
+ ValueGeneratedSensitive(this: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_ChangeTracking>, internalEntityEntry: Microsoft_EntityFrameworkCore_ChangeTracking_Internal.InternalEntityEntry, property: Microsoft_EntityFrameworkCore_Metadata.IProperty, value: unknown, temporary: boolean): Rewrap<this, void>;
1197
+ }
2120
1198
 
2121
1199
  // Generic helper type for extension methods in namespace: Microsoft.EntityFrameworkCore.Diagnostics
2122
- type __TsonicExtSurface_Microsoft_EntityFrameworkCore_Diagnostics<TShape> =
2123
- (
2124
- (TShape extends Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_Diagnostics_IDiagnosticsLogger_1<T0> : {})
2125
- );
2126
-
2127
1200
  interface __TsonicExtApplier_Microsoft_EntityFrameworkCore_Diagnostics {
2128
1201
  __tsonic_shape: unknown;
2129
- __tsonic_type: __TsonicExtSurface_Microsoft_EntityFrameworkCore_Diagnostics<this["__tsonic_shape"]>;
1202
+ __tsonic_type: __TsonicExtMethods_Microsoft_EntityFrameworkCore_Diagnostics;
2130
1203
  }
2131
1204
 
2132
1205
  export type ExtensionMethods_Microsoft_EntityFrameworkCore_Diagnostics<TShape> =
2133
1206
  TShape extends null | undefined ? TShape
2134
1207
  : TShape extends void ? void
2135
- : TShape & __TsonicWithExt<TShape, "Microsoft.EntityFrameworkCore.Diagnostics", __TsonicExtApplier_Microsoft_EntityFrameworkCore_Diagnostics> & __TsonicExtSurface_Microsoft_EntityFrameworkCore_Diagnostics<TShape>;
1208
+ : TShape & __TsonicWithExt<TShape, "Microsoft.EntityFrameworkCore.Diagnostics", __TsonicExtApplier_Microsoft_EntityFrameworkCore_Diagnostics> & __TsonicExtMethods_Microsoft_EntityFrameworkCore_Diagnostics;
1209
+
1210
+ // Extension method table for namespace: Microsoft.EntityFrameworkCore.Infrastructure
1211
+ interface __TsonicExtMethods_Microsoft_EntityFrameworkCore_Infrastructure {
1212
+ Assign(this: System_Linq_Expressions.MemberExpression, valueExpression: System_Linq_Expressions.Expression): Rewrap<this, System_Linq_Expressions.Expression>;
1213
+ CreateEFPropertyExpression(this: System_Linq_Expressions.Expression, property: Microsoft_EntityFrameworkCore_Metadata.IPropertyBase, makeNullable?: boolean): Rewrap<this, System_Linq_Expressions.Expression>;
1214
+ CreateKeyValuesExpression(this: System_Linq_Expressions.Expression, properties: System_Collections_Generic.IReadOnlyList_1<Microsoft_EntityFrameworkCore_Metadata.IProperty>, makeNullable?: boolean): Rewrap<this, System_Linq_Expressions.Expression>;
1215
+ CreateValueBufferReadValueExpression(this: System_Linq_Expressions.Expression, type: System.Type, index: int, property: Microsoft_EntityFrameworkCore_Metadata.IPropertyBase): Rewrap<this, System_Linq_Expressions.Expression>;
1216
+ FormatColumns(this: System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty>, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string>;
1217
+ GetColumnNames(this: System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty>, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System_Collections_Generic.IReadOnlyList_1<System_Internal.String> | undefined>;
1218
+ GetInfrastructure<T>(this: Microsoft_EntityFrameworkCore_Infrastructure.IInfrastructure_1<T>): Rewrap<this, T>;
1219
+ GetMemberAccess(this: System_Linq_Expressions.LambdaExpression): Rewrap<this, System_Reflection.MemberInfo>;
1220
+ GetMemberAccessList(this: System_Linq_Expressions.LambdaExpression): Rewrap<this, System_Collections_Generic.IReadOnlyList_1<System_Reflection.MemberInfo>>;
1221
+ GetPropertyAccess(this: System_Linq_Expressions.LambdaExpression): Rewrap<this, System_Reflection.PropertyInfo>;
1222
+ GetPropertyAccessList(this: System_Linq_Expressions.LambdaExpression): Rewrap<this, System_Collections_Generic.IReadOnlyList_1<System_Reflection.PropertyInfo>>;
1223
+ GetRelationalDependencies(this: Microsoft_EntityFrameworkCore_Metadata.IModel, methodName?: string): Rewrap<this, Microsoft_EntityFrameworkCore_Infrastructure.RelationalModelDependencies>;
1224
+ GetService<TService>(this: Microsoft_EntityFrameworkCore_Infrastructure.IInfrastructure_1<System.IServiceProvider>): Rewrap<this, TService>;
1225
+ GetService(this: Microsoft_EntityFrameworkCore_Infrastructure.IInfrastructure_1<System.IServiceProvider>, serviceType: System.Type): Rewrap<this, unknown>;
1226
+ IsEFPropertyMethod(this: System_Reflection.MethodInfo): Rewrap<this, boolean>;
1227
+ Load<TRelated>(this: Microsoft_EntityFrameworkCore_Infrastructure.ILazyLoader, entity: unknown, navigationField: TRelated, navigationName?: string): Rewrap<this, TRelated | undefined>;
1228
+ MakeMemberAccess(this: System_Linq_Expressions.Expression, member: System_Reflection.MemberInfo): Rewrap<this, System_Linq_Expressions.MemberExpression>;
1229
+ Print(this: System_Linq_Expressions.Expression, characterLimit?: System.Nullable_1<System_Internal.Int32>): Rewrap<this, string>;
1230
+ ShortDisplayName(this: System.Type): Rewrap<this, string>;
1231
+ TryGetEFPropertyArguments(this: System_Linq_Expressions.MethodCallExpression, entityExpression: System_Linq_Expressions.Expression, propertyName: string): Rewrap<this, boolean>;
1232
+ TryGetIndexerArguments(this: System_Linq_Expressions.MethodCallExpression, model: Microsoft_EntityFrameworkCore_Metadata.IModel, entityExpression: System_Linq_Expressions.Expression, propertyName: string): Rewrap<this, boolean>;
1233
+ }
2136
1234
 
2137
1235
  // Generic helper type for extension methods in namespace: Microsoft.EntityFrameworkCore.Infrastructure
2138
- type __TsonicExtSurface_Microsoft_EntityFrameworkCore_Infrastructure<TShape> =
2139
- (
2140
- (TShape extends Microsoft_EntityFrameworkCore_Infrastructure.IInfrastructure_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1<T0> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Infrastructure.ILazyLoader ? __Ext_Microsoft_EntityFrameworkCore_Infrastructure_ILazyLoader : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IModel ? __Ext_Microsoft_EntityFrameworkCore_Infrastructure_IModel : {}) & (TShape extends System.Type ? __Ext_Microsoft_EntityFrameworkCore_Infrastructure_Type : {}) & (TShape extends System_Collections_Generic.IEnumerable_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_Infrastructure_IEnumerable_1<T0> : {}) & (TShape extends System_Linq_Expressions.Expression ? __Ext_Microsoft_EntityFrameworkCore_Infrastructure_Expression : {}) & (TShape extends System_Linq_Expressions.LambdaExpression ? __Ext_Microsoft_EntityFrameworkCore_Infrastructure_LambdaExpression : {}) & (TShape extends System_Linq_Expressions.MemberExpression ? __Ext_Microsoft_EntityFrameworkCore_Infrastructure_MemberExpression : {}) & (TShape extends System_Linq_Expressions.MethodCallExpression ? __Ext_Microsoft_EntityFrameworkCore_Infrastructure_MethodCallExpression : {}) & (TShape extends System_Reflection.MethodInfo ? __Ext_Microsoft_EntityFrameworkCore_Infrastructure_MethodInfo : {}) & (TShape extends (infer T)[] ? __Ext_Microsoft_EntityFrameworkCore_Infrastructure_IEnumerable_1<T> : {})
2141
- );
2142
-
2143
1236
  interface __TsonicExtApplier_Microsoft_EntityFrameworkCore_Infrastructure {
2144
1237
  __tsonic_shape: unknown;
2145
- __tsonic_type: __TsonicExtSurface_Microsoft_EntityFrameworkCore_Infrastructure<this["__tsonic_shape"]>;
1238
+ __tsonic_type: __TsonicExtMethods_Microsoft_EntityFrameworkCore_Infrastructure;
2146
1239
  }
2147
1240
 
2148
1241
  export type ExtensionMethods_Microsoft_EntityFrameworkCore_Infrastructure<TShape> =
2149
1242
  TShape extends null | undefined ? TShape
2150
1243
  : TShape extends void ? void
2151
- : TShape & __TsonicWithExt<TShape, "Microsoft.EntityFrameworkCore.Infrastructure", __TsonicExtApplier_Microsoft_EntityFrameworkCore_Infrastructure> & __TsonicExtSurface_Microsoft_EntityFrameworkCore_Infrastructure<TShape>;
1244
+ : TShape extends (infer T)[] ? (TShape & System_Collections_Generic.IEnumerable_1<T> & __TsonicWithExt<TShape, "Microsoft.EntityFrameworkCore.Infrastructure", __TsonicExtApplier_Microsoft_EntityFrameworkCore_Infrastructure> & __TsonicExtMethods_Microsoft_EntityFrameworkCore_Infrastructure)
1245
+ : TShape & __TsonicWithExt<TShape, "Microsoft.EntityFrameworkCore.Infrastructure", __TsonicExtApplier_Microsoft_EntityFrameworkCore_Infrastructure> & __TsonicExtMethods_Microsoft_EntityFrameworkCore_Infrastructure;
2152
1246
 
2153
- // Generic helper type for extension methods in namespace: Microsoft.EntityFrameworkCore.Infrastructure.Internal
2154
- type __TsonicExtSurface_Microsoft_EntityFrameworkCore_Infrastructure_Internal<TShape> =
2155
- (
2156
- (TShape extends Microsoft_EntityFrameworkCore_Infrastructure.IDbContextOptions ? __Ext_Microsoft_EntityFrameworkCore_Infrastructure_Internal_IDbContextOptions : {})
2157
- );
1247
+ // Extension method table for namespace: Microsoft.EntityFrameworkCore.Infrastructure.Internal
1248
+ interface __TsonicExtMethods_Microsoft_EntityFrameworkCore_Infrastructure_Internal {
1249
+ BuildOptionsFragment(this: Microsoft_EntityFrameworkCore_Infrastructure.IDbContextOptions): Rewrap<this, string>;
1250
+ }
2158
1251
 
1252
+ // Generic helper type for extension methods in namespace: Microsoft.EntityFrameworkCore.Infrastructure.Internal
2159
1253
  interface __TsonicExtApplier_Microsoft_EntityFrameworkCore_Infrastructure_Internal {
2160
1254
  __tsonic_shape: unknown;
2161
- __tsonic_type: __TsonicExtSurface_Microsoft_EntityFrameworkCore_Infrastructure_Internal<this["__tsonic_shape"]>;
1255
+ __tsonic_type: __TsonicExtMethods_Microsoft_EntityFrameworkCore_Infrastructure_Internal;
2162
1256
  }
2163
1257
 
2164
1258
  export type ExtensionMethods_Microsoft_EntityFrameworkCore_Infrastructure_Internal<TShape> =
2165
1259
  TShape extends null | undefined ? TShape
2166
1260
  : TShape extends void ? void
2167
- : TShape & __TsonicWithExt<TShape, "Microsoft.EntityFrameworkCore.Infrastructure.Internal", __TsonicExtApplier_Microsoft_EntityFrameworkCore_Infrastructure_Internal> & __TsonicExtSurface_Microsoft_EntityFrameworkCore_Infrastructure_Internal<TShape>;
1261
+ : TShape & __TsonicWithExt<TShape, "Microsoft.EntityFrameworkCore.Infrastructure.Internal", __TsonicExtApplier_Microsoft_EntityFrameworkCore_Infrastructure_Internal> & __TsonicExtMethods_Microsoft_EntityFrameworkCore_Infrastructure_Internal;
1262
+
1263
+ // Extension method table for namespace: Microsoft.EntityFrameworkCore.Internal
1264
+ interface __TsonicExtMethods_Microsoft_EntityFrameworkCore_Internal {
1265
+ ConfigureConventions(this: Microsoft_EntityFrameworkCore.DbContext, configurationBuilder: Microsoft_EntityFrameworkCore.ModelConfigurationBuilder): Rewrap<this, void>;
1266
+ DisplayName(this: Microsoft_EntityFrameworkCore_Metadata_Internal.TypeBase): Rewrap<this, string>;
1267
+ DisplayName(this: System_Reflection.MethodInfo): Rewrap<this, string>;
1268
+ EnsureRelationalModel(this: Microsoft_EntityFrameworkCore_Metadata.IModel): Rewrap<this, void>;
1269
+ FindIndexerProperty(this: System.Type): Rewrap<this, System_Reflection.PropertyInfo | undefined>;
1270
+ FormatTable(this: System.ValueTuple_2<System_Internal.String, System_Internal.String>): Rewrap<this, string>;
1271
+ FormatTables(this: System_Collections_Generic.IEnumerable_1<System.ValueTuple_2<System_Internal.String, System_Internal.String>>): Rewrap<this, string>;
1272
+ GenerateParameterName(this: System.Type): Rewrap<this, string>;
1273
+ GetComplexProperty(this: Microsoft_EntityFrameworkCore_Metadata.ITypeBase, name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IComplexProperty>;
1274
+ GetDependencies(this: Microsoft_EntityFrameworkCore_Infrastructure.ICurrentDbContext): Rewrap<this, Microsoft_EntityFrameworkCore_Internal.IDbContextDependencies>;
1275
+ GetDependencies(this: Microsoft_EntityFrameworkCore_Internal.IDbContextDependencies): Rewrap<this, Microsoft_EntityFrameworkCore_Internal.IDbContextDependencies>;
1276
+ GetFieldInfo(this: System.Type, fieldName: string): Rewrap<this, System_Reflection.FieldInfo | undefined>;
1277
+ GetLambdaOrNull(this: System_Linq_Expressions.Expression): Rewrap<this, System_Linq_Expressions.LambdaExpression | undefined>;
1278
+ GetOwnedName(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyTypeBase, simpleName: string, ownershipNavigation: string): Rewrap<this, string>;
1279
+ GetRuntimeFields(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyTypeBase): Rewrap<this, System_Collections_Generic.IReadOnlyDictionary_2<System_Internal.String, System_Reflection.FieldInfo>>;
1280
+ GetRuntimeProperties(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyTypeBase): Rewrap<this, System_Collections_Generic.IReadOnlyDictionary_2<System_Internal.String, System_Reflection.PropertyInfo>>;
1281
+ IsAdHoc(this: Microsoft_EntityFrameworkCore_Metadata.IEntityType): Rewrap<this, boolean>;
1282
+ IsDefaultValue(this: System.Type, value: unknown): Rewrap<this, boolean>;
1283
+ IsLogicalNot(this: System_Linq_Expressions.UnaryExpression): Rewrap<this, boolean>;
1284
+ IsLogicalOperation(this: System_Linq_Expressions.Expression): Rewrap<this, boolean>;
1285
+ MakeHasSentinel(this: System_Linq_Expressions.Expression, propertyBase: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyPropertyBase): Rewrap<this, System_Linq_Expressions.Expression>;
1286
+ MatchMemberAccessList<TMemberInfo>(this: System_Linq_Expressions.LambdaExpression, memberMatcher: System.Func_3<System_Linq_Expressions.Expression, System_Linq_Expressions.Expression, TMemberInfo>): Rewrap<this, System_Collections_Generic.IReadOnlyList_1<TMemberInfo> | undefined>;
1287
+ MatchSimpleMemberAccess<TMemberInfo>(this: System_Linq_Expressions.Expression, memberAccessExpression: System_Linq_Expressions.Expression): Rewrap<this, TMemberInfo | undefined>;
1288
+ MethodIsClosedFormOf(this: System_Reflection.MethodInfo, genericMethod: System_Reflection.MethodInfo): Rewrap<this, boolean>;
1289
+ RemoveTypeAs(this: System_Linq_Expressions.Expression): Rewrap<this, System_Linq_Expressions.Expression | undefined>;
1290
+ RentAndPopulateRelationalCommand(this: Microsoft_EntityFrameworkCore_Query_Internal.RelationalCommandResolver, queryContext: Microsoft_EntityFrameworkCore_Query.RelationalQueryContext): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.IRelationalCommand>;
1291
+ ShortName(this: Microsoft_EntityFrameworkCore_Metadata_Internal.TypeBase): Rewrap<this, string>;
1292
+ }
2168
1293
 
2169
1294
  // Generic helper type for extension methods in namespace: Microsoft.EntityFrameworkCore.Internal
2170
- type __TsonicExtSurface_Microsoft_EntityFrameworkCore_Internal<TShape> =
2171
- (
2172
- (TShape extends Microsoft_EntityFrameworkCore.DbContext ? __Ext_Microsoft_EntityFrameworkCore_Internal_DbContext : {}) & (TShape extends Microsoft_EntityFrameworkCore_Infrastructure.ICurrentDbContext ? __Ext_Microsoft_EntityFrameworkCore_Internal_ICurrentDbContext : {}) & (TShape extends Microsoft_EntityFrameworkCore_Internal.IDbContextDependencies ? __Ext_Microsoft_EntityFrameworkCore_Internal_IDbContextDependencies : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IEntityType ? __Ext_Microsoft_EntityFrameworkCore_Internal_IEntityType : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IModel ? __Ext_Microsoft_EntityFrameworkCore_Internal_IModel : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyTypeBase ? __Ext_Microsoft_EntityFrameworkCore_Internal_IReadOnlyTypeBase : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.ITypeBase ? __Ext_Microsoft_EntityFrameworkCore_Internal_ITypeBase : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Internal.TypeBase ? __Ext_Microsoft_EntityFrameworkCore_Internal_TypeBase : {}) & (TShape extends Microsoft_EntityFrameworkCore_Query_Internal.RelationalCommandResolver ? __Ext_Microsoft_EntityFrameworkCore_Internal_RelationalCommandResolver : {}) & (TShape extends System.Type ? __Ext_Microsoft_EntityFrameworkCore_Internal_Type : {}) & (TShape extends System.ValueTuple_2<infer T0, infer T1> ? __Ext_Microsoft_EntityFrameworkCore_Internal_ValueTuple_2<T0, T1> : {}) & (TShape extends System_Collections_Generic.IEnumerable_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_Internal_IEnumerable_1<T0> : {}) & (TShape extends System_Linq_Expressions.Expression ? __Ext_Microsoft_EntityFrameworkCore_Internal_Expression : {}) & (TShape extends System_Linq_Expressions.LambdaExpression ? __Ext_Microsoft_EntityFrameworkCore_Internal_LambdaExpression : {}) & (TShape extends System_Linq_Expressions.UnaryExpression ? __Ext_Microsoft_EntityFrameworkCore_Internal_UnaryExpression : {}) & (TShape extends System_Reflection.MethodInfo ? __Ext_Microsoft_EntityFrameworkCore_Internal_MethodInfo : {}) & (TShape extends (infer T)[] ? __Ext_Microsoft_EntityFrameworkCore_Internal_IEnumerable_1<T> : {})
2173
- );
2174
-
2175
1295
  interface __TsonicExtApplier_Microsoft_EntityFrameworkCore_Internal {
2176
1296
  __tsonic_shape: unknown;
2177
- __tsonic_type: __TsonicExtSurface_Microsoft_EntityFrameworkCore_Internal<this["__tsonic_shape"]>;
1297
+ __tsonic_type: __TsonicExtMethods_Microsoft_EntityFrameworkCore_Internal;
2178
1298
  }
2179
1299
 
2180
1300
  export type ExtensionMethods_Microsoft_EntityFrameworkCore_Internal<TShape> =
2181
1301
  TShape extends null | undefined ? TShape
2182
1302
  : TShape extends void ? void
2183
- : TShape & __TsonicWithExt<TShape, "Microsoft.EntityFrameworkCore.Internal", __TsonicExtApplier_Microsoft_EntityFrameworkCore_Internal> & __TsonicExtSurface_Microsoft_EntityFrameworkCore_Internal<TShape>;
1303
+ : TShape extends (infer T)[] ? (TShape & System_Collections_Generic.IEnumerable_1<T> & __TsonicWithExt<TShape, "Microsoft.EntityFrameworkCore.Internal", __TsonicExtApplier_Microsoft_EntityFrameworkCore_Internal> & __TsonicExtMethods_Microsoft_EntityFrameworkCore_Internal)
1304
+ : TShape & __TsonicWithExt<TShape, "Microsoft.EntityFrameworkCore.Internal", __TsonicExtApplier_Microsoft_EntityFrameworkCore_Internal> & __TsonicExtMethods_Microsoft_EntityFrameworkCore_Internal;
2184
1305
 
2185
- // Generic helper type for extension methods in namespace: Microsoft.EntityFrameworkCore.Metadata
2186
- type __TsonicExtSurface_Microsoft_EntityFrameworkCore_Metadata<TShape> =
2187
- (
2188
- (TShape extends Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource ? __Ext_Microsoft_EntityFrameworkCore_Metadata_ConfigurationSource : {}) & (TShape extends System.Nullable_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Nullable_1<T0> : {})
2189
- );
1306
+ // Extension method table for namespace: Microsoft.EntityFrameworkCore.Metadata
1307
+ interface __TsonicExtMethods_Microsoft_EntityFrameworkCore_Metadata {
1308
+ Max(this: Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource, right: System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>;
1309
+ Max(this: System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>, right: System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
1310
+ Overrides(this: Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource, oldConfigurationSource: System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>): Rewrap<this, boolean>;
1311
+ Overrides(this: System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>, oldConfigurationSource: System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>): Rewrap<this, boolean>;
1312
+ OverridesStrictly(this: Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource, oldConfigurationSource: System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>): Rewrap<this, boolean>;
1313
+ OverridesStrictly(this: System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>, oldConfigurationSource: System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>): Rewrap<this, boolean>;
1314
+ }
2190
1315
 
1316
+ // Generic helper type for extension methods in namespace: Microsoft.EntityFrameworkCore.Metadata
2191
1317
  interface __TsonicExtApplier_Microsoft_EntityFrameworkCore_Metadata {
2192
1318
  __tsonic_shape: unknown;
2193
- __tsonic_type: __TsonicExtSurface_Microsoft_EntityFrameworkCore_Metadata<this["__tsonic_shape"]>;
1319
+ __tsonic_type: __TsonicExtMethods_Microsoft_EntityFrameworkCore_Metadata;
2194
1320
  }
2195
1321
 
2196
1322
  export type ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata<TShape> =
2197
1323
  TShape extends null | undefined ? TShape
2198
1324
  : TShape extends void ? void
2199
- : TShape & __TsonicWithExt<TShape, "Microsoft.EntityFrameworkCore.Metadata", __TsonicExtApplier_Microsoft_EntityFrameworkCore_Metadata> & __TsonicExtSurface_Microsoft_EntityFrameworkCore_Metadata<TShape>;
1325
+ : TShape & __TsonicWithExt<TShape, "Microsoft.EntityFrameworkCore.Metadata", __TsonicExtApplier_Microsoft_EntityFrameworkCore_Metadata> & __TsonicExtMethods_Microsoft_EntityFrameworkCore_Metadata;
2200
1326
 
2201
- // Generic helper type for extension methods in namespace: Microsoft.EntityFrameworkCore.Metadata.Conventions.Internal
2202
- type __TsonicExtSurface_Microsoft_EntityFrameworkCore_Metadata_Conventions_Internal<TShape> =
2203
- (
2204
- (TShape extends Microsoft_EntityFrameworkCore_Metadata_Conventions.IConventionBatch ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Conventions_Internal_IConventionBatch : {})
2205
- );
1327
+ // Extension method table for namespace: Microsoft.EntityFrameworkCore.Metadata.Conventions.Internal
1328
+ interface __TsonicExtMethods_Microsoft_EntityFrameworkCore_Metadata_Conventions_Internal {
1329
+ Run(this: Microsoft_EntityFrameworkCore_Metadata_Conventions.IConventionBatch, relationshipBuilder: Microsoft_EntityFrameworkCore_Metadata_Internal.InternalForeignKeyBuilder): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Internal.InternalForeignKeyBuilder | undefined>;
1330
+ }
2206
1331
 
1332
+ // Generic helper type for extension methods in namespace: Microsoft.EntityFrameworkCore.Metadata.Conventions.Internal
2207
1333
  interface __TsonicExtApplier_Microsoft_EntityFrameworkCore_Metadata_Conventions_Internal {
2208
1334
  __tsonic_shape: unknown;
2209
- __tsonic_type: __TsonicExtSurface_Microsoft_EntityFrameworkCore_Metadata_Conventions_Internal<this["__tsonic_shape"]>;
1335
+ __tsonic_type: __TsonicExtMethods_Microsoft_EntityFrameworkCore_Metadata_Conventions_Internal;
2210
1336
  }
2211
1337
 
2212
1338
  export type ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Conventions_Internal<TShape> =
2213
1339
  TShape extends null | undefined ? TShape
2214
1340
  : TShape extends void ? void
2215
- : TShape & __TsonicWithExt<TShape, "Microsoft.EntityFrameworkCore.Metadata.Conventions.Internal", __TsonicExtApplier_Microsoft_EntityFrameworkCore_Metadata_Conventions_Internal> & __TsonicExtSurface_Microsoft_EntityFrameworkCore_Metadata_Conventions_Internal<TShape>;
1341
+ : TShape & __TsonicWithExt<TShape, "Microsoft.EntityFrameworkCore.Metadata.Conventions.Internal", __TsonicExtApplier_Microsoft_EntityFrameworkCore_Metadata_Conventions_Internal> & __TsonicExtMethods_Microsoft_EntityFrameworkCore_Metadata_Conventions_Internal;
1342
+
1343
+ // Extension method table for namespace: Microsoft.EntityFrameworkCore.Metadata.Internal
1344
+ interface __TsonicExtMethods_Microsoft_EntityFrameworkCore_Metadata_Internal {
1345
+ AreCompatible(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyForeignKey, duplicateForeignKey: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyForeignKey, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, shouldThrow: boolean): Rewrap<this, boolean>;
1346
+ AreCompatible(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyIndex, duplicateIndex: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyIndex, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, shouldThrow: boolean): Rewrap<this, boolean>;
1347
+ AreCompatible(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyKey, duplicateKey: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyKey, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, shouldThrow: boolean): Rewrap<this, boolean>;
1348
+ CalculateCounts(this: Microsoft_EntityFrameworkCore_Metadata_Internal.IRuntimeEntityType): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Internal.PropertyCounts>;
1349
+ CheckContains<T>(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyTypeBase, property: T): Rewrap<this, T>;
1350
+ CreateMemberIdentity(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyNavigation): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.MemberIdentity>;
1351
+ CreateMemberIdentity(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlySkipNavigation): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.MemberIdentity>;
1352
+ FindDeclaredOwnership(this: Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionForeignKey | undefined>;
1353
+ FindDeclaredOwnership(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlyForeignKey | undefined>;
1354
+ FindDeclaredPrimaryKey(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlyKey | undefined>;
1355
+ FindDeclaredReferencingRowInternalForeignKeys(this: Microsoft_EntityFrameworkCore_Metadata.IEntityType, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IForeignKey>>;
1356
+ FindDerivedNavigations(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType, navigationName: string): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyNavigation>>;
1357
+ FindFirstDifferentPrincipal(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty | undefined>;
1358
+ FindGenerationProperty(this: Microsoft_EntityFrameworkCore_Metadata.IProperty): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IProperty | undefined>;
1359
+ FindInOwnershipPath(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType, targetType: System.Type): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType | undefined>;
1360
+ FindNavigationsFrom(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyForeignKey, entityType: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyNavigation>>;
1361
+ FindNavigationsFromInHierarchy(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyForeignKey, entityType: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyNavigation>>;
1362
+ FindNavigationsTo(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyForeignKey, entityType: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyNavigation>>;
1363
+ FindNavigationsToInHierarchy(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyForeignKey, entityType: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyNavigation>>;
1364
+ FindSameTypeNameWithDifferentNamespace(this: Microsoft_EntityFrameworkCore_Metadata.IModel, type: System.Type): Rewrap<this, string | undefined>;
1365
+ ForAdd(this: Microsoft_EntityFrameworkCore_Metadata.ValueGenerated): Rewrap<this, boolean>;
1366
+ ForUpdate(this: Microsoft_EntityFrameworkCore_Metadata.ValueGenerated): Rewrap<this, boolean>;
1367
+ GetChainToComplexProperty(this: Microsoft_EntityFrameworkCore_Metadata.IComplexProperty, fromEntity: boolean): Rewrap<this, System_Collections_Generic.IReadOnlyList_1<Microsoft_EntityFrameworkCore_Metadata.IComplexProperty>>;
1368
+ GetConfiguredColumnType(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty): Rewrap<this, string | undefined>;
1369
+ GetConstraintName(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyForeignKey, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, principalStoreObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, logger: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Model_Validation>): Rewrap<this, string | undefined>;
1370
+ GetDatabaseName(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyIndex, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, logger: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Model_Validation>): Rewrap<this, string | undefined>;
1371
+ GetDefaultDatabaseName(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyIndex, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, logger: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Model_Validation>): Rewrap<this, string | undefined>;
1372
+ GetDefaultName(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyForeignKey, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, principalStoreObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, logger: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Model_Validation>): Rewrap<this, string | undefined>;
1373
+ GetDefaultName(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyKey, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, logger: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Model_Validation>): Rewrap<this, string | undefined>;
1374
+ GetDiscriminatorValue(this: Microsoft_EntityFrameworkCore_Metadata_Internal.EntityType): Rewrap<this, unknown | undefined>;
1375
+ GetEntityTypesInHierarchicalOrder(this: Microsoft_EntityFrameworkCore_Metadata.IModel): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IEntityType>>;
1376
+ GetIdentifyingMemberInfo(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyPropertyBase): Rewrap<this, System_Reflection.MemberInfo | undefined>;
1377
+ GetName(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyKey, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, logger: Microsoft_EntityFrameworkCore_Diagnostics.IDiagnosticsLogger_1<Microsoft_EntityFrameworkCore.DbLoggerCategory_Model_Validation>): Rewrap<this, string | undefined>;
1378
+ GetNavigationMemberInfo(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType, navigationName: string): Rewrap<this, System_Reflection.MemberInfo>;
1379
+ GetNavigations(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyForeignKey): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyNavigation>>;
1380
+ GetNonPrincipalSharedNonPkProperties(this: Microsoft_EntityFrameworkCore_Metadata.IEntityType, table: Microsoft_EntityFrameworkCore_Metadata.ITableBase): Rewrap<this, System_Collections_Generic.List_1<Microsoft_EntityFrameworkCore_Metadata.IProperty>>;
1381
+ GetOriginalValueIndex(this: Microsoft_EntityFrameworkCore_Metadata.IPropertyBase): Rewrap<this, int>;
1382
+ GetPropertiesWithMinimalOverlapIfPossible(this: Microsoft_EntityFrameworkCore_Metadata.IForeignKey, foreignKeyProperties: System_Collections_Generic.IReadOnlyList_1<Microsoft_EntityFrameworkCore_Metadata.IProperty>, principalKeyProperties: System_Collections_Generic.IReadOnlyList_1<Microsoft_EntityFrameworkCore_Metadata.IProperty>): Rewrap<this, void>;
1383
+ GetPropertyAccessors(this: Microsoft_EntityFrameworkCore_Metadata.IPropertyBase): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Internal.PropertyAccessors>;
1384
+ GetPropertyIndexes(this: Microsoft_EntityFrameworkCore_Metadata.IPropertyBase): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Internal.PropertyIndexes>;
1385
+ GetRelationshipIndex(this: Microsoft_EntityFrameworkCore_Metadata.IPropertyBase): Rewrap<this, int>;
1386
+ GetRootEntityTypes(this: Microsoft_EntityFrameworkCore_Metadata.IModel): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IEntityType>>;
1387
+ GetShadowIndex(this: Microsoft_EntityFrameworkCore_Metadata.IPropertyBase): Rewrap<this, int>;
1388
+ GetStoreGeneratedIndex(this: Microsoft_EntityFrameworkCore_Metadata.IPropertyBase): Rewrap<this, int>;
1389
+ GetStoreObjectConfigurationSource(this: Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType, type: Microsoft_EntityFrameworkCore_Metadata.StoreObjectType): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
1390
+ GetViewOrTableMappings(this: Microsoft_EntityFrameworkCore_Metadata.ITypeBase): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.ITableMappingBase>>;
1391
+ IndexOf(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyKey, property: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty): Rewrap<this, int>;
1392
+ IsAssignableFrom(this: Microsoft_EntityFrameworkCore_Metadata_Internal.EntityType, otherEntityType: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType): Rewrap<this, boolean>;
1393
+ IsEntityType(this: Microsoft_EntityFrameworkCore_Metadata_Internal.TypeConfigurationType): Rewrap<this, boolean>;
1394
+ IsEntityType(this: System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata_Internal.TypeConfigurationType>): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
1395
+ IsForeignKeyToSelf(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty): Rewrap<this, boolean>;
1396
+ IsInOwnershipPath(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType, targetType: System.Type): Rewrap<this, boolean>;
1397
+ IsInOwnershipPath(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType, targetType: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType): Rewrap<this, boolean>;
1398
+ IsIndexerProperty(this: Microsoft_EntityFrameworkCore_Metadata_Internal.PropertyBase): Rewrap<this, boolean>;
1399
+ IsKey(this: Microsoft_EntityFrameworkCore_Metadata_Internal.Property): Rewrap<this, boolean>;
1400
+ IsMainFragment(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyTypeBase, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, boolean>;
1401
+ IsOrdinalKeyProperty(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty): Rewrap<this, boolean>;
1402
+ IsOwned(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType): Rewrap<this, boolean>;
1403
+ IsSelfReferencing(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyForeignKey): Rewrap<this, boolean>;
1404
+ IsShadowProperty(this: Microsoft_EntityFrameworkCore_Metadata_Internal.PropertyBase): Rewrap<this, boolean>;
1405
+ IsStrictlyDerivedFrom(this: Microsoft_EntityFrameworkCore_Metadata_Internal.EntityType, otherEntityType: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType): Rewrap<this, boolean>;
1406
+ LeastDerivedType(this: Microsoft_EntityFrameworkCore_Metadata_Internal.EntityType, otherEntityType: Microsoft_EntityFrameworkCore_Metadata_Internal.EntityType): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Internal.EntityType | undefined>;
1407
+ MayBeStoreGenerated(this: Microsoft_EntityFrameworkCore_Metadata.IProperty): Rewrap<this, boolean>;
1408
+ RequiresOriginalValue(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyComplexProperty): Rewrap<this, boolean>;
1409
+ RequiresOriginalValue(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty): Rewrap<this, boolean>;
1410
+ RequiresValueGenerator(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty): Rewrap<this, boolean>;
1411
+ SetProductVersion(this: Microsoft_EntityFrameworkCore_Metadata.IMutableModel, value: string): Rewrap<this, void>;
1412
+ ShortNameChain(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyTypeBase): Rewrap<this, string>;
1413
+ TryGetMemberInfo(this: Microsoft_EntityFrameworkCore_Metadata.IPropertyBase, forMaterialization: boolean, forSet: boolean, memberInfo: System_Reflection.MemberInfo, errorMessage: string): Rewrap<this, boolean>;
1414
+ UseEagerSnapshots(this: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyTypeBase): Rewrap<this, boolean>;
1415
+ }
2216
1416
 
2217
1417
  // Generic helper type for extension methods in namespace: Microsoft.EntityFrameworkCore.Metadata.Internal
2218
- type __TsonicExtSurface_Microsoft_EntityFrameworkCore_Metadata_Internal<TShape> =
2219
- (
2220
- (TShape extends Microsoft_EntityFrameworkCore_Metadata.IComplexProperty ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IComplexProperty : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IConventionEntityType : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IEntityType ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IEntityType : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IForeignKey ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IForeignKey : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IModel ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IModel : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableModel ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IMutableModel : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IProperty ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IProperty : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IPropertyBase ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IPropertyBase : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyComplexProperty ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlyComplexProperty : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType ? (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType ? {} : __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlyEntityType) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyForeignKey ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlyForeignKey : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyIndex ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlyIndex : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyKey ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlyKey : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyNavigation ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlyNavigation : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlyProperty : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyPropertyBase ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlyPropertyBase : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlySkipNavigation ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlySkipNavigation : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyTypeBase ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlyTypeBase : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.ITypeBase ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_ITypeBase : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.ValueGenerated ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_ValueGenerated : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Internal.EntityType ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_EntityType : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Internal.IRuntimeEntityType ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IRuntimeEntityType : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Internal.Property ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_Property : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Internal.PropertyBase ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_PropertyBase : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Internal.TypeConfigurationType ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_TypeConfigurationType : {}) & (TShape extends System.Nullable_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_Nullable_1<T0> : {})
2221
- );
2222
-
2223
1418
  interface __TsonicExtApplier_Microsoft_EntityFrameworkCore_Metadata_Internal {
2224
1419
  __tsonic_shape: unknown;
2225
- __tsonic_type: __TsonicExtSurface_Microsoft_EntityFrameworkCore_Metadata_Internal<this["__tsonic_shape"]>;
1420
+ __tsonic_type: __TsonicExtMethods_Microsoft_EntityFrameworkCore_Metadata_Internal;
2226
1421
  }
2227
1422
 
2228
1423
  export type ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Internal<TShape> =
2229
1424
  TShape extends null | undefined ? TShape
2230
1425
  : TShape extends void ? void
2231
- : TShape & __TsonicWithExt<TShape, "Microsoft.EntityFrameworkCore.Metadata.Internal", __TsonicExtApplier_Microsoft_EntityFrameworkCore_Metadata_Internal> & __TsonicExtSurface_Microsoft_EntityFrameworkCore_Metadata_Internal<TShape>;
1426
+ : TShape & __TsonicWithExt<TShape, "Microsoft.EntityFrameworkCore.Metadata.Internal", __TsonicExtApplier_Microsoft_EntityFrameworkCore_Metadata_Internal> & __TsonicExtMethods_Microsoft_EntityFrameworkCore_Metadata_Internal;
2232
1427
 
2233
- // Generic helper type for extension methods in namespace: Microsoft.EntityFrameworkCore.Migrations
2234
- type __TsonicExtSurface_Microsoft_EntityFrameworkCore_Migrations<TShape> =
2235
- (
2236
- (TShape extends Microsoft_EntityFrameworkCore_Migrations.IMigrationsAssembly ? __Ext_Microsoft_EntityFrameworkCore_Migrations_IMigrationsAssembly : {})
2237
- );
1428
+ // Extension method table for namespace: Microsoft.EntityFrameworkCore.Migrations
1429
+ interface __TsonicExtMethods_Microsoft_EntityFrameworkCore_Migrations {
1430
+ GetMigrationId(this: Microsoft_EntityFrameworkCore_Migrations.IMigrationsAssembly, nameOrId: string): Rewrap<this, string>;
1431
+ }
2238
1432
 
1433
+ // Generic helper type for extension methods in namespace: Microsoft.EntityFrameworkCore.Migrations
2239
1434
  interface __TsonicExtApplier_Microsoft_EntityFrameworkCore_Migrations {
2240
1435
  __tsonic_shape: unknown;
2241
- __tsonic_type: __TsonicExtSurface_Microsoft_EntityFrameworkCore_Migrations<this["__tsonic_shape"]>;
1436
+ __tsonic_type: __TsonicExtMethods_Microsoft_EntityFrameworkCore_Migrations;
2242
1437
  }
2243
1438
 
2244
1439
  export type ExtensionMethods_Microsoft_EntityFrameworkCore_Migrations<TShape> =
2245
1440
  TShape extends null | undefined ? TShape
2246
1441
  : TShape extends void ? void
2247
- : TShape & __TsonicWithExt<TShape, "Microsoft.EntityFrameworkCore.Migrations", __TsonicExtApplier_Microsoft_EntityFrameworkCore_Migrations> & __TsonicExtSurface_Microsoft_EntityFrameworkCore_Migrations<TShape>;
1442
+ : TShape & __TsonicWithExt<TShape, "Microsoft.EntityFrameworkCore.Migrations", __TsonicExtApplier_Microsoft_EntityFrameworkCore_Migrations> & __TsonicExtMethods_Microsoft_EntityFrameworkCore_Migrations;
2248
1443
 
2249
- // Generic helper type for extension methods in namespace: Microsoft.EntityFrameworkCore.Migrations.Internal
2250
- type __TsonicExtSurface_Microsoft_EntityFrameworkCore_Migrations_Internal<TShape> =
2251
- (
2252
- (TShape extends Microsoft_EntityFrameworkCore_Migrations.Migration ? __Ext_Microsoft_EntityFrameworkCore_Migrations_Internal_Migration : {})
2253
- );
1444
+ // Extension method table for namespace: Microsoft.EntityFrameworkCore.Migrations.Internal
1445
+ interface __TsonicExtMethods_Microsoft_EntityFrameworkCore_Migrations_Internal {
1446
+ GetId(this: Microsoft_EntityFrameworkCore_Migrations.Migration): Rewrap<this, string>;
1447
+ }
2254
1448
 
1449
+ // Generic helper type for extension methods in namespace: Microsoft.EntityFrameworkCore.Migrations.Internal
2255
1450
  interface __TsonicExtApplier_Microsoft_EntityFrameworkCore_Migrations_Internal {
2256
1451
  __tsonic_shape: unknown;
2257
- __tsonic_type: __TsonicExtSurface_Microsoft_EntityFrameworkCore_Migrations_Internal<this["__tsonic_shape"]>;
1452
+ __tsonic_type: __TsonicExtMethods_Microsoft_EntityFrameworkCore_Migrations_Internal;
2258
1453
  }
2259
1454
 
2260
1455
  export type ExtensionMethods_Microsoft_EntityFrameworkCore_Migrations_Internal<TShape> =
2261
1456
  TShape extends null | undefined ? TShape
2262
1457
  : TShape extends void ? void
2263
- : TShape & __TsonicWithExt<TShape, "Microsoft.EntityFrameworkCore.Migrations.Internal", __TsonicExtApplier_Microsoft_EntityFrameworkCore_Migrations_Internal> & __TsonicExtSurface_Microsoft_EntityFrameworkCore_Migrations_Internal<TShape>;
1458
+ : TShape & __TsonicWithExt<TShape, "Microsoft.EntityFrameworkCore.Migrations.Internal", __TsonicExtApplier_Microsoft_EntityFrameworkCore_Migrations_Internal> & __TsonicExtMethods_Microsoft_EntityFrameworkCore_Migrations_Internal;
1459
+
1460
+ // Extension method table for namespace: Microsoft.EntityFrameworkCore.Storage
1461
+ interface __TsonicExtMethods_Microsoft_EntityFrameworkCore_Storage {
1462
+ AddCompositeParameter(this: Microsoft_EntityFrameworkCore_Storage.IRelationalCommandBuilder, invariantName: string, subParameters: System_Collections_Generic.IReadOnlyList_1<Microsoft_EntityFrameworkCore_Storage.IRelationalParameter>): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.IRelationalCommandBuilder>;
1463
+ AddParameter(this: Microsoft_EntityFrameworkCore_Storage.IRelationalCommandBuilder, invariantName: string, name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.IRelationalCommandBuilder>;
1464
+ AddParameter(this: Microsoft_EntityFrameworkCore_Storage.IRelationalCommandBuilder, invariantName: string, name: string, relationalTypeMapping: Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping, nullable: System.Nullable_1<System_Internal.Boolean>, direction?: System_Data.ParameterDirection): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.IRelationalCommandBuilder>;
1465
+ AddRawParameter(this: Microsoft_EntityFrameworkCore_Storage.IRelationalCommandBuilder, invariantName: string, dbParameter: System_Data_Common.DbParameter): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.IRelationalCommandBuilder>;
1466
+ AppendLine(this: Microsoft_EntityFrameworkCore_Storage.IRelationalCommandBuilder, value: string): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.IRelationalCommandBuilder>;
1467
+ AppendLine(this: Microsoft_EntityFrameworkCore_Storage.IRelationalCommandBuilder, value: System.FormattableString): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.IRelationalCommandBuilder>;
1468
+ AppendLines(this: Microsoft_EntityFrameworkCore_Storage.IRelationalCommandBuilder, value: string, skipFinalNewline?: boolean): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.IRelationalCommandBuilder>;
1469
+ ExecuteInTransaction(this: Microsoft_EntityFrameworkCore_Storage.IExecutionStrategy, operation: System.Action, verifySucceeded: System.Func_1<System_Internal.Boolean>, isolationLevel: System_Data.IsolationLevel): Rewrap<this, void>;
1470
+ ExecuteInTransaction<TResult>(this: Microsoft_EntityFrameworkCore_Storage.IExecutionStrategy, operation: System.Func_1<TResult>, verifySucceeded: System.Func_1<System_Internal.Boolean>, isolationLevel: System_Data.IsolationLevel): Rewrap<this, TResult>;
1471
+ ExecuteInTransaction<TState>(this: Microsoft_EntityFrameworkCore_Storage.IExecutionStrategy, state: TState, operation: System.Action_1<TState>, verifySucceeded: System.Func_2<TState, System_Internal.Boolean>, isolationLevel: System_Data.IsolationLevel): Rewrap<this, void>;
1472
+ ExecuteInTransaction<TState, TResult>(this: Microsoft_EntityFrameworkCore_Storage.IExecutionStrategy, state: TState, operation: System.Func_2<TState, TResult>, verifySucceeded: System.Func_2<TState, System_Internal.Boolean>, isolationLevel: System_Data.IsolationLevel): Rewrap<this, TResult>;
1473
+ ExecuteInTransactionAsync(this: Microsoft_EntityFrameworkCore_Storage.IExecutionStrategy, operation: System.Func_1<System_Threading_Tasks.Task>, verifySucceeded: System.Func_1<System_Threading_Tasks.Task_1<System_Internal.Boolean>>, isolationLevel: System_Data.IsolationLevel): Rewrap<this, System_Threading_Tasks.Task>;
1474
+ ExecuteInTransactionAsync(this: Microsoft_EntityFrameworkCore_Storage.IExecutionStrategy, operation: System.Func_2<System_Threading.CancellationToken, System_Threading_Tasks.Task>, verifySucceeded: System.Func_2<System_Threading.CancellationToken, System_Threading_Tasks.Task_1<System_Internal.Boolean>>, isolationLevel: System_Data.IsolationLevel, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
1475
+ ExecuteInTransactionAsync<TResult>(this: Microsoft_EntityFrameworkCore_Storage.IExecutionStrategy, operation: System.Func_2<System_Threading.CancellationToken, System_Threading_Tasks.Task_1<TResult>>, verifySucceeded: System.Func_2<System_Threading.CancellationToken, System_Threading_Tasks.Task_1<System_Internal.Boolean>>, isolationLevel: System_Data.IsolationLevel, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<TResult>>;
1476
+ ExecuteInTransactionAsync<TState>(this: Microsoft_EntityFrameworkCore_Storage.IExecutionStrategy, state: TState, operation: System.Func_3<TState, System_Threading.CancellationToken, System_Threading_Tasks.Task>, verifySucceeded: System.Func_3<TState, System_Threading.CancellationToken, System_Threading_Tasks.Task_1<System_Internal.Boolean>>, isolationLevel: System_Data.IsolationLevel, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task>;
1477
+ ExecuteInTransactionAsync<TState, TResult>(this: Microsoft_EntityFrameworkCore_Storage.IExecutionStrategy, state: TState, operation: System.Func_3<TState, System_Threading.CancellationToken, System_Threading_Tasks.Task_1<TResult>>, verifySucceeded: System.Func_3<TState, System_Threading.CancellationToken, System_Threading_Tasks.Task_1<System_Internal.Boolean>>, isolationLevel: System_Data.IsolationLevel, cancellationToken?: System_Threading.CancellationToken): Rewrap<this, System_Threading_Tasks.Task_1<TResult>>;
1478
+ GetDbTransaction(this: Microsoft_EntityFrameworkCore_Storage.IDbContextTransaction): Rewrap<this, System_Data_Common.DbTransaction>;
1479
+ GetMapping(this: Microsoft_EntityFrameworkCore_Storage.IRelationalTypeMappingSource, property: Microsoft_EntityFrameworkCore_Metadata.IProperty): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping>;
1480
+ GetMapping(this: Microsoft_EntityFrameworkCore_Storage.IRelationalTypeMappingSource, clrType: System.Type): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping>;
1481
+ GetMapping(this: Microsoft_EntityFrameworkCore_Storage.IRelationalTypeMappingSource, clrType: System.Type, model: Microsoft_EntityFrameworkCore_Metadata.IModel): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping>;
1482
+ GetMapping(this: Microsoft_EntityFrameworkCore_Storage.IRelationalTypeMappingSource, typeName: string): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping>;
1483
+ GetMappingForValue(this: Microsoft_EntityFrameworkCore_Storage.IRelationalTypeMappingSource, value: unknown): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping>;
1484
+ GetMappingForValue(this: Microsoft_EntityFrameworkCore_Storage.IRelationalTypeMappingSource, value: unknown, model: Microsoft_EntityFrameworkCore_Metadata.IModel): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping>;
1485
+ Indent(this: Microsoft_EntityFrameworkCore_Storage.IRelationalCommandBuilder): Rewrap<this, System.IDisposable>;
1486
+ }
2264
1487
 
2265
1488
  // Generic helper type for extension methods in namespace: Microsoft.EntityFrameworkCore.Storage
2266
- type __TsonicExtSurface_Microsoft_EntityFrameworkCore_Storage<TShape> =
2267
- (
2268
- (TShape extends Microsoft_EntityFrameworkCore_Storage.IDbContextTransaction ? __Ext_Microsoft_EntityFrameworkCore_Storage_IDbContextTransaction : {}) & (TShape extends Microsoft_EntityFrameworkCore_Storage.IExecutionStrategy ? __Ext_Microsoft_EntityFrameworkCore_Storage_IExecutionStrategy : {}) & (TShape extends Microsoft_EntityFrameworkCore_Storage.IRelationalCommandBuilder ? __Ext_Microsoft_EntityFrameworkCore_Storage_IRelationalCommandBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Storage.IRelationalTypeMappingSource ? __Ext_Microsoft_EntityFrameworkCore_Storage_IRelationalTypeMappingSource : {})
2269
- );
2270
-
2271
1489
  interface __TsonicExtApplier_Microsoft_EntityFrameworkCore_Storage {
2272
1490
  __tsonic_shape: unknown;
2273
- __tsonic_type: __TsonicExtSurface_Microsoft_EntityFrameworkCore_Storage<this["__tsonic_shape"]>;
1491
+ __tsonic_type: __TsonicExtMethods_Microsoft_EntityFrameworkCore_Storage;
2274
1492
  }
2275
1493
 
2276
1494
  export type ExtensionMethods_Microsoft_EntityFrameworkCore_Storage<TShape> =
2277
1495
  TShape extends null | undefined ? TShape
2278
1496
  : TShape extends void ? void
2279
- : TShape & __TsonicWithExt<TShape, "Microsoft.EntityFrameworkCore.Storage", __TsonicExtApplier_Microsoft_EntityFrameworkCore_Storage> & __TsonicExtSurface_Microsoft_EntityFrameworkCore_Storage<TShape>;
1497
+ : TShape & __TsonicWithExt<TShape, "Microsoft.EntityFrameworkCore.Storage", __TsonicExtApplier_Microsoft_EntityFrameworkCore_Storage> & __TsonicExtMethods_Microsoft_EntityFrameworkCore_Storage;
2280
1498
 
2281
- // Generic helper type for extension methods in namespace: Microsoft.EntityFrameworkCore.Storage.Internal
2282
- type __TsonicExtSurface_Microsoft_EntityFrameworkCore_Storage_Internal<TShape> =
2283
- (
2284
- (TShape extends System_Data_Common.DbParameter ? __Ext_Microsoft_EntityFrameworkCore_Storage_Internal_DbParameter : {}) & (TShape extends System_Data_Common.DbParameterCollection ? __Ext_Microsoft_EntityFrameworkCore_Storage_Internal_DbParameterCollection : {})
2285
- );
1499
+ // Extension method table for namespace: Microsoft.EntityFrameworkCore.Storage.Internal
1500
+ interface __TsonicExtMethods_Microsoft_EntityFrameworkCore_Storage_Internal {
1501
+ FormatParameter(this: System_Data_Common.DbParameter, logParameterValues: boolean): Rewrap<this, string>;
1502
+ FormatParameters(this: System_Data_Common.DbParameterCollection, logParameterValues: boolean): Rewrap<this, string>;
1503
+ }
2286
1504
 
1505
+ // Generic helper type for extension methods in namespace: Microsoft.EntityFrameworkCore.Storage.Internal
2287
1506
  interface __TsonicExtApplier_Microsoft_EntityFrameworkCore_Storage_Internal {
2288
1507
  __tsonic_shape: unknown;
2289
- __tsonic_type: __TsonicExtSurface_Microsoft_EntityFrameworkCore_Storage_Internal<this["__tsonic_shape"]>;
1508
+ __tsonic_type: __TsonicExtMethods_Microsoft_EntityFrameworkCore_Storage_Internal;
2290
1509
  }
2291
1510
 
2292
1511
  export type ExtensionMethods_Microsoft_EntityFrameworkCore_Storage_Internal<TShape> =
2293
1512
  TShape extends null | undefined ? TShape
2294
1513
  : TShape extends void ? void
2295
- : TShape & __TsonicWithExt<TShape, "Microsoft.EntityFrameworkCore.Storage.Internal", __TsonicExtApplier_Microsoft_EntityFrameworkCore_Storage_Internal> & __TsonicExtSurface_Microsoft_EntityFrameworkCore_Storage_Internal<TShape>;
1514
+ : TShape & __TsonicWithExt<TShape, "Microsoft.EntityFrameworkCore.Storage.Internal", __TsonicExtApplier_Microsoft_EntityFrameworkCore_Storage_Internal> & __TsonicExtMethods_Microsoft_EntityFrameworkCore_Storage_Internal;
2296
1515
 
2297
- // Generic helper type for extension methods in namespace: Microsoft.EntityFrameworkCore.Update
2298
- type __TsonicExtSurface_Microsoft_EntityFrameworkCore_Update<TShape> =
2299
- (
2300
- (TShape extends Microsoft_EntityFrameworkCore_Update.IUpdateEntry ? __Ext_Microsoft_EntityFrameworkCore_Update_IUpdateEntry : {})
2301
- );
1516
+ // Extension method table for namespace: Microsoft.EntityFrameworkCore.Update
1517
+ interface __TsonicExtMethods_Microsoft_EntityFrameworkCore_Update {
1518
+ BuildCurrentValuesString(this: Microsoft_EntityFrameworkCore_Update.IUpdateEntry, properties: System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IPropertyBase>): Rewrap<this, string>;
1519
+ BuildOriginalValuesString(this: Microsoft_EntityFrameworkCore_Update.IUpdateEntry, properties: System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IPropertyBase>): Rewrap<this, string>;
1520
+ GetCurrentProviderValue(this: Microsoft_EntityFrameworkCore_Update.IUpdateEntry, property: Microsoft_EntityFrameworkCore_Metadata.IProperty): Rewrap<this, unknown | undefined>;
1521
+ GetOriginalProviderValue(this: Microsoft_EntityFrameworkCore_Update.IUpdateEntry, property: Microsoft_EntityFrameworkCore_Metadata.IProperty): Rewrap<this, unknown | undefined>;
1522
+ ToDebugString(this: Microsoft_EntityFrameworkCore_Update.IUpdateEntry, options?: Microsoft_EntityFrameworkCore_ChangeTracking.ChangeTrackerDebugStringOptions, indent?: int): Rewrap<this, string>;
1523
+ }
2302
1524
 
1525
+ // Generic helper type for extension methods in namespace: Microsoft.EntityFrameworkCore.Update
2303
1526
  interface __TsonicExtApplier_Microsoft_EntityFrameworkCore_Update {
2304
1527
  __tsonic_shape: unknown;
2305
- __tsonic_type: __TsonicExtSurface_Microsoft_EntityFrameworkCore_Update<this["__tsonic_shape"]>;
1528
+ __tsonic_type: __TsonicExtMethods_Microsoft_EntityFrameworkCore_Update;
2306
1529
  }
2307
1530
 
2308
1531
  export type ExtensionMethods_Microsoft_EntityFrameworkCore_Update<TShape> =
2309
1532
  TShape extends null | undefined ? TShape
2310
1533
  : TShape extends void ? void
2311
- : TShape & __TsonicWithExt<TShape, "Microsoft.EntityFrameworkCore.Update", __TsonicExtApplier_Microsoft_EntityFrameworkCore_Update> & __TsonicExtSurface_Microsoft_EntityFrameworkCore_Update<TShape>;
1534
+ : TShape & __TsonicWithExt<TShape, "Microsoft.EntityFrameworkCore.Update", __TsonicExtApplier_Microsoft_EntityFrameworkCore_Update> & __TsonicExtMethods_Microsoft_EntityFrameworkCore_Update;
1535
+
1536
+ // Extension method table for namespace: Microsoft.Extensions.DependencyInjection
1537
+ interface __TsonicExtMethods_Microsoft_Extensions_DependencyInjection {
1538
+ AddDbContext<TContext>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, optionsAction?: System.Action_1<Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>, contextLifetime?: Microsoft_Extensions_DependencyInjection.ServiceLifetime, optionsLifetime?: Microsoft_Extensions_DependencyInjection.ServiceLifetime): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
1539
+ AddDbContext<TContext>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, contextLifetime: Microsoft_Extensions_DependencyInjection.ServiceLifetime, optionsLifetime?: Microsoft_Extensions_DependencyInjection.ServiceLifetime): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
1540
+ AddDbContext<TContext>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, optionsAction: System.Action_2<System.IServiceProvider, Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>, contextLifetime?: Microsoft_Extensions_DependencyInjection.ServiceLifetime, optionsLifetime?: Microsoft_Extensions_DependencyInjection.ServiceLifetime): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
1541
+ AddDbContextFactory<TContext>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, optionsAction?: System.Action_1<Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>, lifetime?: Microsoft_Extensions_DependencyInjection.ServiceLifetime): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
1542
+ AddDbContextFactory<TContext>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, optionsAction: System.Action_2<System.IServiceProvider, Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>, lifetime?: Microsoft_Extensions_DependencyInjection.ServiceLifetime): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
1543
+ AddDbContextPool<TContext>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, optionsAction: System.Action_1<Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>, poolSize?: int): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
1544
+ AddDbContextPool<TContext>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, optionsAction: System.Action_2<System.IServiceProvider, Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>, poolSize?: int): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
1545
+ AddPooledDbContextFactory<TContext>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, optionsAction: System.Action_1<Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>, poolSize?: int): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
1546
+ AddPooledDbContextFactory<TContext>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, optionsAction: System.Action_2<System.IServiceProvider, Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>, poolSize?: int): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
1547
+ ConfigureDbContext<TContext>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, optionsAction: System.Action_1<Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>, optionsLifetime?: Microsoft_Extensions_DependencyInjection.ServiceLifetime): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
1548
+ ConfigureDbContext<TContext>(this: Microsoft_Extensions_DependencyInjection.IServiceCollection, optionsAction: System.Action_2<System.IServiceProvider, Microsoft_EntityFrameworkCore.DbContextOptionsBuilder>, optionsLifetime?: Microsoft_Extensions_DependencyInjection.ServiceLifetime): Rewrap<this, Microsoft_Extensions_DependencyInjection.IServiceCollection>;
1549
+ }
2312
1550
 
2313
1551
  // Generic helper type for extension methods in namespace: Microsoft.Extensions.DependencyInjection
2314
- type __TsonicExtSurface_Microsoft_Extensions_DependencyInjection<TShape> =
2315
- (
2316
- (TShape extends Microsoft_Extensions_DependencyInjection.IServiceCollection ? __Ext_Microsoft_Extensions_DependencyInjection_IServiceCollection : {})
2317
- );
2318
-
2319
1552
  interface __TsonicExtApplier_Microsoft_Extensions_DependencyInjection {
2320
1553
  __tsonic_shape: unknown;
2321
- __tsonic_type: __TsonicExtSurface_Microsoft_Extensions_DependencyInjection<this["__tsonic_shape"]>;
1554
+ __tsonic_type: __TsonicExtMethods_Microsoft_Extensions_DependencyInjection;
2322
1555
  }
2323
1556
 
2324
1557
  export type ExtensionMethods_Microsoft_Extensions_DependencyInjection<TShape> =
2325
1558
  TShape extends null | undefined ? TShape
2326
1559
  : TShape extends void ? void
2327
- : TShape & __TsonicWithExt<TShape, "Microsoft.Extensions.DependencyInjection", __TsonicExtApplier_Microsoft_Extensions_DependencyInjection> & __TsonicExtSurface_Microsoft_Extensions_DependencyInjection<TShape>;
1560
+ : TShape & __TsonicWithExt<TShape, "Microsoft.Extensions.DependencyInjection", __TsonicExtApplier_Microsoft_Extensions_DependencyInjection> & __TsonicExtMethods_Microsoft_Extensions_DependencyInjection;
2328
1561
 
2329
- // Generic helper type for extension methods in namespace: System.Transactions
2330
- type __TsonicExtSurface_System_Transactions<TShape> =
2331
- (
2332
- (TShape extends Microsoft_EntityFrameworkCore_Infrastructure.DatabaseFacade ? __Ext_System_Transactions_DatabaseFacade : {})
2333
- );
1562
+ // Extension method table for namespace: System.Transactions
1563
+ interface __TsonicExtMethods_System_Transactions {
1564
+ EnlistTransaction(this: Microsoft_EntityFrameworkCore_Infrastructure.DatabaseFacade, transaction: System_Transactions.Transaction): Rewrap<this, void>;
1565
+ GetEnlistedTransaction(this: Microsoft_EntityFrameworkCore_Infrastructure.DatabaseFacade): Rewrap<this, System_Transactions.Transaction | undefined>;
1566
+ }
2334
1567
 
1568
+ // Generic helper type for extension methods in namespace: System.Transactions
2335
1569
  interface __TsonicExtApplier_System_Transactions {
2336
1570
  __tsonic_shape: unknown;
2337
- __tsonic_type: __TsonicExtSurface_System_Transactions<this["__tsonic_shape"]>;
1571
+ __tsonic_type: __TsonicExtMethods_System_Transactions;
2338
1572
  }
2339
1573
 
2340
1574
  export type ExtensionMethods_System_Transactions<TShape> =
2341
1575
  TShape extends null | undefined ? TShape
2342
1576
  : TShape extends void ? void
2343
- : TShape & __TsonicWithExt<TShape, "System.Transactions", __TsonicExtApplier_System_Transactions> & __TsonicExtSurface_System_Transactions<TShape>;
1577
+ : TShape & __TsonicWithExt<TShape, "System.Transactions", __TsonicExtApplier_System_Transactions> & __TsonicExtMethods_System_Transactions;
2344
1578