@tsonic/efcore 10.0.3 → 10.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Microsoft.EntityFrameworkCore/internal/index.d.ts +634 -529
- package/Microsoft.EntityFrameworkCore.ChangeTracking/internal/index.d.ts +299 -154
- package/Microsoft.EntityFrameworkCore.ChangeTracking.Internal/internal/index.d.ts +591 -291
- package/Microsoft.EntityFrameworkCore.Design/internal/index.d.ts +139 -103
- package/Microsoft.EntityFrameworkCore.Design.Internal/internal/index.d.ts +36 -10
- package/Microsoft.EntityFrameworkCore.Diagnostics/internal/index.d.ts +535 -261
- package/Microsoft.EntityFrameworkCore.Diagnostics.Internal/internal/index.d.ts +105 -42
- package/Microsoft.EntityFrameworkCore.Infrastructure/internal/index.d.ts +330 -145
- package/Microsoft.EntityFrameworkCore.Infrastructure.Internal/internal/index.d.ts +62 -30
- package/Microsoft.EntityFrameworkCore.Internal/internal/index.d.ts +235 -121
- package/Microsoft.EntityFrameworkCore.Metadata/internal/index.d.ts +1624 -1035
- package/Microsoft.EntityFrameworkCore.Metadata.Builders/internal/index.d.ts +718 -476
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions/internal/index.d.ts +860 -307
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure/internal/index.d.ts +27 -7
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Internal/internal/index.d.ts +35 -21
- package/Microsoft.EntityFrameworkCore.Metadata.Internal/internal/index.d.ts +2232 -1303
- package/Microsoft.EntityFrameworkCore.Migrations/internal/index.d.ts +123 -67
- package/Microsoft.EntityFrameworkCore.Migrations.Internal/internal/index.d.ts +88 -74
- package/Microsoft.EntityFrameworkCore.Migrations.Operations/internal/index.d.ts +445 -207
- package/Microsoft.EntityFrameworkCore.Migrations.Operations.Builders/internal/index.d.ts +28 -20
- package/Microsoft.EntityFrameworkCore.Query/internal/index.d.ts +601 -240
- package/Microsoft.EntityFrameworkCore.Query.Internal/internal/index.d.ts +505 -257
- package/Microsoft.EntityFrameworkCore.Query.SqlExpressions/internal/index.d.ts +318 -120
- package/Microsoft.EntityFrameworkCore.Scaffolding/internal/index.d.ts +35 -15
- package/Microsoft.EntityFrameworkCore.Scaffolding.Metadata/internal/index.d.ts +133 -73
- package/Microsoft.EntityFrameworkCore.Storage/internal/index.d.ts +502 -239
- package/Microsoft.EntityFrameworkCore.Storage.Internal/internal/index.d.ts +80 -35
- package/Microsoft.EntityFrameworkCore.Storage.Internal.d.ts +3 -0
- package/Microsoft.EntityFrameworkCore.Storage.Json/internal/index.d.ts +102 -25
- package/Microsoft.EntityFrameworkCore.Storage.ValueConversion/internal/index.d.ts +143 -43
- package/Microsoft.EntityFrameworkCore.Storage.ValueConversion.Internal/internal/index.d.ts +54 -32
- package/Microsoft.EntityFrameworkCore.Update/internal/index.d.ts +136 -68
- package/Microsoft.EntityFrameworkCore.Update.Internal/internal/index.d.ts +198 -91
- package/Microsoft.EntityFrameworkCore.ValueGeneration/internal/index.d.ts +69 -23
- package/Microsoft.EntityFrameworkCore.ValueGeneration.Internal/internal/index.d.ts +44 -6
- package/Microsoft.Extensions.DependencyInjection/internal/index.d.ts +13 -13
- package/Microsoft.Extensions.DependencyInjection.d.ts +3 -0
- package/System.Transactions/internal/index.d.ts +3 -3
- package/__internal/extensions/index.d.ts +1553 -1291
- package/package.json +4 -4
|
@@ -27,28 +27,28 @@ import type { TableExpressionBase } from "../../Microsoft.EntityFrameworkCore.Qu
|
|
|
27
27
|
import type { IAsyncQueryProvider, IIncludableQueryable_2, UpdateSettersBuilder_1 } from "../../Microsoft.EntityFrameworkCore.Query/internal/index.js";
|
|
28
28
|
import type { ExecutionResult_1, IDbContextTransaction, IExceptionDetector, IExecutionStrategy, RelationalDataReader, RelationalTypeMapping } from "../../Microsoft.EntityFrameworkCore.Storage/internal/index.js";
|
|
29
29
|
import type { IUpdateEntry } from "../../Microsoft.EntityFrameworkCore.Update/internal/index.js";
|
|
30
|
-
import * as System_Collections_Generic_Internal from "@tsonic/dotnet/System.Collections.Generic.js";
|
|
31
|
-
import type {
|
|
32
|
-
import type {
|
|
33
|
-
import
|
|
34
|
-
import
|
|
35
|
-
import type {
|
|
36
|
-
import * as System_ComponentModel_Internal from "@tsonic/dotnet/System.ComponentModel.js";
|
|
37
|
-
import type {
|
|
38
|
-
import type { DbCommand, DbConnection, DbTransaction } from "@tsonic/dotnet/System.Data.Common.js";
|
|
39
|
-
import type { IsolationLevel } from "@tsonic/dotnet/System.Data.js";
|
|
40
|
-
import
|
|
41
|
-
import
|
|
42
|
-
import type {
|
|
43
|
-
import
|
|
44
|
-
import
|
|
45
|
-
import type {
|
|
46
|
-
import
|
|
47
|
-
import type {
|
|
48
|
-
import
|
|
49
|
-
import type {
|
|
50
|
-
import type { IMemoryCache } from "@tsonic/microsoft-extensions/Microsoft.Extensions.Caching.Memory.js";
|
|
51
|
-
import type { EventId, ILoggerFactory, LogLevel } from "@tsonic/microsoft-extensions/Microsoft.Extensions.Logging.js";
|
|
30
|
+
import * as System_Collections_Generic_Internal from "@tsonic/dotnet/System.Collections.Generic/internal/index.js";
|
|
31
|
+
import type { Dictionary_2, HashSet_1, IAsyncEnumerable_1, IAsyncEnumerator_1, IEnumerable_1, IEqualityComparer_1, IReadOnlyCollection_1, IReadOnlyDictionary_2, IReadOnlyList_1, List_1 } from "@tsonic/dotnet/System.Collections.Generic/internal/index.js";
|
|
32
|
+
import type { ImmutableSortedDictionary_2 } from "@tsonic/dotnet/System.Collections.Immutable/internal/index.js";
|
|
33
|
+
import type { ObservableCollection_1 } from "@tsonic/dotnet/System.Collections.ObjectModel/internal/index.js";
|
|
34
|
+
import * as System_Collections_Internal from "@tsonic/dotnet/System.Collections/internal/index.js";
|
|
35
|
+
import type { IEnumerable } from "@tsonic/dotnet/System.Collections/internal/index.js";
|
|
36
|
+
import * as System_ComponentModel_Internal from "@tsonic/dotnet/System.ComponentModel/internal/index.js";
|
|
37
|
+
import type { BindingList_1, IListSource } from "@tsonic/dotnet/System.ComponentModel/internal/index.js";
|
|
38
|
+
import type { DbCommand, DbConnection, DbTransaction } from "@tsonic/dotnet/System.Data.Common/internal/index.js";
|
|
39
|
+
import type { IsolationLevel } from "@tsonic/dotnet/System.Data/internal/index.js";
|
|
40
|
+
import type { Expression_1 } from "@tsonic/dotnet/System.Linq.Expressions/internal/index.js";
|
|
41
|
+
import * as System_Linq_Internal from "@tsonic/dotnet/System.Linq/internal/index.js";
|
|
42
|
+
import type { IQueryable, IQueryable_1 } from "@tsonic/dotnet/System.Linq/internal/index.js";
|
|
43
|
+
import type { Assembly, MethodInfo } from "@tsonic/dotnet/System.Reflection/internal/index.js";
|
|
44
|
+
import * as System_Runtime_Serialization_Internal from "@tsonic/dotnet/System.Runtime.Serialization/internal/index.js";
|
|
45
|
+
import type { ISerializable, SerializationInfo, StreamingContext } from "@tsonic/dotnet/System.Runtime.Serialization/internal/index.js";
|
|
46
|
+
import type { Task, Task_1, ValueTask, ValueTask_1 } from "@tsonic/dotnet/System.Threading.Tasks/internal/index.js";
|
|
47
|
+
import type { CancellationToken } from "@tsonic/dotnet/System.Threading/internal/index.js";
|
|
48
|
+
import * as System_Internal from "@tsonic/dotnet/System/internal/index.js";
|
|
49
|
+
import type { Action, Action_1, Action_2, Attribute, Boolean as ClrBoolean, Decimal, Double, Enum, EventArgs, EventHandler_1, Exception, FormattableString, Func_1, Func_10, Func_11, Func_12, Func_13, Func_14, Func_15, Func_16, Func_17, Func_2, Func_3, Func_4, Func_5, Func_6, Func_7, Func_8, Func_9, Guid, IAsyncDisposable, IComparable, IConvertible, IDisposable, IEquatable_1, IFormattable, Int32, Int64, IServiceProvider, ISpanFormattable, Nullable_1, Object as ClrObject, Single, String as ClrString, TimeSpan, Type, ValueTuple_2, ValueType, Void } from "@tsonic/dotnet/System/internal/index.js";
|
|
50
|
+
import type { IMemoryCache } from "@tsonic/microsoft-extensions/Microsoft.Extensions.Caching.Memory/internal/index.js";
|
|
51
|
+
import type { EventId, ILoggerFactory, LogLevel } from "@tsonic/microsoft-extensions/Microsoft.Extensions.Logging/internal/index.js";
|
|
52
52
|
|
|
53
53
|
export enum AutoTransactionBehavior {
|
|
54
54
|
WhenNeeded = 0,
|
|
@@ -123,14 +123,18 @@ export enum WarningBehavior {
|
|
|
123
123
|
|
|
124
124
|
|
|
125
125
|
export interface IDbContextFactory_1$instance<TContext extends DbContext> {
|
|
126
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_IDbContextFactory_1: never;
|
|
127
|
+
|
|
126
128
|
CreateDbContext(): TContext;
|
|
127
|
-
CreateDbContextAsync(cancellationToken?: CancellationToken):
|
|
129
|
+
CreateDbContextAsync(cancellationToken?: CancellationToken): Task_1<TContext>;
|
|
128
130
|
}
|
|
129
131
|
|
|
130
132
|
|
|
131
133
|
export type IDbContextFactory_1<TContext extends DbContext> = IDbContextFactory_1$instance<TContext>;
|
|
132
134
|
|
|
133
135
|
export interface IEntityTypeConfiguration_1$instance<TEntity> {
|
|
136
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_IEntityTypeConfiguration_1: never;
|
|
137
|
+
|
|
134
138
|
Configure(builder: EntityTypeBuilder_1<TEntity>): void;
|
|
135
139
|
}
|
|
136
140
|
|
|
@@ -138,6 +142,8 @@ export interface IEntityTypeConfiguration_1$instance<TEntity> {
|
|
|
138
142
|
export type IEntityTypeConfiguration_1<TEntity> = IEntityTypeConfiguration_1$instance<TEntity>;
|
|
139
143
|
|
|
140
144
|
export interface DbContextId$instance {
|
|
145
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_DbContextId: never;
|
|
146
|
+
|
|
141
147
|
readonly InstanceId: Guid;
|
|
142
148
|
readonly Lease: int;
|
|
143
149
|
Equals(other: DbContextId): boolean;
|
|
@@ -155,6 +161,8 @@ export const DbContextId: {
|
|
|
155
161
|
export type DbContextId = DbContextId$instance;
|
|
156
162
|
|
|
157
163
|
export interface BackingFieldAttribute$instance extends Attribute {
|
|
164
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_BackingFieldAttribute: never;
|
|
165
|
+
|
|
158
166
|
readonly Name: string;
|
|
159
167
|
}
|
|
160
168
|
|
|
@@ -167,6 +175,8 @@ export const BackingFieldAttribute: {
|
|
|
167
175
|
export type BackingFieldAttribute = BackingFieldAttribute$instance;
|
|
168
176
|
|
|
169
177
|
export interface CommentAttribute$instance extends Attribute {
|
|
178
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_CommentAttribute: never;
|
|
179
|
+
|
|
170
180
|
readonly Comment: string;
|
|
171
181
|
}
|
|
172
182
|
|
|
@@ -179,22 +189,32 @@ export const CommentAttribute: {
|
|
|
179
189
|
export type CommentAttribute = CommentAttribute$instance;
|
|
180
190
|
|
|
181
191
|
export interface DbContext$instance {
|
|
192
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_DbContext: never;
|
|
193
|
+
|
|
194
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
195
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IResettableService: never;
|
|
196
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Internal_IDbContextDependencies: never;
|
|
197
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Internal_IDbContextPoolable: never;
|
|
198
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Internal_IDbSetCache: never;
|
|
199
|
+
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
200
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
201
|
+
|
|
182
202
|
readonly ChangeTracker: ChangeTracker;
|
|
183
203
|
readonly ContextId: DbContextId;
|
|
184
204
|
readonly Database: DatabaseFacade;
|
|
185
205
|
readonly Model: IModel;
|
|
186
206
|
Add<TEntity>(entity: TEntity): EntityEntry_1<TEntity>;
|
|
187
207
|
Add(entity: unknown): EntityEntry;
|
|
188
|
-
AddAsync<TEntity>(entity: TEntity, cancellationToken?: CancellationToken):
|
|
189
|
-
AddAsync(entity: unknown, cancellationToken?: CancellationToken):
|
|
208
|
+
AddAsync<TEntity>(entity: TEntity, cancellationToken?: CancellationToken): ValueTask_1<EntityEntry_1<TEntity>>;
|
|
209
|
+
AddAsync(entity: unknown, cancellationToken?: CancellationToken): ValueTask_1<EntityEntry>;
|
|
190
210
|
AddRange(...entities: unknown[]): void;
|
|
191
|
-
AddRange(entities:
|
|
211
|
+
AddRange(entities: IEnumerable_1<unknown>): void;
|
|
192
212
|
AddRangeAsync(...entities: unknown[]): Task;
|
|
193
|
-
AddRangeAsync(entities:
|
|
213
|
+
AddRangeAsync(entities: IEnumerable_1<unknown>, cancellationToken?: CancellationToken): Task;
|
|
194
214
|
Attach<TEntity>(entity: TEntity): EntityEntry_1<TEntity>;
|
|
195
215
|
Attach(entity: unknown): EntityEntry;
|
|
196
216
|
AttachRange(...entities: unknown[]): void;
|
|
197
|
-
AttachRange(entities:
|
|
217
|
+
AttachRange(entities: IEnumerable_1<unknown>): void;
|
|
198
218
|
ConfigureConventions(configurationBuilder: ModelConfigurationBuilder): void;
|
|
199
219
|
Dispose(): void;
|
|
200
220
|
DisposeAsync(): ValueTask;
|
|
@@ -203,29 +223,29 @@ export interface DbContext$instance {
|
|
|
203
223
|
Equals(obj: unknown): boolean;
|
|
204
224
|
Find(entityType: Type, ...keyValues: unknown[]): unknown | undefined;
|
|
205
225
|
Find<TEntity>(...keyValues: unknown[]): TEntity | undefined;
|
|
206
|
-
FindAsync(entityType: Type, ...keyValues: unknown[]):
|
|
207
|
-
FindAsync(entityType: Type, keyValues: unknown[], cancellationToken: CancellationToken):
|
|
208
|
-
FindAsync<TEntity>(...keyValues: unknown[]):
|
|
209
|
-
FindAsync<TEntity>(keyValues: unknown[], cancellationToken: CancellationToken):
|
|
210
|
-
FromExpression<TResult>(expression:
|
|
226
|
+
FindAsync(entityType: Type, ...keyValues: unknown[]): ValueTask_1<unknown>;
|
|
227
|
+
FindAsync(entityType: Type, keyValues: unknown[], cancellationToken: CancellationToken): ValueTask_1<unknown>;
|
|
228
|
+
FindAsync<TEntity>(...keyValues: unknown[]): ValueTask_1<TEntity>;
|
|
229
|
+
FindAsync<TEntity>(keyValues: unknown[], cancellationToken: CancellationToken): ValueTask_1<TEntity>;
|
|
230
|
+
FromExpression<TResult>(expression: Expression_1<Func_1<IQueryable_1<TResult>>>): IQueryable_1<TResult>;
|
|
211
231
|
GetHashCode(): int;
|
|
212
232
|
OnConfiguring(optionsBuilder: DbContextOptionsBuilder): void;
|
|
213
233
|
OnModelCreating(modelBuilder: ModelBuilder): void;
|
|
214
234
|
Remove<TEntity>(entity: TEntity): EntityEntry_1<TEntity>;
|
|
215
235
|
Remove(entity: unknown): EntityEntry;
|
|
216
236
|
RemoveRange(...entities: unknown[]): void;
|
|
217
|
-
RemoveRange(entities:
|
|
237
|
+
RemoveRange(entities: IEnumerable_1<unknown>): void;
|
|
218
238
|
SaveChanges(): int;
|
|
219
239
|
SaveChanges(acceptAllChangesOnSuccess: boolean): int;
|
|
220
|
-
SaveChangesAsync(cancellationToken?: CancellationToken):
|
|
221
|
-
SaveChangesAsync(acceptAllChangesOnSuccess: boolean, cancellationToken?: CancellationToken):
|
|
240
|
+
SaveChangesAsync(cancellationToken?: CancellationToken): Task_1<System_Internal.Int32>;
|
|
241
|
+
SaveChangesAsync(acceptAllChangesOnSuccess: boolean, cancellationToken?: CancellationToken): Task_1<System_Internal.Int32>;
|
|
222
242
|
Set<TEntity>(): DbSet_1<TEntity>;
|
|
223
243
|
Set<TEntity>(name: string): DbSet_1<TEntity>;
|
|
224
244
|
ToString(): string | undefined;
|
|
225
245
|
Update<TEntity>(entity: TEntity): EntityEntry_1<TEntity>;
|
|
226
246
|
Update(entity: unknown): EntityEntry;
|
|
227
247
|
UpdateRange(...entities: unknown[]): void;
|
|
228
|
-
UpdateRange(entities:
|
|
248
|
+
UpdateRange(entities: IEnumerable_1<unknown>): void;
|
|
229
249
|
}
|
|
230
250
|
|
|
231
251
|
|
|
@@ -242,15 +262,17 @@ export interface __DbContext$views {
|
|
|
242
262
|
As_IDbSetCache(): Microsoft_EntityFrameworkCore_Internal_Internal.IDbSetCache$instance;
|
|
243
263
|
}
|
|
244
264
|
|
|
245
|
-
export interface DbContext$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IServiceProvider>, Microsoft_EntityFrameworkCore_Internal_Internal.IDbContextDependencies$instance, Microsoft_EntityFrameworkCore_Internal_Internal.IDbContextPoolable$instance, Microsoft_EntityFrameworkCore_Internal_Internal.IDbSetCache$instance {}
|
|
246
|
-
|
|
247
265
|
export type DbContext = DbContext$instance & __DbContext$views;
|
|
248
266
|
|
|
249
267
|
|
|
250
|
-
export interface DbContextOptions$instance {
|
|
268
|
+
export interface DbContextOptions$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IDbContextOptions$instance {
|
|
269
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_DbContextOptions: never;
|
|
270
|
+
|
|
271
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IDbContextOptions: never;
|
|
272
|
+
|
|
251
273
|
readonly ContextType: Type;
|
|
252
|
-
readonly Extensions:
|
|
253
|
-
readonly ExtensionsMap:
|
|
274
|
+
readonly Extensions: IEnumerable_1<IDbContextOptionsExtension>;
|
|
275
|
+
readonly ExtensionsMap: ImmutableSortedDictionary_2<Type, ValueTuple_2<IDbContextOptionsExtension, System_Internal.Int32>>;
|
|
254
276
|
IsFrozen: boolean;
|
|
255
277
|
Equals(obj: unknown): boolean;
|
|
256
278
|
Equals(other: DbContextOptions): boolean;
|
|
@@ -262,7 +284,7 @@ export interface DbContextOptions$instance {
|
|
|
262
284
|
}
|
|
263
285
|
|
|
264
286
|
|
|
265
|
-
export const DbContextOptions: (abstract new() => DbContextOptions) & (abstract new(extensions:
|
|
287
|
+
export const DbContextOptions: (abstract new() => DbContextOptions) & (abstract new(extensions: IReadOnlyDictionary_2<Type, IDbContextOptionsExtension>) => DbContextOptions) & (abstract new(extensions: ImmutableSortedDictionary_2<Type, ValueTuple_2<IDbContextOptionsExtension, System_Internal.Int32>>) => DbContextOptions) & {
|
|
266
288
|
};
|
|
267
289
|
|
|
268
290
|
|
|
@@ -270,12 +292,14 @@ export interface __DbContextOptions$views {
|
|
|
270
292
|
As_IDbContextOptions(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IDbContextOptions$instance;
|
|
271
293
|
}
|
|
272
294
|
|
|
273
|
-
export interface DbContextOptions$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IDbContextOptions$instance {}
|
|
274
|
-
|
|
275
295
|
export type DbContextOptions = DbContextOptions$instance & __DbContextOptions$views;
|
|
276
296
|
|
|
277
297
|
|
|
278
298
|
export interface DbContextOptions_1$instance<TContext extends DbContext> extends DbContextOptions$instance {
|
|
299
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_DbContextOptions_1: never;
|
|
300
|
+
|
|
301
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IDbContextOptions: never;
|
|
302
|
+
|
|
279
303
|
readonly ContextType: Type;
|
|
280
304
|
FindExtension<TExtension extends IDbContextOptionsExtension>(): TExtension | undefined;
|
|
281
305
|
WithExtension<TExtension extends IDbContextOptionsExtension>(extension: TExtension): DbContextOptions;
|
|
@@ -284,7 +308,7 @@ export interface DbContextOptions_1$instance<TContext extends DbContext> extends
|
|
|
284
308
|
|
|
285
309
|
export const DbContextOptions_1: {
|
|
286
310
|
new<TContext extends DbContext>(): DbContextOptions_1<TContext>;
|
|
287
|
-
new<TContext extends DbContext>(extensions:
|
|
311
|
+
new<TContext extends DbContext>(extensions: IReadOnlyDictionary_2<Type, IDbContextOptionsExtension>): DbContextOptions_1<TContext>;
|
|
288
312
|
};
|
|
289
313
|
|
|
290
314
|
|
|
@@ -295,28 +319,32 @@ export interface __DbContextOptions_1$views<TContext extends DbContext> {
|
|
|
295
319
|
export type DbContextOptions_1<TContext extends DbContext> = DbContextOptions_1$instance<TContext> & __DbContextOptions_1$views<TContext>;
|
|
296
320
|
|
|
297
321
|
|
|
298
|
-
export interface DbContextOptionsBuilder$instance {
|
|
322
|
+
export interface DbContextOptionsBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IDbContextOptionsBuilderInfrastructure$instance {
|
|
323
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_DbContextOptionsBuilder: never;
|
|
324
|
+
|
|
325
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IDbContextOptionsBuilderInfrastructure: never;
|
|
326
|
+
|
|
299
327
|
readonly IsConfigured: boolean;
|
|
300
|
-
readonly Options: DbContextOptions
|
|
301
|
-
AddInterceptors(interceptors:
|
|
328
|
+
readonly Options: DbContextOptions;
|
|
329
|
+
AddInterceptors(interceptors: IEnumerable_1<IInterceptor>): DbContextOptionsBuilder;
|
|
302
330
|
AddInterceptors(...interceptors: IInterceptor[]): DbContextOptionsBuilder;
|
|
303
331
|
ConfigureLoggingCacheTime(timeSpan: TimeSpan): DbContextOptionsBuilder;
|
|
304
|
-
ConfigureWarnings(warningsConfigurationBuilderAction:
|
|
332
|
+
ConfigureWarnings(warningsConfigurationBuilderAction: Action_1<WarningsConfigurationBuilder>): DbContextOptionsBuilder;
|
|
305
333
|
EnableDetailedErrors(detailedErrorsEnabled?: boolean): DbContextOptionsBuilder;
|
|
306
334
|
EnableSensitiveDataLogging(sensitiveDataLoggingEnabled?: boolean): DbContextOptionsBuilder;
|
|
307
335
|
EnableServiceProviderCaching(cacheServiceProvider?: boolean): DbContextOptionsBuilder;
|
|
308
336
|
EnableThreadSafetyChecks(enableChecks?: boolean): DbContextOptionsBuilder;
|
|
309
337
|
Equals(obj: unknown): boolean;
|
|
310
338
|
GetHashCode(): int;
|
|
311
|
-
LogTo(action:
|
|
312
|
-
LogTo(action:
|
|
313
|
-
LogTo(action:
|
|
314
|
-
LogTo(action:
|
|
315
|
-
LogTo(filter:
|
|
339
|
+
LogTo(action: Action_1<System_Internal.String>, minimumLevel?: LogLevel, options?: Nullable_1<DbContextLoggerOptions>): DbContextOptionsBuilder;
|
|
340
|
+
LogTo(action: Action_1<System_Internal.String>, events: IEnumerable_1<EventId>, minimumLevel?: LogLevel, options?: Nullable_1<DbContextLoggerOptions>): DbContextOptionsBuilder;
|
|
341
|
+
LogTo(action: Action_1<System_Internal.String>, categories: IEnumerable_1<System_Internal.String>, minimumLevel?: LogLevel, options?: Nullable_1<DbContextLoggerOptions>): DbContextOptionsBuilder;
|
|
342
|
+
LogTo(action: Action_1<System_Internal.String>, filter: Func_3<EventId, LogLevel, System_Internal.Boolean>, options?: Nullable_1<DbContextLoggerOptions>): DbContextOptionsBuilder;
|
|
343
|
+
LogTo(filter: Func_3<EventId, LogLevel, System_Internal.Boolean>, logger: Action_1<EventData>): DbContextOptionsBuilder;
|
|
316
344
|
ReplaceService<TService, TImplementation extends TService>(): DbContextOptionsBuilder;
|
|
317
345
|
ToString(): string | undefined;
|
|
318
346
|
UseApplicationServiceProvider(serviceProvider: IServiceProvider): DbContextOptionsBuilder;
|
|
319
|
-
UseAsyncSeeding(seedAsync:
|
|
347
|
+
UseAsyncSeeding(seedAsync: Func_4<DbContext, System_Internal.Boolean, CancellationToken, Task>): DbContextOptionsBuilder;
|
|
320
348
|
UseInternalServiceProvider(serviceProvider: IServiceProvider): DbContextOptionsBuilder;
|
|
321
349
|
UseLoggerFactory(loggerFactory: ILoggerFactory): DbContextOptionsBuilder;
|
|
322
350
|
UseMemoryCache(memoryCache: IMemoryCache): DbContextOptionsBuilder;
|
|
@@ -324,7 +352,7 @@ export interface DbContextOptionsBuilder$instance {
|
|
|
324
352
|
UseQueryTrackingBehavior(queryTrackingBehavior: QueryTrackingBehavior): DbContextOptionsBuilder;
|
|
325
353
|
UseRootApplicationServiceProvider(rootServiceProvider: IServiceProvider): DbContextOptionsBuilder;
|
|
326
354
|
UseRootApplicationServiceProvider(): DbContextOptionsBuilder;
|
|
327
|
-
UseSeeding(seed:
|
|
355
|
+
UseSeeding(seed: Action_2<DbContext, System_Internal.Boolean>): DbContextOptionsBuilder;
|
|
328
356
|
}
|
|
329
357
|
|
|
330
358
|
|
|
@@ -338,32 +366,34 @@ export interface __DbContextOptionsBuilder$views {
|
|
|
338
366
|
As_IDbContextOptionsBuilderInfrastructure(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IDbContextOptionsBuilderInfrastructure$instance;
|
|
339
367
|
}
|
|
340
368
|
|
|
341
|
-
export interface DbContextOptionsBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IDbContextOptionsBuilderInfrastructure$instance {}
|
|
342
|
-
|
|
343
369
|
export type DbContextOptionsBuilder = DbContextOptionsBuilder$instance & __DbContextOptionsBuilder$views;
|
|
344
370
|
|
|
345
371
|
|
|
346
|
-
export interface DbContextOptionsBuilder_1$instance<TContext extends DbContext> extends DbContextOptionsBuilder$instance {
|
|
347
|
-
|
|
348
|
-
|
|
372
|
+
export interface DbContextOptionsBuilder_1$instance<TContext extends DbContext> extends DbContextOptionsBuilder$instance, Microsoft_EntityFrameworkCore_Infrastructure_Internal.IDbContextOptionsBuilderInfrastructure$instance {
|
|
373
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_DbContextOptionsBuilder_1: never;
|
|
374
|
+
|
|
375
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IDbContextOptionsBuilderInfrastructure: never;
|
|
376
|
+
|
|
377
|
+
AddInterceptors(interceptors: IEnumerable_1<IInterceptor>): DbContextOptionsBuilder_1<TContext>;
|
|
378
|
+
AddInterceptors(interceptors: IEnumerable_1<IInterceptor>): DbContextOptionsBuilder;
|
|
349
379
|
AddInterceptors(...interceptors: IInterceptor[]): DbContextOptionsBuilder;
|
|
350
380
|
AddOrUpdateExtension<TExtension extends IDbContextOptionsExtension>(extension: TExtension): void;
|
|
351
381
|
ConfigureLoggingCacheTime(timeSpan: TimeSpan): DbContextOptionsBuilder;
|
|
352
|
-
ConfigureWarnings(warningsConfigurationBuilderAction:
|
|
382
|
+
ConfigureWarnings(warningsConfigurationBuilderAction: Action_1<WarningsConfigurationBuilder>): DbContextOptionsBuilder;
|
|
353
383
|
EnableDetailedErrors(detailedErrorsEnabled?: boolean): DbContextOptionsBuilder;
|
|
354
384
|
EnableSensitiveDataLogging(sensitiveDataLoggingEnabled?: boolean): DbContextOptionsBuilder;
|
|
355
385
|
EnableServiceProviderCaching(cacheServiceProvider?: boolean): DbContextOptionsBuilder;
|
|
356
386
|
EnableThreadSafetyChecks(enableChecks?: boolean): DbContextOptionsBuilder;
|
|
357
|
-
LogTo(action:
|
|
358
|
-
LogTo(action:
|
|
359
|
-
LogTo(action:
|
|
360
|
-
LogTo(action:
|
|
361
|
-
LogTo(action:
|
|
362
|
-
LogTo(filter:
|
|
387
|
+
LogTo(action: Action_1<System_Internal.String>, categories: IEnumerable_1<System_Internal.String>, minimumLevel?: LogLevel, options?: Nullable_1<DbContextLoggerOptions>): DbContextOptionsBuilder_1<TContext>;
|
|
388
|
+
LogTo(action: Action_1<System_Internal.String>, filter: Func_3<EventId, LogLevel, System_Internal.Boolean>, options?: Nullable_1<DbContextLoggerOptions>): DbContextOptionsBuilder_1<TContext>;
|
|
389
|
+
LogTo(action: Action_1<System_Internal.String>, minimumLevel?: LogLevel, options?: Nullable_1<DbContextLoggerOptions>): DbContextOptionsBuilder;
|
|
390
|
+
LogTo(action: Action_1<System_Internal.String>, events: IEnumerable_1<EventId>, minimumLevel?: LogLevel, options?: Nullable_1<DbContextLoggerOptions>): DbContextOptionsBuilder;
|
|
391
|
+
LogTo(action: Action_1<System_Internal.String>, filter: Func_3<EventId, LogLevel, System_Internal.Boolean>, options?: Nullable_1<DbContextLoggerOptions>): DbContextOptionsBuilder;
|
|
392
|
+
LogTo(filter: Func_3<EventId, LogLevel, System_Internal.Boolean>, logger: Action_1<EventData>): DbContextOptionsBuilder;
|
|
363
393
|
ReplaceService<TService, TImplementation extends TService>(): DbContextOptionsBuilder;
|
|
364
394
|
UseApplicationServiceProvider(serviceProvider: IServiceProvider): DbContextOptionsBuilder;
|
|
365
|
-
UseAsyncSeeding(seedAsync:
|
|
366
|
-
UseAsyncSeeding(seedAsync:
|
|
395
|
+
UseAsyncSeeding(seedAsync: Func_4<DbContext, System_Internal.Boolean, CancellationToken, Task>): DbContextOptionsBuilder_1<TContext>;
|
|
396
|
+
UseAsyncSeeding(seedAsync: Func_4<DbContext, System_Internal.Boolean, CancellationToken, Task>): DbContextOptionsBuilder;
|
|
367
397
|
UseInternalServiceProvider(serviceProvider: IServiceProvider): DbContextOptionsBuilder;
|
|
368
398
|
UseLoggerFactory(loggerFactory: ILoggerFactory): DbContextOptionsBuilder;
|
|
369
399
|
UseMemoryCache(memoryCache: IMemoryCache): DbContextOptionsBuilder;
|
|
@@ -371,8 +401,8 @@ export interface DbContextOptionsBuilder_1$instance<TContext extends DbContext>
|
|
|
371
401
|
UseQueryTrackingBehavior(queryTrackingBehavior: QueryTrackingBehavior): DbContextOptionsBuilder;
|
|
372
402
|
UseRootApplicationServiceProvider(rootServiceProvider: IServiceProvider): DbContextOptionsBuilder;
|
|
373
403
|
UseRootApplicationServiceProvider(): DbContextOptionsBuilder;
|
|
374
|
-
UseSeeding(seed:
|
|
375
|
-
UseSeeding(seed:
|
|
404
|
+
UseSeeding(seed: Action_2<DbContext, System_Internal.Boolean>): DbContextOptionsBuilder_1<TContext>;
|
|
405
|
+
UseSeeding(seed: Action_2<DbContext, System_Internal.Boolean>): DbContextOptionsBuilder;
|
|
376
406
|
}
|
|
377
407
|
|
|
378
408
|
|
|
@@ -386,12 +416,12 @@ export interface __DbContextOptionsBuilder_1$views<TContext extends DbContext> {
|
|
|
386
416
|
As_IDbContextOptionsBuilderInfrastructure(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IDbContextOptionsBuilderInfrastructure$instance;
|
|
387
417
|
}
|
|
388
418
|
|
|
389
|
-
export interface DbContextOptionsBuilder_1$instance<TContext extends DbContext> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IDbContextOptionsBuilderInfrastructure$instance {}
|
|
390
|
-
|
|
391
419
|
export type DbContextOptionsBuilder_1<TContext extends DbContext> = DbContextOptionsBuilder_1$instance<TContext> & __DbContextOptionsBuilder_1$views<TContext>;
|
|
392
420
|
|
|
393
421
|
|
|
394
422
|
export interface DbFunctionAttribute$instance extends Attribute {
|
|
423
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_DbFunctionAttribute: never;
|
|
424
|
+
|
|
395
425
|
IsBuiltIn: boolean;
|
|
396
426
|
IsNullable: boolean;
|
|
397
427
|
readonly IsNullableHasValue: boolean;
|
|
@@ -411,6 +441,8 @@ export const DbFunctionAttribute: {
|
|
|
411
441
|
export type DbFunctionAttribute = DbFunctionAttribute$instance;
|
|
412
442
|
|
|
413
443
|
export interface DbFunctions$instance {
|
|
444
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_DbFunctions: never;
|
|
445
|
+
|
|
414
446
|
Equals(obj: unknown): boolean;
|
|
415
447
|
GetHashCode(): int;
|
|
416
448
|
ToString(): string | undefined;
|
|
@@ -424,6 +456,8 @@ export const DbFunctions: {
|
|
|
424
456
|
export type DbFunctions = DbFunctions$instance;
|
|
425
457
|
|
|
426
458
|
export interface DbLoggerCategory_ChangeTracking$instance extends LoggerCategory_1<DbLoggerCategory_ChangeTracking> {
|
|
459
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_DbLoggerCategory_ChangeTracking: never;
|
|
460
|
+
|
|
427
461
|
}
|
|
428
462
|
|
|
429
463
|
|
|
@@ -435,6 +469,8 @@ export const DbLoggerCategory_ChangeTracking: {
|
|
|
435
469
|
export type DbLoggerCategory_ChangeTracking = DbLoggerCategory_ChangeTracking$instance;
|
|
436
470
|
|
|
437
471
|
export interface DbLoggerCategory_Database$instance extends LoggerCategory_1<DbLoggerCategory_Database> {
|
|
472
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_DbLoggerCategory_Database: never;
|
|
473
|
+
|
|
438
474
|
}
|
|
439
475
|
|
|
440
476
|
|
|
@@ -446,6 +482,8 @@ export const DbLoggerCategory_Database: {
|
|
|
446
482
|
export type DbLoggerCategory_Database = DbLoggerCategory_Database$instance;
|
|
447
483
|
|
|
448
484
|
export interface DbLoggerCategory_Database_Command$instance extends LoggerCategory_1<DbLoggerCategory_Database_Command> {
|
|
485
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_DbLoggerCategory_Database_Command: never;
|
|
486
|
+
|
|
449
487
|
}
|
|
450
488
|
|
|
451
489
|
|
|
@@ -457,6 +495,8 @@ export const DbLoggerCategory_Database_Command: {
|
|
|
457
495
|
export type DbLoggerCategory_Database_Command = DbLoggerCategory_Database_Command$instance;
|
|
458
496
|
|
|
459
497
|
export interface DbLoggerCategory_Database_Connection$instance extends LoggerCategory_1<DbLoggerCategory_Database_Connection> {
|
|
498
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_DbLoggerCategory_Database_Connection: never;
|
|
499
|
+
|
|
460
500
|
}
|
|
461
501
|
|
|
462
502
|
|
|
@@ -468,6 +508,8 @@ export const DbLoggerCategory_Database_Connection: {
|
|
|
468
508
|
export type DbLoggerCategory_Database_Connection = DbLoggerCategory_Database_Connection$instance;
|
|
469
509
|
|
|
470
510
|
export interface DbLoggerCategory_Database_Transaction$instance extends LoggerCategory_1<DbLoggerCategory_Database_Transaction> {
|
|
511
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_DbLoggerCategory_Database_Transaction: never;
|
|
512
|
+
|
|
471
513
|
}
|
|
472
514
|
|
|
473
515
|
|
|
@@ -479,6 +521,8 @@ export const DbLoggerCategory_Database_Transaction: {
|
|
|
479
521
|
export type DbLoggerCategory_Database_Transaction = DbLoggerCategory_Database_Transaction$instance;
|
|
480
522
|
|
|
481
523
|
export interface DbLoggerCategory_Infrastructure$instance extends LoggerCategory_1<DbLoggerCategory_Infrastructure> {
|
|
524
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_DbLoggerCategory_Infrastructure: never;
|
|
525
|
+
|
|
482
526
|
}
|
|
483
527
|
|
|
484
528
|
|
|
@@ -490,6 +534,8 @@ export const DbLoggerCategory_Infrastructure: {
|
|
|
490
534
|
export type DbLoggerCategory_Infrastructure = DbLoggerCategory_Infrastructure$instance;
|
|
491
535
|
|
|
492
536
|
export interface DbLoggerCategory_Migrations$instance extends LoggerCategory_1<DbLoggerCategory_Migrations> {
|
|
537
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_DbLoggerCategory_Migrations: never;
|
|
538
|
+
|
|
493
539
|
}
|
|
494
540
|
|
|
495
541
|
|
|
@@ -501,6 +547,8 @@ export const DbLoggerCategory_Migrations: {
|
|
|
501
547
|
export type DbLoggerCategory_Migrations = DbLoggerCategory_Migrations$instance;
|
|
502
548
|
|
|
503
549
|
export interface DbLoggerCategory_Model$instance extends LoggerCategory_1<DbLoggerCategory_Model> {
|
|
550
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_DbLoggerCategory_Model: never;
|
|
551
|
+
|
|
504
552
|
}
|
|
505
553
|
|
|
506
554
|
|
|
@@ -512,6 +560,8 @@ export const DbLoggerCategory_Model: {
|
|
|
512
560
|
export type DbLoggerCategory_Model = DbLoggerCategory_Model$instance;
|
|
513
561
|
|
|
514
562
|
export interface DbLoggerCategory_Model_Validation$instance extends LoggerCategory_1<DbLoggerCategory_Model_Validation> {
|
|
563
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_DbLoggerCategory_Model_Validation: never;
|
|
564
|
+
|
|
515
565
|
}
|
|
516
566
|
|
|
517
567
|
|
|
@@ -523,6 +573,8 @@ export const DbLoggerCategory_Model_Validation: {
|
|
|
523
573
|
export type DbLoggerCategory_Model_Validation = DbLoggerCategory_Model_Validation$instance;
|
|
524
574
|
|
|
525
575
|
export interface DbLoggerCategory_Query$instance extends LoggerCategory_1<DbLoggerCategory_Query> {
|
|
576
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_DbLoggerCategory_Query: never;
|
|
577
|
+
|
|
526
578
|
}
|
|
527
579
|
|
|
528
580
|
|
|
@@ -534,6 +586,8 @@ export const DbLoggerCategory_Query: {
|
|
|
534
586
|
export type DbLoggerCategory_Query = DbLoggerCategory_Query$instance;
|
|
535
587
|
|
|
536
588
|
export interface DbLoggerCategory_Scaffolding$instance extends LoggerCategory_1<DbLoggerCategory_Scaffolding> {
|
|
589
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_DbLoggerCategory_Scaffolding: never;
|
|
590
|
+
|
|
537
591
|
}
|
|
538
592
|
|
|
539
593
|
|
|
@@ -545,6 +599,8 @@ export const DbLoggerCategory_Scaffolding: {
|
|
|
545
599
|
export type DbLoggerCategory_Scaffolding = DbLoggerCategory_Scaffolding$instance;
|
|
546
600
|
|
|
547
601
|
export interface DbLoggerCategory_Update$instance extends LoggerCategory_1<DbLoggerCategory_Update> {
|
|
602
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_DbLoggerCategory_Update: never;
|
|
603
|
+
|
|
548
604
|
}
|
|
549
605
|
|
|
550
606
|
|
|
@@ -555,34 +611,43 @@ export const DbLoggerCategory_Update: {
|
|
|
555
611
|
|
|
556
612
|
export type DbLoggerCategory_Update = DbLoggerCategory_Update$instance;
|
|
557
613
|
|
|
558
|
-
export interface DbSet_1$instance<TEntity> {
|
|
614
|
+
export interface DbSet_1$instance<TEntity> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IServiceProvider>, System_Collections_Generic_Internal.IEnumerable_1<TEntity>, System_ComponentModel_Internal.IListSource, System_Linq_Internal.IQueryable_1<TEntity> {
|
|
615
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_DbSet_1: never;
|
|
616
|
+
|
|
617
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
618
|
+
readonly __tsonic_iface_System_Collections_Generic_IEnumerable_1: never;
|
|
619
|
+
readonly __tsonic_iface_System_Collections_IEnumerable: never;
|
|
620
|
+
readonly __tsonic_iface_System_ComponentModel_IListSource: never;
|
|
621
|
+
readonly __tsonic_iface_System_Linq_IQueryable: never;
|
|
622
|
+
readonly __tsonic_iface_System_Linq_IQueryable_1: never;
|
|
623
|
+
|
|
559
624
|
readonly EntityType: IEntityType;
|
|
560
625
|
readonly Local: LocalView_1<TEntity>;
|
|
561
626
|
Add(entity: TEntity): EntityEntry_1<TEntity>;
|
|
562
|
-
AddAsync(entity: TEntity, cancellationToken?: CancellationToken):
|
|
627
|
+
AddAsync(entity: TEntity, cancellationToken?: CancellationToken): ValueTask_1<EntityEntry_1<TEntity>>;
|
|
563
628
|
AddRange(...entities: TEntity[]): void;
|
|
564
|
-
AddRange(entities:
|
|
629
|
+
AddRange(entities: IEnumerable_1<TEntity>): void;
|
|
565
630
|
AddRangeAsync(...entities: TEntity[]): Task;
|
|
566
|
-
AddRangeAsync(entities:
|
|
567
|
-
AsAsyncEnumerable():
|
|
568
|
-
AsQueryable():
|
|
631
|
+
AddRangeAsync(entities: IEnumerable_1<TEntity>, cancellationToken?: CancellationToken): Task;
|
|
632
|
+
AsAsyncEnumerable(): IAsyncEnumerable_1<TEntity>;
|
|
633
|
+
AsQueryable(): IQueryable_1<TEntity>;
|
|
569
634
|
Attach(entity: TEntity): EntityEntry_1<TEntity>;
|
|
570
635
|
AttachRange(...entities: TEntity[]): void;
|
|
571
|
-
AttachRange(entities:
|
|
636
|
+
AttachRange(entities: IEnumerable_1<TEntity>): void;
|
|
572
637
|
Entry(entity: TEntity): EntityEntry_1<TEntity>;
|
|
573
638
|
Equals(obj: unknown): boolean;
|
|
574
639
|
Find(...keyValues: unknown[]): TEntity | undefined;
|
|
575
|
-
FindAsync(...keyValues: unknown[]):
|
|
576
|
-
FindAsync(keyValues: unknown[], cancellationToken: CancellationToken):
|
|
577
|
-
GetAsyncEnumerator(cancellationToken?: CancellationToken):
|
|
640
|
+
FindAsync(...keyValues: unknown[]): ValueTask_1<TEntity>;
|
|
641
|
+
FindAsync(keyValues: unknown[], cancellationToken: CancellationToken): ValueTask_1<TEntity>;
|
|
642
|
+
GetAsyncEnumerator(cancellationToken?: CancellationToken): IAsyncEnumerator_1<TEntity>;
|
|
578
643
|
GetHashCode(): int;
|
|
579
644
|
Remove(entity: TEntity): EntityEntry_1<TEntity>;
|
|
580
645
|
RemoveRange(...entities: TEntity[]): void;
|
|
581
|
-
RemoveRange(entities:
|
|
646
|
+
RemoveRange(entities: IEnumerable_1<TEntity>): void;
|
|
582
647
|
ToString(): string | undefined;
|
|
583
648
|
Update(entity: TEntity): EntityEntry_1<TEntity>;
|
|
584
649
|
UpdateRange(...entities: TEntity[]): void;
|
|
585
|
-
UpdateRange(entities:
|
|
650
|
+
UpdateRange(entities: IEnumerable_1<TEntity>): void;
|
|
586
651
|
}
|
|
587
652
|
|
|
588
653
|
|
|
@@ -594,12 +659,14 @@ export interface __DbSet_1$views<TEntity> {
|
|
|
594
659
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IServiceProvider>;
|
|
595
660
|
}
|
|
596
661
|
|
|
597
|
-
export interface DbSet_1$instance<TEntity> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IServiceProvider> {}
|
|
598
|
-
|
|
599
662
|
export type DbSet_1<TEntity> = DbSet_1$instance<TEntity> & __DbSet_1$views<TEntity>;
|
|
600
663
|
|
|
601
664
|
|
|
602
665
|
export interface DbUpdateConcurrencyException$instance extends DbUpdateException {
|
|
666
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_DbUpdateConcurrencyException: never;
|
|
667
|
+
|
|
668
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
669
|
+
|
|
603
670
|
}
|
|
604
671
|
|
|
605
672
|
|
|
@@ -607,8 +674,8 @@ export const DbUpdateConcurrencyException: {
|
|
|
607
674
|
new(): DbUpdateConcurrencyException;
|
|
608
675
|
new(message: string): DbUpdateConcurrencyException;
|
|
609
676
|
new(message: string, innerException: Exception): DbUpdateConcurrencyException;
|
|
610
|
-
new(message: string, innerException: Exception, entries:
|
|
611
|
-
new(message: string, entries:
|
|
677
|
+
new(message: string, innerException: Exception, entries: IReadOnlyList_1<IUpdateEntry>): DbUpdateConcurrencyException;
|
|
678
|
+
new(message: string, entries: IReadOnlyList_1<IUpdateEntry>): DbUpdateConcurrencyException;
|
|
612
679
|
new(info: SerializationInfo, context: StreamingContext): DbUpdateConcurrencyException;
|
|
613
680
|
};
|
|
614
681
|
|
|
@@ -616,7 +683,11 @@ export const DbUpdateConcurrencyException: {
|
|
|
616
683
|
export type DbUpdateConcurrencyException = DbUpdateConcurrencyException$instance;
|
|
617
684
|
|
|
618
685
|
export interface DbUpdateException$instance extends Exception {
|
|
619
|
-
readonly
|
|
686
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_DbUpdateException: never;
|
|
687
|
+
|
|
688
|
+
readonly __tsonic_iface_System_Runtime_Serialization_ISerializable: never;
|
|
689
|
+
|
|
690
|
+
readonly Entries: IReadOnlyList_1<EntityEntry>;
|
|
620
691
|
}
|
|
621
692
|
|
|
622
693
|
|
|
@@ -624,10 +695,10 @@ export const DbUpdateException: {
|
|
|
624
695
|
new(): DbUpdateException;
|
|
625
696
|
new(message: string): DbUpdateException;
|
|
626
697
|
new(message: string, innerException: Exception): DbUpdateException;
|
|
627
|
-
new(message: string, entries:
|
|
628
|
-
new(message: string, innerException: Exception, entries:
|
|
629
|
-
new(message: string, entries:
|
|
630
|
-
new(message: string, innerException: Exception, entries:
|
|
698
|
+
new(message: string, entries: IReadOnlyList_1<IUpdateEntry>): DbUpdateException;
|
|
699
|
+
new(message: string, innerException: Exception, entries: IReadOnlyList_1<IUpdateEntry>): DbUpdateException;
|
|
700
|
+
new(message: string, entries: IReadOnlyList_1<EntityEntry>): DbUpdateException;
|
|
701
|
+
new(message: string, innerException: Exception, entries: IReadOnlyList_1<EntityEntry>): DbUpdateException;
|
|
631
702
|
new(info: SerializationInfo, context: StreamingContext): DbUpdateException;
|
|
632
703
|
};
|
|
633
704
|
|
|
@@ -635,6 +706,8 @@ export const DbUpdateException: {
|
|
|
635
706
|
export type DbUpdateException = DbUpdateException$instance;
|
|
636
707
|
|
|
637
708
|
export interface DeleteBehaviorAttribute$instance extends Attribute {
|
|
709
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_DeleteBehaviorAttribute: never;
|
|
710
|
+
|
|
638
711
|
readonly Behavior: DeleteBehavior;
|
|
639
712
|
}
|
|
640
713
|
|
|
@@ -647,6 +720,8 @@ export const DeleteBehaviorAttribute: {
|
|
|
647
720
|
export type DeleteBehaviorAttribute = DeleteBehaviorAttribute$instance;
|
|
648
721
|
|
|
649
722
|
export interface EntityTypeConfigurationAttribute$instance extends Attribute {
|
|
723
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_EntityTypeConfigurationAttribute: never;
|
|
724
|
+
|
|
650
725
|
readonly EntityTypeConfigurationType: Type;
|
|
651
726
|
}
|
|
652
727
|
|
|
@@ -659,6 +734,8 @@ export const EntityTypeConfigurationAttribute: {
|
|
|
659
734
|
export type EntityTypeConfigurationAttribute = EntityTypeConfigurationAttribute$instance;
|
|
660
735
|
|
|
661
736
|
export interface EntityTypeConfigurationAttribute_2$instance<TConfiguration extends IEntityTypeConfiguration_1<TEntity>, TEntity> extends EntityTypeConfigurationAttribute {
|
|
737
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_EntityTypeConfigurationAttribute_2: never;
|
|
738
|
+
|
|
662
739
|
}
|
|
663
740
|
|
|
664
741
|
|
|
@@ -670,6 +747,8 @@ export const EntityTypeConfigurationAttribute_2: {
|
|
|
670
747
|
export type EntityTypeConfigurationAttribute_2<TConfiguration extends IEntityTypeConfiguration_1<TEntity>, TEntity> = EntityTypeConfigurationAttribute_2$instance<TConfiguration, TEntity>;
|
|
671
748
|
|
|
672
749
|
export interface IndexAttribute$instance extends Attribute {
|
|
750
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_IndexAttribute: never;
|
|
751
|
+
|
|
673
752
|
AllDescending: boolean;
|
|
674
753
|
get IsDescending(): boolean[] | undefined;
|
|
675
754
|
set IsDescending(value: boolean[] | undefined);
|
|
@@ -677,7 +756,7 @@ export interface IndexAttribute$instance extends Attribute {
|
|
|
677
756
|
readonly IsUniqueHasValue: boolean;
|
|
678
757
|
get Name(): string | undefined;
|
|
679
758
|
set Name(value: string | undefined);
|
|
680
|
-
readonly PropertyNames:
|
|
759
|
+
readonly PropertyNames: IReadOnlyList_1<System_Internal.String>;
|
|
681
760
|
}
|
|
682
761
|
|
|
683
762
|
|
|
@@ -690,6 +769,8 @@ export const IndexAttribute: {
|
|
|
690
769
|
export type IndexAttribute = IndexAttribute$instance;
|
|
691
770
|
|
|
692
771
|
export interface KeylessAttribute$instance extends Attribute {
|
|
772
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_KeylessAttribute: never;
|
|
773
|
+
|
|
693
774
|
}
|
|
694
775
|
|
|
695
776
|
|
|
@@ -701,15 +782,19 @@ export const KeylessAttribute: {
|
|
|
701
782
|
export type KeylessAttribute = KeylessAttribute$instance;
|
|
702
783
|
|
|
703
784
|
export interface ModelBuilder$instance {
|
|
785
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ModelBuilder: never;
|
|
786
|
+
|
|
787
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
788
|
+
|
|
704
789
|
readonly Model: IMutableModel;
|
|
705
790
|
ApplyConfiguration<TEntity>(configuration: IEntityTypeConfiguration_1<TEntity>): ModelBuilder;
|
|
706
|
-
ApplyConfigurationsFromAssembly(assembly: Assembly, predicate?:
|
|
791
|
+
ApplyConfigurationsFromAssembly(assembly: Assembly, predicate?: Func_2<Type, System_Internal.Boolean>): ModelBuilder;
|
|
707
792
|
Entity<TEntity>(): EntityTypeBuilder_1<TEntity>;
|
|
708
793
|
Entity(type: Type): EntityTypeBuilder;
|
|
709
794
|
Entity(name: string): EntityTypeBuilder;
|
|
710
|
-
Entity<TEntity>(buildAction:
|
|
711
|
-
Entity(type: Type, buildAction:
|
|
712
|
-
Entity(name: string, buildAction:
|
|
795
|
+
Entity<TEntity>(buildAction: Action_1<EntityTypeBuilder_1<TEntity>>): ModelBuilder;
|
|
796
|
+
Entity(type: Type, buildAction: Action_1<EntityTypeBuilder>): ModelBuilder;
|
|
797
|
+
Entity(name: string, buildAction: Action_1<EntityTypeBuilder>): ModelBuilder;
|
|
713
798
|
Equals(obj: unknown): boolean;
|
|
714
799
|
FinalizeModel(): IModel;
|
|
715
800
|
GetHashCode(): int;
|
|
@@ -723,8 +808,8 @@ export interface ModelBuilder$instance {
|
|
|
723
808
|
Owned(type: Type): OwnedEntityTypeBuilder;
|
|
724
809
|
SharedTypeEntity<TEntity>(name: string): EntityTypeBuilder_1<TEntity>;
|
|
725
810
|
SharedTypeEntity(name: string, type: Type): EntityTypeBuilder;
|
|
726
|
-
SharedTypeEntity<TEntity>(name: string, buildAction:
|
|
727
|
-
SharedTypeEntity(name: string, type: Type, buildAction:
|
|
811
|
+
SharedTypeEntity<TEntity>(name: string, buildAction: Action_1<EntityTypeBuilder_1<TEntity>>): ModelBuilder;
|
|
812
|
+
SharedTypeEntity(name: string, type: Type, buildAction: Action_1<EntityTypeBuilder>): ModelBuilder;
|
|
728
813
|
ToString(): string | undefined;
|
|
729
814
|
UsePropertyAccessMode(propertyAccessMode: PropertyAccessMode): ModelBuilder;
|
|
730
815
|
}
|
|
@@ -743,29 +828,29 @@ export interface __ModelBuilder$views {
|
|
|
743
828
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionModelBuilder>;
|
|
744
829
|
}
|
|
745
830
|
|
|
746
|
-
export interface ModelBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionModelBuilder> {}
|
|
747
|
-
|
|
748
831
|
export type ModelBuilder = ModelBuilder$instance & __ModelBuilder$views;
|
|
749
832
|
|
|
750
833
|
|
|
751
834
|
export interface ModelConfigurationBuilder$instance {
|
|
835
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ModelConfigurationBuilder: never;
|
|
836
|
+
|
|
752
837
|
readonly Conventions: ConventionSetBuilder;
|
|
753
838
|
readonly ModelConfiguration: ModelConfiguration;
|
|
754
839
|
ComplexProperties<TProperty>(): ComplexPropertiesConfigurationBuilder_1<TProperty>;
|
|
755
840
|
ComplexProperties(propertyType: Type): ComplexPropertiesConfigurationBuilder;
|
|
756
841
|
CreateModelBuilder(modelDependencies: ModelDependencies): ModelBuilder;
|
|
757
842
|
DefaultTypeMapping<TScalar>(): TypeMappingConfigurationBuilder_1<TScalar>;
|
|
758
|
-
DefaultTypeMapping<TScalar>(buildAction:
|
|
843
|
+
DefaultTypeMapping<TScalar>(buildAction: Action_1<TypeMappingConfigurationBuilder_1<TScalar>>): ModelConfigurationBuilder;
|
|
759
844
|
DefaultTypeMapping(scalarType: Type): TypeMappingConfigurationBuilder;
|
|
760
|
-
DefaultTypeMapping(scalarType: Type, buildAction:
|
|
845
|
+
DefaultTypeMapping(scalarType: Type, buildAction: Action_1<TypeMappingConfigurationBuilder>): ModelConfigurationBuilder;
|
|
761
846
|
Equals(obj: unknown): boolean;
|
|
762
847
|
GetHashCode(): int;
|
|
763
848
|
IgnoreAny<T>(): ModelConfigurationBuilder;
|
|
764
849
|
IgnoreAny(type: Type): ModelConfigurationBuilder;
|
|
765
850
|
Properties<TProperty>(): PropertiesConfigurationBuilder_1<TProperty>;
|
|
766
|
-
Properties<TProperty>(buildAction:
|
|
851
|
+
Properties<TProperty>(buildAction: Action_1<PropertiesConfigurationBuilder_1<TProperty>>): ModelConfigurationBuilder;
|
|
767
852
|
Properties(propertyType: Type): PropertiesConfigurationBuilder;
|
|
768
|
-
Properties(propertyType: Type, buildAction:
|
|
853
|
+
Properties(propertyType: Type, buildAction: Action_1<PropertiesConfigurationBuilder>): ModelConfigurationBuilder;
|
|
769
854
|
ToString(): string | undefined;
|
|
770
855
|
}
|
|
771
856
|
|
|
@@ -778,6 +863,10 @@ export const ModelConfigurationBuilder: {
|
|
|
778
863
|
export type ModelConfigurationBuilder = ModelConfigurationBuilder$instance;
|
|
779
864
|
|
|
780
865
|
export interface ModelCreationDependencies$instance {
|
|
866
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ModelCreationDependencies: never;
|
|
867
|
+
|
|
868
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
869
|
+
|
|
781
870
|
ConventionSetBuilder: IConventionSetBuilder;
|
|
782
871
|
ModelDependencies: ModelDependencies;
|
|
783
872
|
ModelRuntimeInitializer: IModelRuntimeInitializer;
|
|
@@ -799,6 +888,8 @@ export const ModelCreationDependencies: {
|
|
|
799
888
|
export type ModelCreationDependencies = ModelCreationDependencies$instance;
|
|
800
889
|
|
|
801
890
|
export interface OwnedAttribute$instance extends Attribute {
|
|
891
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_OwnedAttribute: never;
|
|
892
|
+
|
|
802
893
|
}
|
|
803
894
|
|
|
804
895
|
|
|
@@ -810,8 +901,10 @@ export const OwnedAttribute: {
|
|
|
810
901
|
export type OwnedAttribute = OwnedAttribute$instance;
|
|
811
902
|
|
|
812
903
|
export interface PrecisionAttribute$instance extends Attribute {
|
|
904
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_PrecisionAttribute: never;
|
|
905
|
+
|
|
813
906
|
readonly Precision: int;
|
|
814
|
-
readonly Scale:
|
|
907
|
+
readonly Scale: Nullable_1<System_Internal.Int32>;
|
|
815
908
|
}
|
|
816
909
|
|
|
817
910
|
|
|
@@ -824,7 +917,9 @@ export const PrecisionAttribute: {
|
|
|
824
917
|
export type PrecisionAttribute = PrecisionAttribute$instance;
|
|
825
918
|
|
|
826
919
|
export interface PrimaryKeyAttribute$instance extends Attribute {
|
|
827
|
-
readonly
|
|
920
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_PrimaryKeyAttribute: never;
|
|
921
|
+
|
|
922
|
+
readonly PropertyNames: IReadOnlyList_1<System_Internal.String>;
|
|
828
923
|
}
|
|
829
924
|
|
|
830
925
|
|
|
@@ -836,6 +931,8 @@ export const PrimaryKeyAttribute: {
|
|
|
836
931
|
export type PrimaryKeyAttribute = PrimaryKeyAttribute$instance;
|
|
837
932
|
|
|
838
933
|
export interface SaveChangesEventArgs$instance extends EventArgs {
|
|
934
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_SaveChangesEventArgs: never;
|
|
935
|
+
|
|
839
936
|
readonly AcceptAllChangesOnSuccess: boolean;
|
|
840
937
|
}
|
|
841
938
|
|
|
@@ -847,6 +944,8 @@ export const SaveChangesEventArgs: (abstract new(acceptAllChangesOnSuccess: bool
|
|
|
847
944
|
export type SaveChangesEventArgs = SaveChangesEventArgs$instance;
|
|
848
945
|
|
|
849
946
|
export interface SaveChangesFailedEventArgs$instance extends SaveChangesEventArgs {
|
|
947
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_SaveChangesFailedEventArgs: never;
|
|
948
|
+
|
|
850
949
|
readonly Exception: Exception;
|
|
851
950
|
}
|
|
852
951
|
|
|
@@ -859,6 +958,8 @@ export const SaveChangesFailedEventArgs: {
|
|
|
859
958
|
export type SaveChangesFailedEventArgs = SaveChangesFailedEventArgs$instance;
|
|
860
959
|
|
|
861
960
|
export interface SavedChangesEventArgs$instance extends SaveChangesEventArgs {
|
|
961
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_SavedChangesEventArgs: never;
|
|
962
|
+
|
|
862
963
|
readonly EntitiesSavedCount: int;
|
|
863
964
|
}
|
|
864
965
|
|
|
@@ -871,6 +972,8 @@ export const SavedChangesEventArgs: {
|
|
|
871
972
|
export type SavedChangesEventArgs = SavedChangesEventArgs$instance;
|
|
872
973
|
|
|
873
974
|
export interface SavingChangesEventArgs$instance extends SaveChangesEventArgs {
|
|
975
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_SavingChangesEventArgs: never;
|
|
976
|
+
|
|
874
977
|
}
|
|
875
978
|
|
|
876
979
|
|
|
@@ -882,6 +985,8 @@ export const SavingChangesEventArgs: {
|
|
|
882
985
|
export type SavingChangesEventArgs = SavingChangesEventArgs$instance;
|
|
883
986
|
|
|
884
987
|
export interface UnicodeAttribute$instance extends Attribute {
|
|
988
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_UnicodeAttribute: never;
|
|
989
|
+
|
|
885
990
|
readonly IsUnicode: boolean;
|
|
886
991
|
}
|
|
887
992
|
|
|
@@ -919,38 +1024,38 @@ export type DbLoggerCategory = DbLoggerCategory$instance;
|
|
|
919
1024
|
export abstract class EF$instance {
|
|
920
1025
|
static IsDesignTime: boolean;
|
|
921
1026
|
static readonly Functions: DbFunctions;
|
|
922
|
-
static CompileAsyncQuery<TContext extends DbContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TParam7, TResult>(queryExpression:
|
|
923
|
-
static CompileAsyncQuery<TContext extends DbContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TParam7, TParam8, TResult>(queryExpression:
|
|
924
|
-
static CompileAsyncQuery<TContext extends DbContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TParam7, TParam8, TParam9, TResult>(queryExpression:
|
|
925
|
-
static CompileAsyncQuery<TContext extends DbContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TParam7, TParam8, TParam9, TParam10, TResult>(queryExpression:
|
|
926
|
-
static CompileAsyncQuery<TContext extends DbContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TParam7, TParam8, TParam9, TParam10, TParam11, TResult>(queryExpression:
|
|
927
|
-
static CompileAsyncQuery<TContext extends DbContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TParam7, TParam8, TParam9, TParam10, TParam11, TParam12, TResult>(queryExpression:
|
|
928
|
-
static CompileAsyncQuery<TContext extends DbContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TParam7, TParam8, TParam9, TParam10, TParam11, TParam12, TParam13, TResult>(queryExpression:
|
|
929
|
-
static CompileAsyncQuery<TContext extends DbContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TParam7, TParam8, TParam9, TParam10, TParam11, TParam12, TParam13, TParam14, TResult>(queryExpression:
|
|
930
|
-
static CompileAsyncQuery<TContext extends DbContext, TResult>(queryExpression:
|
|
931
|
-
static CompileAsyncQuery<TContext extends DbContext, TResult>(queryExpression:
|
|
932
|
-
static CompileAsyncQuery<TContext extends DbContext, TParam1, TResult>(queryExpression:
|
|
933
|
-
static CompileAsyncQuery<TContext extends DbContext, TParam1, TParam2, TResult>(queryExpression:
|
|
934
|
-
static CompileAsyncQuery<TContext extends DbContext, TParam1, TParam2, TParam3, TResult>(queryExpression:
|
|
935
|
-
static CompileAsyncQuery<TContext extends DbContext, TParam1, TParam2, TParam3, TParam4, TResult>(queryExpression:
|
|
936
|
-
static CompileAsyncQuery<TContext extends DbContext, TParam1, TParam2, TParam3, TParam4, TParam5, TResult>(queryExpression:
|
|
937
|
-
static CompileAsyncQuery<TContext extends DbContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TResult>(queryExpression:
|
|
938
|
-
static CompileQuery<TContext extends DbContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TParam7, TParam8, TResult, TProperty>(queryExpression:
|
|
939
|
-
static CompileQuery<TContext extends DbContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TParam7, TParam8, TParam9, TResult, TProperty>(queryExpression:
|
|
940
|
-
static CompileQuery<TContext extends DbContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TParam7, TParam8, TParam9, TParam10, TResult, TProperty>(queryExpression:
|
|
941
|
-
static CompileQuery<TContext extends DbContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TParam7, TParam8, TParam9, TParam10, TParam11, TResult, TProperty>(queryExpression:
|
|
942
|
-
static CompileQuery<TContext extends DbContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TParam7, TParam8, TParam9, TParam10, TParam11, TParam12, TResult, TProperty>(queryExpression:
|
|
943
|
-
static CompileQuery<TContext extends DbContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TParam7, TParam8, TParam9, TParam10, TParam11, TParam12, TParam13, TResult, TProperty>(queryExpression:
|
|
944
|
-
static CompileQuery<TContext extends DbContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TParam7, TParam8, TParam9, TParam10, TParam11, TParam12, TParam13, TParam14, TResult, TProperty>(queryExpression:
|
|
945
|
-
static CompileQuery<TContext extends DbContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TParam7, TParam8, TParam9, TParam10, TParam11, TParam12, TParam13, TParam14, TParam15, TResult, TProperty>(queryExpression:
|
|
946
|
-
static CompileQuery<TContext extends DbContext, TResult>(queryExpression:
|
|
947
|
-
static CompileQuery<TContext extends DbContext, TParam1, TResult, TProperty>(queryExpression:
|
|
948
|
-
static CompileQuery<TContext extends DbContext, TParam1, TParam2, TResult, TProperty>(queryExpression:
|
|
949
|
-
static CompileQuery<TContext extends DbContext, TParam1, TParam2, TParam3, TResult, TProperty>(queryExpression:
|
|
950
|
-
static CompileQuery<TContext extends DbContext, TParam1, TParam2, TParam3, TParam4, TResult, TProperty>(queryExpression:
|
|
951
|
-
static CompileQuery<TContext extends DbContext, TParam1, TParam2, TParam3, TParam4, TParam5, TResult, TProperty>(queryExpression:
|
|
952
|
-
static CompileQuery<TContext extends DbContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TResult, TProperty>(queryExpression:
|
|
953
|
-
static CompileQuery<TContext extends DbContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TParam7, TResult, TProperty>(queryExpression:
|
|
1027
|
+
static CompileAsyncQuery<TContext extends DbContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TParam7, TResult>(queryExpression: Expression_1<Func_10<TContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TParam7, CancellationToken, TResult>>): Func_10<TContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TParam7, CancellationToken, Task_1<TResult>>;
|
|
1028
|
+
static CompileAsyncQuery<TContext extends DbContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TParam7, TParam8, TResult>(queryExpression: Expression_1<Func_11<TContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TParam7, TParam8, CancellationToken, TResult>>): Func_11<TContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TParam7, TParam8, CancellationToken, Task_1<TResult>>;
|
|
1029
|
+
static CompileAsyncQuery<TContext extends DbContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TParam7, TParam8, TParam9, TResult>(queryExpression: Expression_1<Func_12<TContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TParam7, TParam8, TParam9, CancellationToken, TResult>>): Func_12<TContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TParam7, TParam8, TParam9, CancellationToken, Task_1<TResult>>;
|
|
1030
|
+
static CompileAsyncQuery<TContext extends DbContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TParam7, TParam8, TParam9, TParam10, TResult>(queryExpression: Expression_1<Func_13<TContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TParam7, TParam8, TParam9, TParam10, CancellationToken, TResult>>): Func_13<TContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TParam7, TParam8, TParam9, TParam10, CancellationToken, Task_1<TResult>>;
|
|
1031
|
+
static CompileAsyncQuery<TContext extends DbContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TParam7, TParam8, TParam9, TParam10, TParam11, TResult>(queryExpression: Expression_1<Func_14<TContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TParam7, TParam8, TParam9, TParam10, TParam11, CancellationToken, TResult>>): Func_14<TContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TParam7, TParam8, TParam9, TParam10, TParam11, CancellationToken, Task_1<TResult>>;
|
|
1032
|
+
static CompileAsyncQuery<TContext extends DbContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TParam7, TParam8, TParam9, TParam10, TParam11, TParam12, TResult>(queryExpression: Expression_1<Func_15<TContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TParam7, TParam8, TParam9, TParam10, TParam11, TParam12, CancellationToken, TResult>>): Func_15<TContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TParam7, TParam8, TParam9, TParam10, TParam11, TParam12, CancellationToken, Task_1<TResult>>;
|
|
1033
|
+
static CompileAsyncQuery<TContext extends DbContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TParam7, TParam8, TParam9, TParam10, TParam11, TParam12, TParam13, TResult>(queryExpression: Expression_1<Func_16<TContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TParam7, TParam8, TParam9, TParam10, TParam11, TParam12, TParam13, CancellationToken, TResult>>): Func_16<TContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TParam7, TParam8, TParam9, TParam10, TParam11, TParam12, TParam13, CancellationToken, Task_1<TResult>>;
|
|
1034
|
+
static CompileAsyncQuery<TContext extends DbContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TParam7, TParam8, TParam9, TParam10, TParam11, TParam12, TParam13, TParam14, TResult>(queryExpression: Expression_1<Func_17<TContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TParam7, TParam8, TParam9, TParam10, TParam11, TParam12, TParam13, TParam14, CancellationToken, TResult>>): Func_17<TContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TParam7, TParam8, TParam9, TParam10, TParam11, TParam12, TParam13, TParam14, CancellationToken, Task_1<TResult>>;
|
|
1035
|
+
static CompileAsyncQuery<TContext extends DbContext, TResult>(queryExpression: Expression_1<Func_2<TContext, DbSet_1<TResult>>>): Func_2<TContext, IAsyncEnumerable_1<TResult>>;
|
|
1036
|
+
static CompileAsyncQuery<TContext extends DbContext, TResult>(queryExpression: Expression_1<Func_3<TContext, CancellationToken, TResult>>): Func_3<TContext, CancellationToken, Task_1<TResult>>;
|
|
1037
|
+
static CompileAsyncQuery<TContext extends DbContext, TParam1, TResult>(queryExpression: Expression_1<Func_4<TContext, TParam1, CancellationToken, TResult>>): Func_4<TContext, TParam1, CancellationToken, Task_1<TResult>>;
|
|
1038
|
+
static CompileAsyncQuery<TContext extends DbContext, TParam1, TParam2, TResult>(queryExpression: Expression_1<Func_5<TContext, TParam1, TParam2, CancellationToken, TResult>>): Func_5<TContext, TParam1, TParam2, CancellationToken, Task_1<TResult>>;
|
|
1039
|
+
static CompileAsyncQuery<TContext extends DbContext, TParam1, TParam2, TParam3, TResult>(queryExpression: Expression_1<Func_6<TContext, TParam1, TParam2, TParam3, CancellationToken, TResult>>): Func_6<TContext, TParam1, TParam2, TParam3, CancellationToken, Task_1<TResult>>;
|
|
1040
|
+
static CompileAsyncQuery<TContext extends DbContext, TParam1, TParam2, TParam3, TParam4, TResult>(queryExpression: Expression_1<Func_7<TContext, TParam1, TParam2, TParam3, TParam4, CancellationToken, TResult>>): Func_7<TContext, TParam1, TParam2, TParam3, TParam4, CancellationToken, Task_1<TResult>>;
|
|
1041
|
+
static CompileAsyncQuery<TContext extends DbContext, TParam1, TParam2, TParam3, TParam4, TParam5, TResult>(queryExpression: Expression_1<Func_8<TContext, TParam1, TParam2, TParam3, TParam4, TParam5, CancellationToken, TResult>>): Func_8<TContext, TParam1, TParam2, TParam3, TParam4, TParam5, CancellationToken, Task_1<TResult>>;
|
|
1042
|
+
static CompileAsyncQuery<TContext extends DbContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TResult>(queryExpression: Expression_1<Func_9<TContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, CancellationToken, TResult>>): Func_9<TContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, CancellationToken, Task_1<TResult>>;
|
|
1043
|
+
static CompileQuery<TContext extends DbContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TParam7, TParam8, TResult, TProperty>(queryExpression: Expression_1<Func_10<TContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TParam7, TParam8, IIncludableQueryable_2<TResult, TProperty>>>): Func_10<TContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TParam7, TParam8, IEnumerable_1<TResult>>;
|
|
1044
|
+
static CompileQuery<TContext extends DbContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TParam7, TParam8, TParam9, TResult, TProperty>(queryExpression: Expression_1<Func_11<TContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TParam7, TParam8, TParam9, IIncludableQueryable_2<TResult, TProperty>>>): Func_11<TContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TParam7, TParam8, TParam9, IEnumerable_1<TResult>>;
|
|
1045
|
+
static CompileQuery<TContext extends DbContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TParam7, TParam8, TParam9, TParam10, TResult, TProperty>(queryExpression: Expression_1<Func_12<TContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TParam7, TParam8, TParam9, TParam10, IIncludableQueryable_2<TResult, TProperty>>>): Func_12<TContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TParam7, TParam8, TParam9, TParam10, IEnumerable_1<TResult>>;
|
|
1046
|
+
static CompileQuery<TContext extends DbContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TParam7, TParam8, TParam9, TParam10, TParam11, TResult, TProperty>(queryExpression: Expression_1<Func_13<TContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TParam7, TParam8, TParam9, TParam10, TParam11, IIncludableQueryable_2<TResult, TProperty>>>): Func_13<TContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TParam7, TParam8, TParam9, TParam10, TParam11, IEnumerable_1<TResult>>;
|
|
1047
|
+
static CompileQuery<TContext extends DbContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TParam7, TParam8, TParam9, TParam10, TParam11, TParam12, TResult, TProperty>(queryExpression: Expression_1<Func_14<TContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TParam7, TParam8, TParam9, TParam10, TParam11, TParam12, IIncludableQueryable_2<TResult, TProperty>>>): Func_14<TContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TParam7, TParam8, TParam9, TParam10, TParam11, TParam12, IEnumerable_1<TResult>>;
|
|
1048
|
+
static CompileQuery<TContext extends DbContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TParam7, TParam8, TParam9, TParam10, TParam11, TParam12, TParam13, TResult, TProperty>(queryExpression: Expression_1<Func_15<TContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TParam7, TParam8, TParam9, TParam10, TParam11, TParam12, TParam13, IIncludableQueryable_2<TResult, TProperty>>>): Func_15<TContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TParam7, TParam8, TParam9, TParam10, TParam11, TParam12, TParam13, IEnumerable_1<TResult>>;
|
|
1049
|
+
static CompileQuery<TContext extends DbContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TParam7, TParam8, TParam9, TParam10, TParam11, TParam12, TParam13, TParam14, TResult, TProperty>(queryExpression: Expression_1<Func_16<TContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TParam7, TParam8, TParam9, TParam10, TParam11, TParam12, TParam13, TParam14, IIncludableQueryable_2<TResult, TProperty>>>): Func_16<TContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TParam7, TParam8, TParam9, TParam10, TParam11, TParam12, TParam13, TParam14, IEnumerable_1<TResult>>;
|
|
1050
|
+
static CompileQuery<TContext extends DbContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TParam7, TParam8, TParam9, TParam10, TParam11, TParam12, TParam13, TParam14, TParam15, TResult, TProperty>(queryExpression: Expression_1<Func_17<TContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TParam7, TParam8, TParam9, TParam10, TParam11, TParam12, TParam13, TParam14, TParam15, IIncludableQueryable_2<TResult, TProperty>>>): Func_17<TContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TParam7, TParam8, TParam9, TParam10, TParam11, TParam12, TParam13, TParam14, TParam15, IEnumerable_1<TResult>>;
|
|
1051
|
+
static CompileQuery<TContext extends DbContext, TResult>(queryExpression: Expression_1<Func_2<TContext, DbSet_1<TResult>>>): Func_2<TContext, IEnumerable_1<TResult>>;
|
|
1052
|
+
static CompileQuery<TContext extends DbContext, TParam1, TResult, TProperty>(queryExpression: Expression_1<Func_3<TContext, TParam1, IIncludableQueryable_2<TResult, TProperty>>>): Func_3<TContext, TParam1, IEnumerable_1<TResult>>;
|
|
1053
|
+
static CompileQuery<TContext extends DbContext, TParam1, TParam2, TResult, TProperty>(queryExpression: Expression_1<Func_4<TContext, TParam1, TParam2, IIncludableQueryable_2<TResult, TProperty>>>): Func_4<TContext, TParam1, TParam2, IEnumerable_1<TResult>>;
|
|
1054
|
+
static CompileQuery<TContext extends DbContext, TParam1, TParam2, TParam3, TResult, TProperty>(queryExpression: Expression_1<Func_5<TContext, TParam1, TParam2, TParam3, IIncludableQueryable_2<TResult, TProperty>>>): Func_5<TContext, TParam1, TParam2, TParam3, IEnumerable_1<TResult>>;
|
|
1055
|
+
static CompileQuery<TContext extends DbContext, TParam1, TParam2, TParam3, TParam4, TResult, TProperty>(queryExpression: Expression_1<Func_6<TContext, TParam1, TParam2, TParam3, TParam4, IIncludableQueryable_2<TResult, TProperty>>>): Func_6<TContext, TParam1, TParam2, TParam3, TParam4, IEnumerable_1<TResult>>;
|
|
1056
|
+
static CompileQuery<TContext extends DbContext, TParam1, TParam2, TParam3, TParam4, TParam5, TResult, TProperty>(queryExpression: Expression_1<Func_7<TContext, TParam1, TParam2, TParam3, TParam4, TParam5, IIncludableQueryable_2<TResult, TProperty>>>): Func_7<TContext, TParam1, TParam2, TParam3, TParam4, TParam5, IEnumerable_1<TResult>>;
|
|
1057
|
+
static CompileQuery<TContext extends DbContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TResult, TProperty>(queryExpression: Expression_1<Func_8<TContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, IIncludableQueryable_2<TResult, TProperty>>>): Func_8<TContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, IEnumerable_1<TResult>>;
|
|
1058
|
+
static CompileQuery<TContext extends DbContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TParam7, TResult, TProperty>(queryExpression: Expression_1<Func_9<TContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TParam7, IIncludableQueryable_2<TResult, TProperty>>>): Func_9<TContext, TParam1, TParam2, TParam3, TParam4, TParam5, TParam6, TParam7, IEnumerable_1<TResult>>;
|
|
954
1059
|
static Constant<T>(argument: T): T;
|
|
955
1060
|
static Parameter<T>(argument: T): T;
|
|
956
1061
|
static Property<TProperty>(instance: unknown, propertyName: string): TProperty;
|
|
@@ -968,96 +1073,96 @@ export type EFExtensions = EFExtensions$instance;
|
|
|
968
1073
|
|
|
969
1074
|
export abstract class EntityFrameworkQueryableExtensions$instance {
|
|
970
1075
|
static readonly ExecuteUpdateMethodInfo: MethodInfo;
|
|
971
|
-
static AllAsync<TSource>(source:
|
|
972
|
-
static AnyAsync<TSource>(source:
|
|
973
|
-
static AnyAsync<TSource>(source:
|
|
974
|
-
static AsAsyncEnumerable<TSource>(source:
|
|
975
|
-
static AsNoTracking<TEntity>(source:
|
|
976
|
-
static AsNoTrackingWithIdentityResolution<TEntity>(source:
|
|
977
|
-
static AsTracking<TEntity>(source:
|
|
978
|
-
static AsTracking<TEntity>(source:
|
|
979
|
-
static AverageAsync<TSource>(source:
|
|
980
|
-
static AverageAsync<TSource>(source:
|
|
981
|
-
static AverageAsync<TSource>(source:
|
|
982
|
-
static AverageAsync<TSource>(source:
|
|
983
|
-
static AverageAsync<TSource>(source:
|
|
984
|
-
static AverageAsync<TSource>(source:
|
|
985
|
-
static AverageAsync(source:
|
|
986
|
-
static AverageAsync(source:
|
|
987
|
-
static AverageAsync(source:
|
|
988
|
-
static AverageAsync(source:
|
|
989
|
-
static AverageAsync(source:
|
|
990
|
-
static AverageAsync(source:
|
|
991
|
-
static AverageAsync(source:
|
|
992
|
-
static AverageAsync(source:
|
|
993
|
-
static AverageAsync(source:
|
|
994
|
-
static AverageAsync(source:
|
|
995
|
-
static ContainsAsync<TSource>(source:
|
|
996
|
-
static CountAsync<TSource>(source:
|
|
997
|
-
static CountAsync<TSource>(source:
|
|
998
|
-
static ElementAtAsync<TSource>(source:
|
|
999
|
-
static ElementAtOrDefaultAsync<TSource>(source:
|
|
1000
|
-
static ExecuteDelete<TSource>(source:
|
|
1001
|
-
static ExecuteDeleteAsync<TSource>(source:
|
|
1002
|
-
static ExecuteUpdate<TSource>(source:
|
|
1003
|
-
static ExecuteUpdateAsync<TSource>(source:
|
|
1004
|
-
static FirstAsync<TSource>(source:
|
|
1005
|
-
static FirstAsync<TSource>(source:
|
|
1006
|
-
static FirstOrDefaultAsync<TSource>(source:
|
|
1007
|
-
static FirstOrDefaultAsync<TSource>(source:
|
|
1008
|
-
static ForEachAsync<T>(source:
|
|
1009
|
-
static IgnoreAutoIncludes<TEntity>(source:
|
|
1010
|
-
static IgnoreQueryFilters<TEntity>(source:
|
|
1011
|
-
static IgnoreQueryFilters<TEntity>(source:
|
|
1012
|
-
static Include<TEntity, TProperty>(source:
|
|
1013
|
-
static Include<TEntity>(source:
|
|
1014
|
-
static LastAsync<TSource>(source:
|
|
1015
|
-
static LastAsync<TSource>(source:
|
|
1016
|
-
static LastOrDefaultAsync<TSource>(source:
|
|
1017
|
-
static LastOrDefaultAsync<TSource>(source:
|
|
1018
|
-
static Load<TSource>(source:
|
|
1019
|
-
static LoadAsync<TSource>(source:
|
|
1020
|
-
static LongCountAsync<TSource>(source:
|
|
1021
|
-
static LongCountAsync<TSource>(source:
|
|
1022
|
-
static MaxAsync<TSource, TResult>(source:
|
|
1023
|
-
static MaxAsync<TSource>(source:
|
|
1024
|
-
static MinAsync<TSource, TResult>(source:
|
|
1025
|
-
static MinAsync<TSource>(source:
|
|
1026
|
-
static SingleAsync<TSource>(source:
|
|
1027
|
-
static SingleAsync<TSource>(source:
|
|
1028
|
-
static SingleOrDefaultAsync<TSource>(source:
|
|
1029
|
-
static SingleOrDefaultAsync<TSource>(source:
|
|
1030
|
-
static SumAsync<TSource>(source:
|
|
1031
|
-
static SumAsync<TSource>(source:
|
|
1032
|
-
static SumAsync<TSource>(source:
|
|
1033
|
-
static SumAsync<TSource>(source:
|
|
1034
|
-
static SumAsync<TSource>(source:
|
|
1035
|
-
static SumAsync<TSource>(source:
|
|
1036
|
-
static SumAsync<TSource>(source:
|
|
1037
|
-
static SumAsync<TSource>(source:
|
|
1038
|
-
static SumAsync<TSource>(source:
|
|
1039
|
-
static SumAsync<TSource>(source:
|
|
1040
|
-
static SumAsync(source:
|
|
1041
|
-
static SumAsync(source:
|
|
1042
|
-
static SumAsync(source:
|
|
1043
|
-
static SumAsync(source:
|
|
1044
|
-
static SumAsync(source:
|
|
1045
|
-
static SumAsync(source:
|
|
1046
|
-
static SumAsync(source:
|
|
1047
|
-
static SumAsync(source:
|
|
1048
|
-
static SumAsync(source:
|
|
1049
|
-
static SumAsync(source:
|
|
1050
|
-
static TagWith<T>(source:
|
|
1051
|
-
static TagWithCallSite<T>(source:
|
|
1052
|
-
static ThenInclude<TEntity, TPreviousProperty, TProperty>(source: IIncludableQueryable_2<TEntity,
|
|
1053
|
-
static ToArrayAsync<TSource>(source:
|
|
1054
|
-
static ToDictionaryAsync<TSource, TKey, TElement>(source:
|
|
1055
|
-
static ToDictionaryAsync<TSource, TKey, TElement>(source:
|
|
1056
|
-
static ToDictionaryAsync<TSource, TKey>(source:
|
|
1057
|
-
static ToDictionaryAsync<TSource, TKey>(source:
|
|
1058
|
-
static ToHashSetAsync<TSource>(source:
|
|
1059
|
-
static ToHashSetAsync<TSource>(source:
|
|
1060
|
-
static ToListAsync<TSource>(source:
|
|
1076
|
+
static AllAsync<TSource>(source: IQueryable_1<TSource>, predicate: Expression_1<Func_2<TSource, System_Internal.Boolean>>, cancellationToken?: CancellationToken): Task_1<System_Internal.Boolean>;
|
|
1077
|
+
static AnyAsync<TSource>(source: IQueryable_1<TSource>, predicate: Expression_1<Func_2<TSource, System_Internal.Boolean>>, cancellationToken?: CancellationToken): Task_1<System_Internal.Boolean>;
|
|
1078
|
+
static AnyAsync<TSource>(source: IQueryable_1<TSource>, cancellationToken?: CancellationToken): Task_1<System_Internal.Boolean>;
|
|
1079
|
+
static AsAsyncEnumerable<TSource>(source: IQueryable_1<TSource>): IAsyncEnumerable_1<TSource>;
|
|
1080
|
+
static AsNoTracking<TEntity>(source: IQueryable_1<TEntity>): IQueryable_1<TEntity>;
|
|
1081
|
+
static AsNoTrackingWithIdentityResolution<TEntity>(source: IQueryable_1<TEntity>): IQueryable_1<TEntity>;
|
|
1082
|
+
static AsTracking<TEntity>(source: IQueryable_1<TEntity>, track: QueryTrackingBehavior): IQueryable_1<TEntity>;
|
|
1083
|
+
static AsTracking<TEntity>(source: IQueryable_1<TEntity>): IQueryable_1<TEntity>;
|
|
1084
|
+
static AverageAsync<TSource>(source: IQueryable_1<TSource>, selector: Expression_1<Func_2<TSource, System_Internal.Decimal>>, cancellationToken?: CancellationToken): Task_1<System_Internal.Decimal>;
|
|
1085
|
+
static AverageAsync<TSource>(source: IQueryable_1<TSource>, selector: Expression_1<Func_2<TSource, System_Internal.Int32>>, cancellationToken?: CancellationToken): Task_1<System_Internal.Double>;
|
|
1086
|
+
static AverageAsync<TSource>(source: IQueryable_1<TSource>, selector: Expression_1<Func_2<TSource, Nullable_1<System_Internal.Decimal>>>, cancellationToken?: CancellationToken): Task_1<Nullable_1<System_Internal.Decimal>>;
|
|
1087
|
+
static AverageAsync<TSource>(source: IQueryable_1<TSource>, selector: Expression_1<Func_2<TSource, Nullable_1<System_Internal.Int32>>>, cancellationToken?: CancellationToken): Task_1<Nullable_1<System_Internal.Double>>;
|
|
1088
|
+
static AverageAsync<TSource>(source: IQueryable_1<TSource>, selector: Expression_1<Func_2<TSource, Nullable_1<System_Internal.Single>>>, cancellationToken?: CancellationToken): Task_1<Nullable_1<System_Internal.Single>>;
|
|
1089
|
+
static AverageAsync<TSource>(source: IQueryable_1<TSource>, selector: Expression_1<Func_2<TSource, System_Internal.Single>>, cancellationToken?: CancellationToken): Task_1<System_Internal.Single>;
|
|
1090
|
+
static AverageAsync(source: IQueryable_1<System_Internal.Decimal>, cancellationToken?: CancellationToken): Task_1<System_Internal.Decimal>;
|
|
1091
|
+
static AverageAsync(source: IQueryable_1<System_Internal.Double>, cancellationToken?: CancellationToken): Task_1<System_Internal.Double>;
|
|
1092
|
+
static AverageAsync(source: IQueryable_1<System_Internal.Int32>, cancellationToken?: CancellationToken): Task_1<System_Internal.Double>;
|
|
1093
|
+
static AverageAsync(source: IQueryable_1<System_Internal.Int64>, cancellationToken?: CancellationToken): Task_1<System_Internal.Double>;
|
|
1094
|
+
static AverageAsync(source: IQueryable_1<Nullable_1<System_Internal.Decimal>>, cancellationToken?: CancellationToken): Task_1<Nullable_1<System_Internal.Decimal>>;
|
|
1095
|
+
static AverageAsync(source: IQueryable_1<Nullable_1<System_Internal.Double>>, cancellationToken?: CancellationToken): Task_1<Nullable_1<System_Internal.Double>>;
|
|
1096
|
+
static AverageAsync(source: IQueryable_1<Nullable_1<System_Internal.Int32>>, cancellationToken?: CancellationToken): Task_1<Nullable_1<System_Internal.Double>>;
|
|
1097
|
+
static AverageAsync(source: IQueryable_1<Nullable_1<System_Internal.Int64>>, cancellationToken?: CancellationToken): Task_1<Nullable_1<System_Internal.Double>>;
|
|
1098
|
+
static AverageAsync(source: IQueryable_1<Nullable_1<System_Internal.Single>>, cancellationToken?: CancellationToken): Task_1<Nullable_1<System_Internal.Single>>;
|
|
1099
|
+
static AverageAsync(source: IQueryable_1<System_Internal.Single>, cancellationToken?: CancellationToken): Task_1<System_Internal.Single>;
|
|
1100
|
+
static ContainsAsync<TSource>(source: IQueryable_1<TSource>, item: TSource, cancellationToken?: CancellationToken): Task_1<System_Internal.Boolean>;
|
|
1101
|
+
static CountAsync<TSource>(source: IQueryable_1<TSource>, predicate: Expression_1<Func_2<TSource, System_Internal.Boolean>>, cancellationToken?: CancellationToken): Task_1<System_Internal.Int32>;
|
|
1102
|
+
static CountAsync<TSource>(source: IQueryable_1<TSource>, cancellationToken?: CancellationToken): Task_1<System_Internal.Int32>;
|
|
1103
|
+
static ElementAtAsync<TSource>(source: IQueryable_1<TSource>, index: int, cancellationToken?: CancellationToken): Task_1<TSource>;
|
|
1104
|
+
static ElementAtOrDefaultAsync<TSource>(source: IQueryable_1<TSource>, index: int, cancellationToken?: CancellationToken): Task_1<TSource | undefined>;
|
|
1105
|
+
static ExecuteDelete<TSource>(source: IQueryable_1<TSource>): int;
|
|
1106
|
+
static ExecuteDeleteAsync<TSource>(source: IQueryable_1<TSource>, cancellationToken?: CancellationToken): Task_1<System_Internal.Int32>;
|
|
1107
|
+
static ExecuteUpdate<TSource>(source: IQueryable_1<TSource>, setPropertyCalls: Action_1<UpdateSettersBuilder_1<TSource>>): int;
|
|
1108
|
+
static ExecuteUpdateAsync<TSource>(source: IQueryable_1<TSource>, setPropertyCalls: Action_1<UpdateSettersBuilder_1<TSource>>, cancellationToken?: CancellationToken): Task_1<System_Internal.Int32>;
|
|
1109
|
+
static FirstAsync<TSource>(source: IQueryable_1<TSource>, predicate: Expression_1<Func_2<TSource, System_Internal.Boolean>>, cancellationToken?: CancellationToken): Task_1<TSource>;
|
|
1110
|
+
static FirstAsync<TSource>(source: IQueryable_1<TSource>, cancellationToken?: CancellationToken): Task_1<TSource>;
|
|
1111
|
+
static FirstOrDefaultAsync<TSource>(source: IQueryable_1<TSource>, predicate: Expression_1<Func_2<TSource, System_Internal.Boolean>>, cancellationToken?: CancellationToken): Task_1<TSource | undefined>;
|
|
1112
|
+
static FirstOrDefaultAsync<TSource>(source: IQueryable_1<TSource>, cancellationToken?: CancellationToken): Task_1<TSource | undefined>;
|
|
1113
|
+
static ForEachAsync<T>(source: IQueryable_1<T>, action: Action_1<T>, cancellationToken?: CancellationToken): Task;
|
|
1114
|
+
static IgnoreAutoIncludes<TEntity>(source: IQueryable_1<TEntity>): IQueryable_1<TEntity>;
|
|
1115
|
+
static IgnoreQueryFilters<TEntity>(source: IQueryable_1<TEntity>, filterKeys: IReadOnlyCollection_1<System_Internal.String>): IQueryable_1<TEntity>;
|
|
1116
|
+
static IgnoreQueryFilters<TEntity>(source: IQueryable_1<TEntity>): IQueryable_1<TEntity>;
|
|
1117
|
+
static Include<TEntity, TProperty>(source: IQueryable_1<TEntity>, navigationPropertyPath: Expression_1<Func_2<TEntity, TProperty>>): IIncludableQueryable_2<TEntity, TProperty>;
|
|
1118
|
+
static Include<TEntity>(source: IQueryable_1<TEntity>, navigationPropertyPath: string): IQueryable_1<TEntity>;
|
|
1119
|
+
static LastAsync<TSource>(source: IQueryable_1<TSource>, predicate: Expression_1<Func_2<TSource, System_Internal.Boolean>>, cancellationToken?: CancellationToken): Task_1<TSource>;
|
|
1120
|
+
static LastAsync<TSource>(source: IQueryable_1<TSource>, cancellationToken?: CancellationToken): Task_1<TSource>;
|
|
1121
|
+
static LastOrDefaultAsync<TSource>(source: IQueryable_1<TSource>, predicate: Expression_1<Func_2<TSource, System_Internal.Boolean>>, cancellationToken?: CancellationToken): Task_1<TSource | undefined>;
|
|
1122
|
+
static LastOrDefaultAsync<TSource>(source: IQueryable_1<TSource>, cancellationToken?: CancellationToken): Task_1<TSource | undefined>;
|
|
1123
|
+
static Load<TSource>(source: IQueryable_1<TSource>): void;
|
|
1124
|
+
static LoadAsync<TSource>(source: IQueryable_1<TSource>, cancellationToken?: CancellationToken): Task;
|
|
1125
|
+
static LongCountAsync<TSource>(source: IQueryable_1<TSource>, predicate: Expression_1<Func_2<TSource, System_Internal.Boolean>>, cancellationToken?: CancellationToken): Task_1<System_Internal.Int64>;
|
|
1126
|
+
static LongCountAsync<TSource>(source: IQueryable_1<TSource>, cancellationToken?: CancellationToken): Task_1<System_Internal.Int64>;
|
|
1127
|
+
static MaxAsync<TSource, TResult>(source: IQueryable_1<TSource>, selector: Expression_1<Func_2<TSource, TResult>>, cancellationToken?: CancellationToken): Task_1<TResult>;
|
|
1128
|
+
static MaxAsync<TSource>(source: IQueryable_1<TSource>, cancellationToken?: CancellationToken): Task_1<TSource>;
|
|
1129
|
+
static MinAsync<TSource, TResult>(source: IQueryable_1<TSource>, selector: Expression_1<Func_2<TSource, TResult>>, cancellationToken?: CancellationToken): Task_1<TResult>;
|
|
1130
|
+
static MinAsync<TSource>(source: IQueryable_1<TSource>, cancellationToken?: CancellationToken): Task_1<TSource>;
|
|
1131
|
+
static SingleAsync<TSource>(source: IQueryable_1<TSource>, predicate: Expression_1<Func_2<TSource, System_Internal.Boolean>>, cancellationToken?: CancellationToken): Task_1<TSource>;
|
|
1132
|
+
static SingleAsync<TSource>(source: IQueryable_1<TSource>, cancellationToken?: CancellationToken): Task_1<TSource>;
|
|
1133
|
+
static SingleOrDefaultAsync<TSource>(source: IQueryable_1<TSource>, predicate: Expression_1<Func_2<TSource, System_Internal.Boolean>>, cancellationToken?: CancellationToken): Task_1<TSource | undefined>;
|
|
1134
|
+
static SingleOrDefaultAsync<TSource>(source: IQueryable_1<TSource>, cancellationToken?: CancellationToken): Task_1<TSource | undefined>;
|
|
1135
|
+
static SumAsync<TSource>(source: IQueryable_1<TSource>, selector: Expression_1<Func_2<TSource, System_Internal.Decimal>>, cancellationToken?: CancellationToken): Task_1<System_Internal.Decimal>;
|
|
1136
|
+
static SumAsync<TSource>(source: IQueryable_1<TSource>, selector: Expression_1<Func_2<TSource, System_Internal.Double>>, cancellationToken?: CancellationToken): Task_1<System_Internal.Double>;
|
|
1137
|
+
static SumAsync<TSource>(source: IQueryable_1<TSource>, selector: Expression_1<Func_2<TSource, System_Internal.Int32>>, cancellationToken?: CancellationToken): Task_1<System_Internal.Int32>;
|
|
1138
|
+
static SumAsync<TSource>(source: IQueryable_1<TSource>, selector: Expression_1<Func_2<TSource, System_Internal.Int64>>, cancellationToken?: CancellationToken): Task_1<System_Internal.Int64>;
|
|
1139
|
+
static SumAsync<TSource>(source: IQueryable_1<TSource>, selector: Expression_1<Func_2<TSource, Nullable_1<System_Internal.Decimal>>>, cancellationToken?: CancellationToken): Task_1<Nullable_1<System_Internal.Decimal>>;
|
|
1140
|
+
static SumAsync<TSource>(source: IQueryable_1<TSource>, selector: Expression_1<Func_2<TSource, Nullable_1<System_Internal.Double>>>, cancellationToken?: CancellationToken): Task_1<Nullable_1<System_Internal.Double>>;
|
|
1141
|
+
static SumAsync<TSource>(source: IQueryable_1<TSource>, selector: Expression_1<Func_2<TSource, Nullable_1<System_Internal.Int32>>>, cancellationToken?: CancellationToken): Task_1<Nullable_1<System_Internal.Int32>>;
|
|
1142
|
+
static SumAsync<TSource>(source: IQueryable_1<TSource>, selector: Expression_1<Func_2<TSource, Nullable_1<System_Internal.Int64>>>, cancellationToken?: CancellationToken): Task_1<Nullable_1<System_Internal.Int64>>;
|
|
1143
|
+
static SumAsync<TSource>(source: IQueryable_1<TSource>, selector: Expression_1<Func_2<TSource, Nullable_1<System_Internal.Single>>>, cancellationToken?: CancellationToken): Task_1<Nullable_1<System_Internal.Single>>;
|
|
1144
|
+
static SumAsync<TSource>(source: IQueryable_1<TSource>, selector: Expression_1<Func_2<TSource, System_Internal.Single>>, cancellationToken?: CancellationToken): Task_1<System_Internal.Single>;
|
|
1145
|
+
static SumAsync(source: IQueryable_1<System_Internal.Decimal>, cancellationToken?: CancellationToken): Task_1<System_Internal.Decimal>;
|
|
1146
|
+
static SumAsync(source: IQueryable_1<System_Internal.Double>, cancellationToken?: CancellationToken): Task_1<System_Internal.Double>;
|
|
1147
|
+
static SumAsync(source: IQueryable_1<System_Internal.Int32>, cancellationToken?: CancellationToken): Task_1<System_Internal.Int32>;
|
|
1148
|
+
static SumAsync(source: IQueryable_1<System_Internal.Int64>, cancellationToken?: CancellationToken): Task_1<System_Internal.Int64>;
|
|
1149
|
+
static SumAsync(source: IQueryable_1<Nullable_1<System_Internal.Decimal>>, cancellationToken?: CancellationToken): Task_1<Nullable_1<System_Internal.Decimal>>;
|
|
1150
|
+
static SumAsync(source: IQueryable_1<Nullable_1<System_Internal.Double>>, cancellationToken?: CancellationToken): Task_1<Nullable_1<System_Internal.Double>>;
|
|
1151
|
+
static SumAsync(source: IQueryable_1<Nullable_1<System_Internal.Int32>>, cancellationToken?: CancellationToken): Task_1<Nullable_1<System_Internal.Int32>>;
|
|
1152
|
+
static SumAsync(source: IQueryable_1<Nullable_1<System_Internal.Int64>>, cancellationToken?: CancellationToken): Task_1<Nullable_1<System_Internal.Int64>>;
|
|
1153
|
+
static SumAsync(source: IQueryable_1<Nullable_1<System_Internal.Single>>, cancellationToken?: CancellationToken): Task_1<Nullable_1<System_Internal.Single>>;
|
|
1154
|
+
static SumAsync(source: IQueryable_1<System_Internal.Single>, cancellationToken?: CancellationToken): Task_1<System_Internal.Single>;
|
|
1155
|
+
static TagWith<T>(source: IQueryable_1<T>, tag: string): IQueryable_1<T>;
|
|
1156
|
+
static TagWithCallSite<T>(source: IQueryable_1<T>, filePath?: string, lineNumber?: int): IQueryable_1<T>;
|
|
1157
|
+
static ThenInclude<TEntity, TPreviousProperty, TProperty>(source: IIncludableQueryable_2<TEntity, IEnumerable_1<TPreviousProperty>>, navigationPropertyPath: Expression_1<Func_2<TPreviousProperty, TProperty>>): IIncludableQueryable_2<TEntity, TProperty>;
|
|
1158
|
+
static ToArrayAsync<TSource>(source: IQueryable_1<TSource>, cancellationToken?: CancellationToken): Task_1<TSource[]>;
|
|
1159
|
+
static ToDictionaryAsync<TSource, TKey, TElement>(source: IQueryable_1<TSource>, keySelector: Func_2<TSource, TKey>, elementSelector: Func_2<TSource, TElement>, comparer: IEqualityComparer_1<TKey>, cancellationToken?: CancellationToken): Task_1<Dictionary_2<TKey, TElement>>;
|
|
1160
|
+
static ToDictionaryAsync<TSource, TKey, TElement>(source: IQueryable_1<TSource>, keySelector: Func_2<TSource, TKey>, elementSelector: Func_2<TSource, TElement>, cancellationToken?: CancellationToken): Task_1<Dictionary_2<TKey, TElement>>;
|
|
1161
|
+
static ToDictionaryAsync<TSource, TKey>(source: IQueryable_1<TSource>, keySelector: Func_2<TSource, TKey>, comparer: IEqualityComparer_1<TKey>, cancellationToken?: CancellationToken): Task_1<Dictionary_2<TKey, TSource>>;
|
|
1162
|
+
static ToDictionaryAsync<TSource, TKey>(source: IQueryable_1<TSource>, keySelector: Func_2<TSource, TKey>, cancellationToken?: CancellationToken): Task_1<Dictionary_2<TKey, TSource>>;
|
|
1163
|
+
static ToHashSetAsync<TSource>(source: IQueryable_1<TSource>, comparer: IEqualityComparer_1<TSource>, cancellationToken?: CancellationToken): Task_1<HashSet_1<TSource>>;
|
|
1164
|
+
static ToHashSetAsync<TSource>(source: IQueryable_1<TSource>, cancellationToken?: CancellationToken): Task_1<HashSet_1<TSource>>;
|
|
1165
|
+
static ToListAsync<TSource>(source: IQueryable_1<TSource>, cancellationToken?: CancellationToken): Task_1<List_1<TSource>>;
|
|
1061
1166
|
static ToQueryString(source: IQueryable): string;
|
|
1062
1167
|
}
|
|
1063
1168
|
|
|
@@ -1065,45 +1170,45 @@ export abstract class EntityFrameworkQueryableExtensions$instance {
|
|
|
1065
1170
|
export type EntityFrameworkQueryableExtensions = EntityFrameworkQueryableExtensions$instance;
|
|
1066
1171
|
|
|
1067
1172
|
export abstract class ExecutionStrategyExtensions$instance {
|
|
1068
|
-
static Execute<TResult>(strategy: IExecutionStrategy, operation:
|
|
1173
|
+
static Execute<TResult>(strategy: IExecutionStrategy, operation: Func_1<TResult>): TResult;
|
|
1069
1174
|
static Execute(strategy: IExecutionStrategy, operation: Action): void;
|
|
1070
|
-
static Execute<TState>(strategy: IExecutionStrategy, state: TState, operation:
|
|
1071
|
-
static Execute<TState, TResult>(strategy: IExecutionStrategy, state: TState, operation:
|
|
1072
|
-
static Execute<TState, TResult>(strategy: IExecutionStrategy, state: TState, operation:
|
|
1073
|
-
static ExecuteAsync<TResult>(strategy: IExecutionStrategy, operation:
|
|
1074
|
-
static ExecuteAsync<TResult>(strategy: IExecutionStrategy, operation:
|
|
1075
|
-
static ExecuteAsync(strategy: IExecutionStrategy, operation:
|
|
1076
|
-
static ExecuteAsync(strategy: IExecutionStrategy, operation:
|
|
1077
|
-
static ExecuteAsync<TState>(strategy: IExecutionStrategy, state: TState, operation:
|
|
1078
|
-
static ExecuteAsync<TState, TResult>(strategy: IExecutionStrategy, state: TState, operation:
|
|
1079
|
-
static ExecuteAsync<TState, TResult>(strategy: IExecutionStrategy, state: TState, operation:
|
|
1080
|
-
static ExecuteAsync<TState>(strategy: IExecutionStrategy, state: TState, operation:
|
|
1081
|
-
static ExecuteAsync<TState, TResult>(strategy: IExecutionStrategy, state: TState, operation:
|
|
1082
|
-
static ExecuteInTransaction<TResult>(strategy: IExecutionStrategy, operation:
|
|
1083
|
-
static ExecuteInTransaction(strategy: IExecutionStrategy, operation: Action, verifySucceeded:
|
|
1084
|
-
static ExecuteInTransaction<TState>(strategy: IExecutionStrategy, state: TState, operation:
|
|
1085
|
-
static ExecuteInTransaction<TState, TResult>(strategy: IExecutionStrategy, state: TState, operation:
|
|
1086
|
-
static ExecuteInTransaction<TState, TResult>(strategy: IExecutionStrategy, state: TState, operation:
|
|
1087
|
-
static ExecuteInTransactionAsync<TResult>(strategy: IExecutionStrategy, operation:
|
|
1088
|
-
static ExecuteInTransactionAsync(strategy: IExecutionStrategy, operation:
|
|
1089
|
-
static ExecuteInTransactionAsync(strategy: IExecutionStrategy, operation:
|
|
1090
|
-
static ExecuteInTransactionAsync<TState, TResult>(strategy: IExecutionStrategy, state: TState, operation:
|
|
1091
|
-
static ExecuteInTransactionAsync<TState>(strategy: IExecutionStrategy, state: TState, operation:
|
|
1092
|
-
static ExecuteInTransactionAsync<TState, TResult>(strategy: IExecutionStrategy, state: TState, operation:
|
|
1175
|
+
static Execute<TState>(strategy: IExecutionStrategy, state: TState, operation: Action_1<TState>): void;
|
|
1176
|
+
static Execute<TState, TResult>(strategy: IExecutionStrategy, state: TState, operation: Func_2<TState, TResult>, verifySucceeded: Func_2<TState, ExecutionResult_1<TResult>>): TResult;
|
|
1177
|
+
static Execute<TState, TResult>(strategy: IExecutionStrategy, state: TState, operation: Func_2<TState, TResult>): TResult;
|
|
1178
|
+
static ExecuteAsync<TResult>(strategy: IExecutionStrategy, operation: Func_1<Task_1<TResult>>): Task_1<TResult>;
|
|
1179
|
+
static ExecuteAsync<TResult>(strategy: IExecutionStrategy, operation: Func_2<CancellationToken, Task_1<TResult>>, cancellationToken: CancellationToken): Task_1<TResult>;
|
|
1180
|
+
static ExecuteAsync(strategy: IExecutionStrategy, operation: Func_1<Task>): Task;
|
|
1181
|
+
static ExecuteAsync(strategy: IExecutionStrategy, operation: Func_2<CancellationToken, Task>, cancellationToken: CancellationToken): Task;
|
|
1182
|
+
static ExecuteAsync<TState>(strategy: IExecutionStrategy, state: TState, operation: Func_2<TState, Task>): Task;
|
|
1183
|
+
static ExecuteAsync<TState, TResult>(strategy: IExecutionStrategy, state: TState, operation: Func_2<TState, Task_1<TResult>>): Task_1<TResult>;
|
|
1184
|
+
static ExecuteAsync<TState, TResult>(strategy: IExecutionStrategy, state: TState, operation: Func_3<TState, CancellationToken, Task_1<TResult>>, verifySucceeded: Func_3<TState, CancellationToken, Task_1<ExecutionResult_1<TResult>>>, cancellationToken?: CancellationToken): Task_1<TResult>;
|
|
1185
|
+
static ExecuteAsync<TState>(strategy: IExecutionStrategy, state: TState, operation: Func_3<TState, CancellationToken, Task>, cancellationToken: CancellationToken): Task;
|
|
1186
|
+
static ExecuteAsync<TState, TResult>(strategy: IExecutionStrategy, state: TState, operation: Func_3<TState, CancellationToken, Task_1<TResult>>, cancellationToken: CancellationToken): Task_1<TResult>;
|
|
1187
|
+
static ExecuteInTransaction<TResult>(strategy: IExecutionStrategy, operation: Func_1<TResult>, verifySucceeded: Func_1<System_Internal.Boolean>): TResult;
|
|
1188
|
+
static ExecuteInTransaction(strategy: IExecutionStrategy, operation: Action, verifySucceeded: Func_1<System_Internal.Boolean>): void;
|
|
1189
|
+
static ExecuteInTransaction<TState>(strategy: IExecutionStrategy, state: TState, operation: Action_1<TState>, verifySucceeded: Func_2<TState, System_Internal.Boolean>): void;
|
|
1190
|
+
static ExecuteInTransaction<TState, TResult>(strategy: IExecutionStrategy, state: TState, operation: Func_2<TState, TResult>, verifySucceeded: Func_2<TState, System_Internal.Boolean>, beginTransaction: Func_2<DbContext, IDbContextTransaction>): TResult;
|
|
1191
|
+
static ExecuteInTransaction<TState, TResult>(strategy: IExecutionStrategy, state: TState, operation: Func_2<TState, TResult>, verifySucceeded: Func_2<TState, System_Internal.Boolean>): TResult;
|
|
1192
|
+
static ExecuteInTransactionAsync<TResult>(strategy: IExecutionStrategy, operation: Func_2<CancellationToken, Task_1<TResult>>, verifySucceeded: Func_2<CancellationToken, Task_1<System_Internal.Boolean>>, cancellationToken?: CancellationToken): Task_1<TResult>;
|
|
1193
|
+
static ExecuteInTransactionAsync(strategy: IExecutionStrategy, operation: Func_1<Task>, verifySucceeded: Func_1<Task_1<System_Internal.Boolean>>): Task;
|
|
1194
|
+
static ExecuteInTransactionAsync(strategy: IExecutionStrategy, operation: Func_2<CancellationToken, Task>, verifySucceeded: Func_2<CancellationToken, Task_1<System_Internal.Boolean>>, cancellationToken?: CancellationToken): Task;
|
|
1195
|
+
static ExecuteInTransactionAsync<TState, TResult>(strategy: IExecutionStrategy, state: TState, operation: Func_3<TState, CancellationToken, Task_1<TResult>>, verifySucceeded: Func_3<TState, CancellationToken, Task_1<System_Internal.Boolean>>, beginTransaction: Func_3<DbContext, CancellationToken, Task_1<IDbContextTransaction>>, cancellationToken?: CancellationToken): Task_1<TResult>;
|
|
1196
|
+
static ExecuteInTransactionAsync<TState>(strategy: IExecutionStrategy, state: TState, operation: Func_3<TState, CancellationToken, Task>, verifySucceeded: Func_3<TState, CancellationToken, Task_1<System_Internal.Boolean>>, cancellationToken?: CancellationToken): Task;
|
|
1197
|
+
static ExecuteInTransactionAsync<TState, TResult>(strategy: IExecutionStrategy, state: TState, operation: Func_3<TState, CancellationToken, Task_1<TResult>>, verifySucceeded: Func_3<TState, CancellationToken, Task_1<System_Internal.Boolean>>, cancellationToken?: CancellationToken): Task_1<TResult>;
|
|
1093
1198
|
}
|
|
1094
1199
|
|
|
1095
1200
|
|
|
1096
1201
|
export type ExecutionStrategyExtensions = ExecutionStrategyExtensions$instance;
|
|
1097
1202
|
|
|
1098
1203
|
export abstract class ObservableCollectionExtensions$instance {
|
|
1099
|
-
static ToBindingList<T>(source:
|
|
1204
|
+
static ToBindingList<T>(source: ObservableCollection_1<T>): BindingList_1<T>;
|
|
1100
1205
|
}
|
|
1101
1206
|
|
|
1102
1207
|
|
|
1103
1208
|
export type ObservableCollectionExtensions = ObservableCollectionExtensions$instance;
|
|
1104
1209
|
|
|
1105
1210
|
export abstract class PropertyBaseExtensions$instance {
|
|
1106
|
-
static Format(properties:
|
|
1211
|
+
static Format(properties: IEnumerable_1<IReadOnlyPropertyBase>, includeTypes?: boolean): string;
|
|
1107
1212
|
}
|
|
1108
1213
|
|
|
1109
1214
|
|
|
@@ -1143,7 +1248,7 @@ export type RelationalComplexPropertyBuilderExtensions = RelationalComplexProper
|
|
|
1143
1248
|
|
|
1144
1249
|
export abstract class RelationalComplexPropertyExtensions$instance {
|
|
1145
1250
|
static GetJsonPropertyName(complexProperty: IReadOnlyComplexProperty): string | undefined;
|
|
1146
|
-
static GetJsonPropertyNameConfigurationSource(complexProperty: IConventionComplexProperty):
|
|
1251
|
+
static GetJsonPropertyNameConfigurationSource(complexProperty: IConventionComplexProperty): Nullable_1<ConfigurationSource>;
|
|
1147
1252
|
static SetJsonPropertyName(complexProperty: IConventionComplexProperty, name: string, fromDataAnnotation?: boolean): string | undefined;
|
|
1148
1253
|
static SetJsonPropertyName(complexProperty: IMutableComplexProperty, name: string): void;
|
|
1149
1254
|
}
|
|
@@ -1154,16 +1259,16 @@ export type RelationalComplexPropertyExtensions = RelationalComplexPropertyExten
|
|
|
1154
1259
|
export abstract class RelationalComplexTypePrimitiveCollectionBuilderExtensions$instance {
|
|
1155
1260
|
static HasColumnName<TProperty>(primitiveCollectionBuilder: ComplexTypePrimitiveCollectionBuilder_1<TProperty>, name: string): ComplexTypePrimitiveCollectionBuilder_1<TProperty>;
|
|
1156
1261
|
static HasColumnName(primitiveCollectionBuilder: ComplexTypePrimitiveCollectionBuilder, name: string): ComplexTypePrimitiveCollectionBuilder;
|
|
1157
|
-
static HasColumnOrder<TProperty>(primitiveCollectionBuilder: ComplexTypePrimitiveCollectionBuilder_1<TProperty>, order:
|
|
1158
|
-
static HasColumnOrder(primitiveCollectionBuilder: ComplexTypePrimitiveCollectionBuilder, order:
|
|
1262
|
+
static HasColumnOrder<TProperty>(primitiveCollectionBuilder: ComplexTypePrimitiveCollectionBuilder_1<TProperty>, order: Nullable_1<System_Internal.Int32>): ComplexTypePrimitiveCollectionBuilder_1<TProperty>;
|
|
1263
|
+
static HasColumnOrder(primitiveCollectionBuilder: ComplexTypePrimitiveCollectionBuilder, order: Nullable_1<System_Internal.Int32>): ComplexTypePrimitiveCollectionBuilder;
|
|
1159
1264
|
static HasColumnType<TProperty>(primitiveCollectionBuilder: ComplexTypePrimitiveCollectionBuilder_1<TProperty>, typeName: string): ComplexTypePrimitiveCollectionBuilder_1<TProperty>;
|
|
1160
1265
|
static HasColumnType(primitiveCollectionBuilder: ComplexTypePrimitiveCollectionBuilder, typeName: string): ComplexTypePrimitiveCollectionBuilder;
|
|
1161
1266
|
static HasComment<TProperty>(primitiveCollectionBuilder: ComplexTypePrimitiveCollectionBuilder_1<TProperty>, comment: string): ComplexTypePrimitiveCollectionBuilder_1<TProperty>;
|
|
1162
1267
|
static HasComment(primitiveCollectionBuilder: ComplexTypePrimitiveCollectionBuilder, comment: string): ComplexTypePrimitiveCollectionBuilder;
|
|
1163
|
-
static HasComputedColumnSql<TProperty>(primitiveCollectionBuilder: ComplexTypePrimitiveCollectionBuilder_1<TProperty>, sql: string, stored:
|
|
1268
|
+
static HasComputedColumnSql<TProperty>(primitiveCollectionBuilder: ComplexTypePrimitiveCollectionBuilder_1<TProperty>, sql: string, stored: Nullable_1<System_Internal.Boolean>): ComplexTypePrimitiveCollectionBuilder_1<TProperty>;
|
|
1164
1269
|
static HasComputedColumnSql<TProperty>(primitiveCollectionBuilder: ComplexTypePrimitiveCollectionBuilder_1<TProperty>, sql: string): ComplexTypePrimitiveCollectionBuilder_1<TProperty>;
|
|
1165
1270
|
static HasComputedColumnSql<TProperty>(primitiveCollectionBuilder: ComplexTypePrimitiveCollectionBuilder_1<TProperty>): ComplexTypePrimitiveCollectionBuilder_1<TProperty>;
|
|
1166
|
-
static HasComputedColumnSql(primitiveCollectionBuilder: ComplexTypePrimitiveCollectionBuilder, sql: string, stored:
|
|
1271
|
+
static HasComputedColumnSql(primitiveCollectionBuilder: ComplexTypePrimitiveCollectionBuilder, sql: string, stored: Nullable_1<System_Internal.Boolean>): ComplexTypePrimitiveCollectionBuilder;
|
|
1167
1272
|
static HasComputedColumnSql(primitiveCollectionBuilder: ComplexTypePrimitiveCollectionBuilder, sql: string): ComplexTypePrimitiveCollectionBuilder;
|
|
1168
1273
|
static HasComputedColumnSql(primitiveCollectionBuilder: ComplexTypePrimitiveCollectionBuilder): ComplexTypePrimitiveCollectionBuilder;
|
|
1169
1274
|
static HasDefaultValue<TProperty>(primitiveCollectionBuilder: ComplexTypePrimitiveCollectionBuilder_1<TProperty>, value: unknown): ComplexTypePrimitiveCollectionBuilder_1<TProperty>;
|
|
@@ -1188,16 +1293,16 @@ export type RelationalComplexTypePrimitiveCollectionBuilderExtensions = Relation
|
|
|
1188
1293
|
export abstract class RelationalComplexTypePropertyBuilderExtensions$instance {
|
|
1189
1294
|
static HasColumnName<TProperty>(propertyBuilder: ComplexTypePropertyBuilder_1<TProperty>, name: string): ComplexTypePropertyBuilder_1<TProperty>;
|
|
1190
1295
|
static HasColumnName(propertyBuilder: ComplexTypePropertyBuilder, name: string): ComplexTypePropertyBuilder;
|
|
1191
|
-
static HasColumnOrder<TProperty>(propertyBuilder: ComplexTypePropertyBuilder_1<TProperty>, order:
|
|
1192
|
-
static HasColumnOrder(propertyBuilder: ComplexTypePropertyBuilder, order:
|
|
1296
|
+
static HasColumnOrder<TProperty>(propertyBuilder: ComplexTypePropertyBuilder_1<TProperty>, order: Nullable_1<System_Internal.Int32>): ComplexTypePropertyBuilder_1<TProperty>;
|
|
1297
|
+
static HasColumnOrder(propertyBuilder: ComplexTypePropertyBuilder, order: Nullable_1<System_Internal.Int32>): ComplexTypePropertyBuilder;
|
|
1193
1298
|
static HasColumnType<TProperty>(propertyBuilder: ComplexTypePropertyBuilder_1<TProperty>, typeName: string): ComplexTypePropertyBuilder_1<TProperty>;
|
|
1194
1299
|
static HasColumnType(propertyBuilder: ComplexTypePropertyBuilder, typeName: string): ComplexTypePropertyBuilder;
|
|
1195
1300
|
static HasComment<TProperty>(propertyBuilder: ComplexTypePropertyBuilder_1<TProperty>, comment: string): ComplexTypePropertyBuilder_1<TProperty>;
|
|
1196
1301
|
static HasComment(propertyBuilder: ComplexTypePropertyBuilder, comment: string): ComplexTypePropertyBuilder;
|
|
1197
|
-
static HasComputedColumnSql<TProperty>(propertyBuilder: ComplexTypePropertyBuilder_1<TProperty>, sql: string, stored:
|
|
1302
|
+
static HasComputedColumnSql<TProperty>(propertyBuilder: ComplexTypePropertyBuilder_1<TProperty>, sql: string, stored: Nullable_1<System_Internal.Boolean>): ComplexTypePropertyBuilder_1<TProperty>;
|
|
1198
1303
|
static HasComputedColumnSql<TProperty>(propertyBuilder: ComplexTypePropertyBuilder_1<TProperty>, sql: string): ComplexTypePropertyBuilder_1<TProperty>;
|
|
1199
1304
|
static HasComputedColumnSql<TProperty>(propertyBuilder: ComplexTypePropertyBuilder_1<TProperty>): ComplexTypePropertyBuilder_1<TProperty>;
|
|
1200
|
-
static HasComputedColumnSql(propertyBuilder: ComplexTypePropertyBuilder, sql: string, stored:
|
|
1305
|
+
static HasComputedColumnSql(propertyBuilder: ComplexTypePropertyBuilder, sql: string, stored: Nullable_1<System_Internal.Boolean>): ComplexTypePropertyBuilder;
|
|
1201
1306
|
static HasComputedColumnSql(propertyBuilder: ComplexTypePropertyBuilder, sql: string): ComplexTypePropertyBuilder;
|
|
1202
1307
|
static HasComputedColumnSql(propertyBuilder: ComplexTypePropertyBuilder): ComplexTypePropertyBuilder;
|
|
1203
1308
|
static HasDefaultValue<TProperty>(propertyBuilder: ComplexTypePropertyBuilder_1<TProperty>, value: unknown): ComplexTypePropertyBuilder_1<TProperty>;
|
|
@@ -1221,27 +1326,27 @@ export type RelationalComplexTypePropertyBuilderExtensions = RelationalComplexTy
|
|
|
1221
1326
|
|
|
1222
1327
|
export abstract class RelationalDatabaseFacadeExtensions$instance {
|
|
1223
1328
|
static BeginTransaction(databaseFacade: DatabaseFacade, isolationLevel: IsolationLevel): IDbContextTransaction;
|
|
1224
|
-
static BeginTransactionAsync(databaseFacade: DatabaseFacade, isolationLevel: IsolationLevel, cancellationToken?: CancellationToken):
|
|
1329
|
+
static BeginTransactionAsync(databaseFacade: DatabaseFacade, isolationLevel: IsolationLevel, cancellationToken?: CancellationToken): Task_1<IDbContextTransaction>;
|
|
1225
1330
|
static CloseConnection(databaseFacade: DatabaseFacade): void;
|
|
1226
1331
|
static CloseConnectionAsync(databaseFacade: DatabaseFacade): Task;
|
|
1227
1332
|
static ExecuteSql(databaseFacade: DatabaseFacade, sql: FormattableString): int;
|
|
1228
|
-
static ExecuteSqlAsync(databaseFacade: DatabaseFacade, sql: FormattableString, cancellationToken?: CancellationToken):
|
|
1333
|
+
static ExecuteSqlAsync(databaseFacade: DatabaseFacade, sql: FormattableString, cancellationToken?: CancellationToken): Task_1<System_Internal.Int32>;
|
|
1229
1334
|
static ExecuteSqlInterpolated(databaseFacade: DatabaseFacade, sql: FormattableString): int;
|
|
1230
|
-
static ExecuteSqlInterpolatedAsync(databaseFacade: DatabaseFacade, sql: FormattableString, cancellationToken?: CancellationToken):
|
|
1231
|
-
static ExecuteSqlRaw(databaseFacade: DatabaseFacade, sql: string, parameters:
|
|
1335
|
+
static ExecuteSqlInterpolatedAsync(databaseFacade: DatabaseFacade, sql: FormattableString, cancellationToken?: CancellationToken): Task_1<System_Internal.Int32>;
|
|
1336
|
+
static ExecuteSqlRaw(databaseFacade: DatabaseFacade, sql: string, parameters: IEnumerable_1<unknown>): int;
|
|
1232
1337
|
static ExecuteSqlRaw(databaseFacade: DatabaseFacade, sql: string, ...parameters: unknown[]): int;
|
|
1233
|
-
static ExecuteSqlRawAsync(databaseFacade: DatabaseFacade, sql: string, parameters:
|
|
1234
|
-
static ExecuteSqlRawAsync(databaseFacade: DatabaseFacade, sql: string, ...parameters: unknown[]):
|
|
1235
|
-
static ExecuteSqlRawAsync(databaseFacade: DatabaseFacade, sql: string, cancellationToken?: CancellationToken):
|
|
1338
|
+
static ExecuteSqlRawAsync(databaseFacade: DatabaseFacade, sql: string, parameters: IEnumerable_1<unknown>, cancellationToken?: CancellationToken): Task_1<System_Internal.Int32>;
|
|
1339
|
+
static ExecuteSqlRawAsync(databaseFacade: DatabaseFacade, sql: string, ...parameters: unknown[]): Task_1<System_Internal.Int32>;
|
|
1340
|
+
static ExecuteSqlRawAsync(databaseFacade: DatabaseFacade, sql: string, cancellationToken?: CancellationToken): Task_1<System_Internal.Int32>;
|
|
1236
1341
|
static GenerateCreateScript(databaseFacade: DatabaseFacade): string;
|
|
1237
|
-
static GetAppliedMigrations(databaseFacade: DatabaseFacade):
|
|
1238
|
-
static GetAppliedMigrationsAsync(databaseFacade: DatabaseFacade, cancellationToken?: CancellationToken):
|
|
1239
|
-
static GetCommandTimeout(databaseFacade: DatabaseFacade):
|
|
1342
|
+
static GetAppliedMigrations(databaseFacade: DatabaseFacade): IEnumerable_1<System_Internal.String>;
|
|
1343
|
+
static GetAppliedMigrationsAsync(databaseFacade: DatabaseFacade, cancellationToken?: CancellationToken): Task_1<IEnumerable_1<System_Internal.String>>;
|
|
1344
|
+
static GetCommandTimeout(databaseFacade: DatabaseFacade): Nullable_1<System_Internal.Int32>;
|
|
1240
1345
|
static GetConnectionString(databaseFacade: DatabaseFacade): string | undefined;
|
|
1241
1346
|
static GetDbConnection(databaseFacade: DatabaseFacade): DbConnection;
|
|
1242
|
-
static GetMigrations(databaseFacade: DatabaseFacade):
|
|
1243
|
-
static GetPendingMigrations(databaseFacade: DatabaseFacade):
|
|
1244
|
-
static GetPendingMigrationsAsync(databaseFacade: DatabaseFacade, cancellationToken?: CancellationToken):
|
|
1347
|
+
static GetMigrations(databaseFacade: DatabaseFacade): IEnumerable_1<System_Internal.String>;
|
|
1348
|
+
static GetPendingMigrations(databaseFacade: DatabaseFacade): IEnumerable_1<System_Internal.String>;
|
|
1349
|
+
static GetPendingMigrationsAsync(databaseFacade: DatabaseFacade, cancellationToken?: CancellationToken): Task_1<IEnumerable_1<System_Internal.String>>;
|
|
1245
1350
|
static HasPendingModelChanges(databaseFacade: DatabaseFacade): boolean;
|
|
1246
1351
|
static IsRelational(databaseFacade: DatabaseFacade): boolean;
|
|
1247
1352
|
static Migrate(databaseFacade: DatabaseFacade, targetMigration: string): void;
|
|
@@ -1250,16 +1355,16 @@ export abstract class RelationalDatabaseFacadeExtensions$instance {
|
|
|
1250
1355
|
static MigrateAsync(databaseFacade: DatabaseFacade, cancellationToken?: CancellationToken): Task;
|
|
1251
1356
|
static OpenConnection(databaseFacade: DatabaseFacade): void;
|
|
1252
1357
|
static OpenConnectionAsync(databaseFacade: DatabaseFacade, cancellationToken?: CancellationToken): Task;
|
|
1253
|
-
static SetCommandTimeout(databaseFacade: DatabaseFacade, timeout:
|
|
1358
|
+
static SetCommandTimeout(databaseFacade: DatabaseFacade, timeout: Nullable_1<System_Internal.Int32>): void;
|
|
1254
1359
|
static SetCommandTimeout(databaseFacade: DatabaseFacade, timeout: TimeSpan): void;
|
|
1255
1360
|
static SetConnectionString(databaseFacade: DatabaseFacade, connectionString: string): void;
|
|
1256
1361
|
static SetDbConnection(databaseFacade: DatabaseFacade, connection: DbConnection, contextOwnsConnection?: boolean): void;
|
|
1257
|
-
static SqlQuery<TResult>(databaseFacade: DatabaseFacade, sql: FormattableString):
|
|
1258
|
-
static SqlQueryRaw<TResult>(databaseFacade: DatabaseFacade, sql: string, ...parameters: unknown[]):
|
|
1362
|
+
static SqlQuery<TResult>(databaseFacade: DatabaseFacade, sql: FormattableString): IQueryable_1<TResult>;
|
|
1363
|
+
static SqlQueryRaw<TResult>(databaseFacade: DatabaseFacade, sql: string, ...parameters: unknown[]): IQueryable_1<TResult>;
|
|
1259
1364
|
static UseTransaction(databaseFacade: DatabaseFacade, transaction: DbTransaction, transactionId: Guid): IDbContextTransaction | undefined;
|
|
1260
1365
|
static UseTransaction(databaseFacade: DatabaseFacade, transaction: DbTransaction): IDbContextTransaction | undefined;
|
|
1261
|
-
static UseTransactionAsync(databaseFacade: DatabaseFacade, transaction: DbTransaction, transactionId: Guid, cancellationToken?: CancellationToken):
|
|
1262
|
-
static UseTransactionAsync(databaseFacade: DatabaseFacade, transaction: DbTransaction, cancellationToken?: CancellationToken):
|
|
1366
|
+
static UseTransactionAsync(databaseFacade: DatabaseFacade, transaction: DbTransaction, transactionId: Guid, cancellationToken?: CancellationToken): Task_1<IDbContextTransaction | undefined>;
|
|
1367
|
+
static UseTransactionAsync(databaseFacade: DatabaseFacade, transaction: DbTransaction, cancellationToken?: CancellationToken): Task_1<IDbContextTransaction | undefined>;
|
|
1263
1368
|
}
|
|
1264
1369
|
|
|
1265
1370
|
|
|
@@ -1275,12 +1380,12 @@ export abstract class RelationalDbFunctionsExtensions$instance {
|
|
|
1275
1380
|
export type RelationalDbFunctionsExtensions = RelationalDbFunctionsExtensions$instance;
|
|
1276
1381
|
|
|
1277
1382
|
export abstract class RelationalElementTypeBuilderExtensions$instance {
|
|
1278
|
-
static CanSetFixedLength(elementTypeBuilder: IConventionElementTypeBuilder, fixedLength:
|
|
1383
|
+
static CanSetFixedLength(elementTypeBuilder: IConventionElementTypeBuilder, fixedLength: Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): boolean;
|
|
1279
1384
|
static CanSetStoreType(elementTypeBuilder: IConventionElementTypeBuilder, typeName: string, fromDataAnnotation?: boolean): boolean;
|
|
1280
1385
|
static HasStoreType(elementTypeBuilder: ElementTypeBuilder, typeName: string): ElementTypeBuilder;
|
|
1281
1386
|
static HasStoreType(elementTypeBuilder: IConventionElementTypeBuilder, typeName: string, fromDataAnnotation?: boolean): IConventionElementTypeBuilder | undefined;
|
|
1282
1387
|
static IsFixedLength(elementTypeBuilder: ElementTypeBuilder, fixedLength?: boolean): ElementTypeBuilder;
|
|
1283
|
-
static IsFixedLength(elementTypeBuilder: IConventionElementTypeBuilder, fixedLength:
|
|
1388
|
+
static IsFixedLength(elementTypeBuilder: IConventionElementTypeBuilder, fixedLength: Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): IConventionElementTypeBuilder | undefined;
|
|
1284
1389
|
}
|
|
1285
1390
|
|
|
1286
1391
|
|
|
@@ -1288,15 +1393,15 @@ export type RelationalElementTypeBuilderExtensions = RelationalElementTypeBuilde
|
|
|
1288
1393
|
|
|
1289
1394
|
export abstract class RelationalElementTypeExtensions$instance {
|
|
1290
1395
|
static FindRelationalTypeMapping(elementType: IReadOnlyElementType): RelationalTypeMapping | undefined;
|
|
1291
|
-
static GetIsFixedLengthConfigurationSource(elementType: IConventionElementType):
|
|
1396
|
+
static GetIsFixedLengthConfigurationSource(elementType: IConventionElementType): Nullable_1<ConfigurationSource>;
|
|
1292
1397
|
static GetRelationalTypeMapping(elementType: IReadOnlyElementType): RelationalTypeMapping;
|
|
1293
1398
|
static GetStoreType(elementType: IElementType): string;
|
|
1294
1399
|
static GetStoreType(elementType: IReadOnlyElementType): string | undefined;
|
|
1295
|
-
static GetStoreTypeConfigurationSource(elementType: IConventionElementType):
|
|
1296
|
-
static IsFixedLength(elementType: IReadOnlyElementType, storeObject: StoreObjectIdentifier):
|
|
1297
|
-
static IsFixedLength(elementType: IReadOnlyElementType):
|
|
1298
|
-
static SetIsFixedLength(elementType: IConventionElementType, fixedLength:
|
|
1299
|
-
static SetIsFixedLength(elementType: IMutableElementType, fixedLength:
|
|
1400
|
+
static GetStoreTypeConfigurationSource(elementType: IConventionElementType): Nullable_1<ConfigurationSource>;
|
|
1401
|
+
static IsFixedLength(elementType: IReadOnlyElementType, storeObject: StoreObjectIdentifier): Nullable_1<System_Internal.Boolean>;
|
|
1402
|
+
static IsFixedLength(elementType: IReadOnlyElementType): Nullable_1<System_Internal.Boolean>;
|
|
1403
|
+
static SetIsFixedLength(elementType: IConventionElementType, fixedLength: Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): Nullable_1<System_Internal.Boolean>;
|
|
1404
|
+
static SetIsFixedLength(elementType: IMutableElementType, fixedLength: Nullable_1<System_Internal.Boolean>): void;
|
|
1300
1405
|
static SetStoreType(elementType: IConventionElementType, value: string, fromDataAnnotation?: boolean): string | undefined;
|
|
1301
1406
|
static SetStoreType(elementType: IMutableElementType, value: string): void;
|
|
1302
1407
|
}
|
|
@@ -1305,7 +1410,7 @@ export abstract class RelationalElementTypeExtensions$instance {
|
|
|
1305
1410
|
export type RelationalElementTypeExtensions = RelationalElementTypeExtensions$instance;
|
|
1306
1411
|
|
|
1307
1412
|
export abstract class RelationalEntityTypeBuilderExtensions$instance {
|
|
1308
|
-
static CanExcludeTableFromMigrations(entityTypeBuilder: IConventionEntityTypeBuilder, excludedFromMigrations:
|
|
1413
|
+
static CanExcludeTableFromMigrations(entityTypeBuilder: IConventionEntityTypeBuilder, excludedFromMigrations: Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): boolean;
|
|
1309
1414
|
static CanHaveCheckConstraint(entityTypeBuilder: IConventionEntityTypeBuilder, name: string, sql: string, fromDataAnnotation?: boolean): boolean;
|
|
1310
1415
|
static CanSetComment(entityTypeBuilder: IConventionEntityTypeBuilder, comment: string, fromDataAnnotation?: boolean): boolean;
|
|
1311
1416
|
static CanSetFunction(entityTypeBuilder: IConventionEntityTypeBuilder, function_: MethodInfo, fromDataAnnotation?: boolean): boolean;
|
|
@@ -1317,138 +1422,138 @@ export abstract class RelationalEntityTypeBuilderExtensions$instance {
|
|
|
1317
1422
|
static CanSetTable(entityTypeBuilder: IConventionEntityTypeBuilder, name: string, fromDataAnnotation?: boolean): boolean;
|
|
1318
1423
|
static CanSetView(entityTypeBuilder: IConventionEntityTypeBuilder, name: string, fromDataAnnotation?: boolean): boolean;
|
|
1319
1424
|
static CanSetViewSchema(entityTypeBuilder: IConventionEntityTypeBuilder, schema: string, fromDataAnnotation?: boolean): boolean;
|
|
1320
|
-
static DeleteUsingStoredProcedure<TEntity>(entityTypeBuilder: EntityTypeBuilder_1<TEntity>, buildAction:
|
|
1321
|
-
static DeleteUsingStoredProcedure<TEntity>(entityTypeBuilder: EntityTypeBuilder_1<TEntity>, name: string, buildAction:
|
|
1322
|
-
static DeleteUsingStoredProcedure<TEntity>(entityTypeBuilder: EntityTypeBuilder_1<TEntity>, name: string, schema: string, buildAction:
|
|
1323
|
-
static DeleteUsingStoredProcedure(entityTypeBuilder: EntityTypeBuilder, buildAction:
|
|
1324
|
-
static DeleteUsingStoredProcedure(entityTypeBuilder: EntityTypeBuilder, name: string, buildAction:
|
|
1325
|
-
static DeleteUsingStoredProcedure(entityTypeBuilder: EntityTypeBuilder, name: string, schema: string, buildAction:
|
|
1425
|
+
static DeleteUsingStoredProcedure<TEntity>(entityTypeBuilder: EntityTypeBuilder_1<TEntity>, buildAction: Action_1<StoredProcedureBuilder_1<TEntity>>): EntityTypeBuilder_1<TEntity>;
|
|
1426
|
+
static DeleteUsingStoredProcedure<TEntity>(entityTypeBuilder: EntityTypeBuilder_1<TEntity>, name: string, buildAction: Action_1<StoredProcedureBuilder_1<TEntity>>): EntityTypeBuilder_1<TEntity>;
|
|
1427
|
+
static DeleteUsingStoredProcedure<TEntity>(entityTypeBuilder: EntityTypeBuilder_1<TEntity>, name: string, schema: string, buildAction: Action_1<StoredProcedureBuilder_1<TEntity>>): EntityTypeBuilder_1<TEntity>;
|
|
1428
|
+
static DeleteUsingStoredProcedure(entityTypeBuilder: EntityTypeBuilder, buildAction: Action_1<StoredProcedureBuilder>): EntityTypeBuilder;
|
|
1429
|
+
static DeleteUsingStoredProcedure(entityTypeBuilder: EntityTypeBuilder, name: string, buildAction: Action_1<StoredProcedureBuilder>): EntityTypeBuilder;
|
|
1430
|
+
static DeleteUsingStoredProcedure(entityTypeBuilder: EntityTypeBuilder, name: string, schema: string, buildAction: Action_1<StoredProcedureBuilder>): EntityTypeBuilder;
|
|
1326
1431
|
static DeleteUsingStoredProcedure(entityTypeBuilder: IConventionEntityTypeBuilder, fromDataAnnotation?: boolean): IConventionStoredProcedureBuilder | undefined;
|
|
1327
|
-
static DeleteUsingStoredProcedure(ownedNavigationBuilder: OwnedNavigationBuilder, buildAction:
|
|
1328
|
-
static DeleteUsingStoredProcedure(ownedNavigationBuilder: OwnedNavigationBuilder, name: string, buildAction:
|
|
1329
|
-
static DeleteUsingStoredProcedure(ownedNavigationBuilder: OwnedNavigationBuilder, name: string, schema: string, buildAction:
|
|
1330
|
-
static DeleteUsingStoredProcedure<TOwnerEntity, TDependentEntity>(ownedNavigationBuilder: OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, buildAction:
|
|
1331
|
-
static DeleteUsingStoredProcedure<TOwnerEntity, TDependentEntity>(ownedNavigationBuilder: OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, name: string, buildAction:
|
|
1332
|
-
static DeleteUsingStoredProcedure<TOwnerEntity, TDependentEntity>(ownedNavigationBuilder: OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, name: string, schema: string, buildAction:
|
|
1333
|
-
static ExcludeTableFromMigrations(entityTypeBuilder: IConventionEntityTypeBuilder, excludedFromMigrations:
|
|
1334
|
-
static HasCheckConstraint<TEntity>(entityTypeBuilder: EntityTypeBuilder_1<TEntity>, name: string, sql: string, buildAction:
|
|
1432
|
+
static DeleteUsingStoredProcedure(ownedNavigationBuilder: OwnedNavigationBuilder, buildAction: Action_1<OwnedNavigationStoredProcedureBuilder>): OwnedNavigationBuilder;
|
|
1433
|
+
static DeleteUsingStoredProcedure(ownedNavigationBuilder: OwnedNavigationBuilder, name: string, buildAction: Action_1<OwnedNavigationStoredProcedureBuilder>): OwnedNavigationBuilder;
|
|
1434
|
+
static DeleteUsingStoredProcedure(ownedNavigationBuilder: OwnedNavigationBuilder, name: string, schema: string, buildAction: Action_1<OwnedNavigationStoredProcedureBuilder>): OwnedNavigationBuilder;
|
|
1435
|
+
static DeleteUsingStoredProcedure<TOwnerEntity, TDependentEntity>(ownedNavigationBuilder: OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, buildAction: Action_1<OwnedNavigationStoredProcedureBuilder_2<TOwnerEntity, TDependentEntity>>): OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>;
|
|
1436
|
+
static DeleteUsingStoredProcedure<TOwnerEntity, TDependentEntity>(ownedNavigationBuilder: OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, name: string, buildAction: Action_1<OwnedNavigationStoredProcedureBuilder_2<TOwnerEntity, TDependentEntity>>): OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>;
|
|
1437
|
+
static DeleteUsingStoredProcedure<TOwnerEntity, TDependentEntity>(ownedNavigationBuilder: OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, name: string, schema: string, buildAction: Action_1<OwnedNavigationStoredProcedureBuilder_2<TOwnerEntity, TDependentEntity>>): OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>;
|
|
1438
|
+
static ExcludeTableFromMigrations(entityTypeBuilder: IConventionEntityTypeBuilder, excludedFromMigrations: Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): IConventionEntityTypeBuilder | undefined;
|
|
1439
|
+
static HasCheckConstraint<TEntity>(entityTypeBuilder: EntityTypeBuilder_1<TEntity>, name: string, sql: string, buildAction: Action_1<CheckConstraintBuilder>): EntityTypeBuilder_1<TEntity>;
|
|
1335
1440
|
static HasCheckConstraint<TEntity>(entityTypeBuilder: EntityTypeBuilder_1<TEntity>, name: string, sql: string): EntityTypeBuilder_1<TEntity>;
|
|
1336
|
-
static HasCheckConstraint(entityTypeBuilder: EntityTypeBuilder, name: string, sql: string, buildAction:
|
|
1441
|
+
static HasCheckConstraint(entityTypeBuilder: EntityTypeBuilder, name: string, sql: string, buildAction: Action_1<CheckConstraintBuilder>): EntityTypeBuilder;
|
|
1337
1442
|
static HasCheckConstraint(entityTypeBuilder: EntityTypeBuilder, name: string, sql: string): EntityTypeBuilder;
|
|
1338
1443
|
static HasCheckConstraint(entityTypeBuilder: IConventionEntityTypeBuilder, name: string, sql: string, fromDataAnnotation?: boolean): IConventionCheckConstraintBuilder | undefined;
|
|
1339
|
-
static HasCheckConstraint(ownedNavigationBuilder: OwnedNavigationBuilder, name: string, sql: string, buildAction:
|
|
1444
|
+
static HasCheckConstraint(ownedNavigationBuilder: OwnedNavigationBuilder, name: string, sql: string, buildAction: Action_1<CheckConstraintBuilder>): OwnedNavigationBuilder;
|
|
1340
1445
|
static HasCheckConstraint(ownedNavigationBuilder: OwnedNavigationBuilder, name: string, sql: string): OwnedNavigationBuilder;
|
|
1341
|
-
static HasCheckConstraint<TOwnerEntity, TDependentEntity>(ownedNavigationBuilder: OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, name: string, sql: string, buildAction:
|
|
1446
|
+
static HasCheckConstraint<TOwnerEntity, TDependentEntity>(ownedNavigationBuilder: OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, name: string, sql: string, buildAction: Action_1<CheckConstraintBuilder>): OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>;
|
|
1342
1447
|
static HasCheckConstraint<TOwnerEntity, TDependentEntity>(ownedNavigationBuilder: OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, name: string, sql: string): OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>;
|
|
1343
1448
|
static HasComment<TEntity>(entityTypeBuilder: EntityTypeBuilder_1<TEntity>, comment: string): EntityTypeBuilder_1<TEntity>;
|
|
1344
1449
|
static HasComment(entityTypeBuilder: EntityTypeBuilder, comment: string): EntityTypeBuilder;
|
|
1345
1450
|
static HasComment(entityTypeBuilder: IConventionEntityTypeBuilder, comment: string, fromDataAnnotation?: boolean): IConventionEntityTypeBuilder | undefined;
|
|
1346
1451
|
static HasJsonPropertyName(entityTypeBuilder: IConventionEntityTypeBuilder, name: string, fromDataAnnotation?: boolean): IConventionEntityTypeBuilder | undefined;
|
|
1347
|
-
static InsertUsingStoredProcedure<TEntity>(entityTypeBuilder: EntityTypeBuilder_1<TEntity>, buildAction:
|
|
1348
|
-
static InsertUsingStoredProcedure<TEntity>(entityTypeBuilder: EntityTypeBuilder_1<TEntity>, name: string, buildAction:
|
|
1349
|
-
static InsertUsingStoredProcedure<TEntity>(entityTypeBuilder: EntityTypeBuilder_1<TEntity>, name: string, schema: string, buildAction:
|
|
1350
|
-
static InsertUsingStoredProcedure(entityTypeBuilder: EntityTypeBuilder, buildAction:
|
|
1351
|
-
static InsertUsingStoredProcedure(entityTypeBuilder: EntityTypeBuilder, name: string, buildAction:
|
|
1352
|
-
static InsertUsingStoredProcedure(entityTypeBuilder: EntityTypeBuilder, name: string, schema: string, buildAction:
|
|
1452
|
+
static InsertUsingStoredProcedure<TEntity>(entityTypeBuilder: EntityTypeBuilder_1<TEntity>, buildAction: Action_1<StoredProcedureBuilder_1<TEntity>>): EntityTypeBuilder_1<TEntity>;
|
|
1453
|
+
static InsertUsingStoredProcedure<TEntity>(entityTypeBuilder: EntityTypeBuilder_1<TEntity>, name: string, buildAction: Action_1<StoredProcedureBuilder_1<TEntity>>): EntityTypeBuilder_1<TEntity>;
|
|
1454
|
+
static InsertUsingStoredProcedure<TEntity>(entityTypeBuilder: EntityTypeBuilder_1<TEntity>, name: string, schema: string, buildAction: Action_1<StoredProcedureBuilder_1<TEntity>>): EntityTypeBuilder_1<TEntity>;
|
|
1455
|
+
static InsertUsingStoredProcedure(entityTypeBuilder: EntityTypeBuilder, buildAction: Action_1<StoredProcedureBuilder>): EntityTypeBuilder;
|
|
1456
|
+
static InsertUsingStoredProcedure(entityTypeBuilder: EntityTypeBuilder, name: string, buildAction: Action_1<StoredProcedureBuilder>): EntityTypeBuilder;
|
|
1457
|
+
static InsertUsingStoredProcedure(entityTypeBuilder: EntityTypeBuilder, name: string, schema: string, buildAction: Action_1<StoredProcedureBuilder>): EntityTypeBuilder;
|
|
1353
1458
|
static InsertUsingStoredProcedure(entityTypeBuilder: IConventionEntityTypeBuilder, fromDataAnnotation?: boolean): IConventionStoredProcedureBuilder | undefined;
|
|
1354
|
-
static InsertUsingStoredProcedure(ownedNavigationBuilder: OwnedNavigationBuilder, buildAction:
|
|
1355
|
-
static InsertUsingStoredProcedure(ownedNavigationBuilder: OwnedNavigationBuilder, name: string, buildAction:
|
|
1356
|
-
static InsertUsingStoredProcedure(ownedNavigationBuilder: OwnedNavigationBuilder, name: string, schema: string, buildAction:
|
|
1357
|
-
static InsertUsingStoredProcedure<TOwnerEntity, TDependentEntity>(ownedNavigationBuilder: OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, buildAction:
|
|
1358
|
-
static InsertUsingStoredProcedure<TOwnerEntity, TDependentEntity>(ownedNavigationBuilder: OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, name: string, buildAction:
|
|
1359
|
-
static InsertUsingStoredProcedure<TOwnerEntity, TDependentEntity>(ownedNavigationBuilder: OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, name: string, schema: string, buildAction:
|
|
1360
|
-
static SplitToTable<TEntity>(entityTypeBuilder: EntityTypeBuilder_1<TEntity>, name: string, buildAction:
|
|
1361
|
-
static SplitToTable<TEntity>(entityTypeBuilder: EntityTypeBuilder_1<TEntity>, name: string, schema: string, buildAction:
|
|
1362
|
-
static SplitToTable(entityTypeBuilder: EntityTypeBuilder, name: string, buildAction:
|
|
1363
|
-
static SplitToTable(entityTypeBuilder: EntityTypeBuilder, name: string, schema: string, buildAction:
|
|
1364
|
-
static SplitToTable(ownedNavigationBuilder: OwnedNavigationBuilder, name: string, buildAction:
|
|
1365
|
-
static SplitToTable(ownedNavigationBuilder: OwnedNavigationBuilder, name: string, schema: string, buildAction:
|
|
1366
|
-
static SplitToTable<TOwnerEntity, TDependentEntity>(ownedNavigationBuilder: OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, name: string, buildAction:
|
|
1367
|
-
static SplitToTable<TOwnerEntity, TDependentEntity>(ownedNavigationBuilder: OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, name: string, schema: string, buildAction:
|
|
1368
|
-
static SplitToView<TEntity>(entityTypeBuilder: EntityTypeBuilder_1<TEntity>, name: string, buildAction:
|
|
1369
|
-
static SplitToView<TEntity>(entityTypeBuilder: EntityTypeBuilder_1<TEntity>, name: string, schema: string, buildAction:
|
|
1370
|
-
static SplitToView(entityTypeBuilder: EntityTypeBuilder, name: string, buildAction:
|
|
1371
|
-
static SplitToView(entityTypeBuilder: EntityTypeBuilder, name: string, schema: string, buildAction:
|
|
1372
|
-
static SplitToView(ownedNavigationBuilder: OwnedNavigationBuilder, name: string, buildAction:
|
|
1373
|
-
static SplitToView(ownedNavigationBuilder: OwnedNavigationBuilder, name: string, schema: string, buildAction:
|
|
1374
|
-
static SplitToView<TOwnerEntity, TDependentEntity>(ownedNavigationBuilder: OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, name: string, buildAction:
|
|
1375
|
-
static SplitToView<TOwnerEntity, TDependentEntity>(ownedNavigationBuilder: OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, name: string, schema: string, buildAction:
|
|
1376
|
-
static ToFunction<TEntity>(entityTypeBuilder: EntityTypeBuilder_1<TEntity>, function_: MethodInfo, configureFunction:
|
|
1459
|
+
static InsertUsingStoredProcedure(ownedNavigationBuilder: OwnedNavigationBuilder, buildAction: Action_1<OwnedNavigationStoredProcedureBuilder>): OwnedNavigationBuilder;
|
|
1460
|
+
static InsertUsingStoredProcedure(ownedNavigationBuilder: OwnedNavigationBuilder, name: string, buildAction: Action_1<OwnedNavigationStoredProcedureBuilder>): OwnedNavigationBuilder;
|
|
1461
|
+
static InsertUsingStoredProcedure(ownedNavigationBuilder: OwnedNavigationBuilder, name: string, schema: string, buildAction: Action_1<OwnedNavigationStoredProcedureBuilder>): OwnedNavigationBuilder;
|
|
1462
|
+
static InsertUsingStoredProcedure<TOwnerEntity, TDependentEntity>(ownedNavigationBuilder: OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, buildAction: Action_1<OwnedNavigationStoredProcedureBuilder_2<TOwnerEntity, TDependentEntity>>): OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>;
|
|
1463
|
+
static InsertUsingStoredProcedure<TOwnerEntity, TDependentEntity>(ownedNavigationBuilder: OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, name: string, buildAction: Action_1<OwnedNavigationStoredProcedureBuilder_2<TOwnerEntity, TDependentEntity>>): OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>;
|
|
1464
|
+
static InsertUsingStoredProcedure<TOwnerEntity, TDependentEntity>(ownedNavigationBuilder: OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, name: string, schema: string, buildAction: Action_1<OwnedNavigationStoredProcedureBuilder_2<TOwnerEntity, TDependentEntity>>): OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>;
|
|
1465
|
+
static SplitToTable<TEntity>(entityTypeBuilder: EntityTypeBuilder_1<TEntity>, name: string, buildAction: Action_1<SplitTableBuilder_1<TEntity>>): EntityTypeBuilder_1<TEntity>;
|
|
1466
|
+
static SplitToTable<TEntity>(entityTypeBuilder: EntityTypeBuilder_1<TEntity>, name: string, schema: string, buildAction: Action_1<SplitTableBuilder_1<TEntity>>): EntityTypeBuilder_1<TEntity>;
|
|
1467
|
+
static SplitToTable(entityTypeBuilder: EntityTypeBuilder, name: string, buildAction: Action_1<SplitTableBuilder>): EntityTypeBuilder;
|
|
1468
|
+
static SplitToTable(entityTypeBuilder: EntityTypeBuilder, name: string, schema: string, buildAction: Action_1<SplitTableBuilder>): EntityTypeBuilder;
|
|
1469
|
+
static SplitToTable(ownedNavigationBuilder: OwnedNavigationBuilder, name: string, buildAction: Action_1<OwnedNavigationSplitTableBuilder>): OwnedNavigationBuilder;
|
|
1470
|
+
static SplitToTable(ownedNavigationBuilder: OwnedNavigationBuilder, name: string, schema: string, buildAction: Action_1<OwnedNavigationSplitTableBuilder>): OwnedNavigationBuilder;
|
|
1471
|
+
static SplitToTable<TOwnerEntity, TDependentEntity>(ownedNavigationBuilder: OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, name: string, buildAction: Action_1<OwnedNavigationSplitTableBuilder_2<TOwnerEntity, TDependentEntity>>): OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>;
|
|
1472
|
+
static SplitToTable<TOwnerEntity, TDependentEntity>(ownedNavigationBuilder: OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, name: string, schema: string, buildAction: Action_1<OwnedNavigationSplitTableBuilder_2<TOwnerEntity, TDependentEntity>>): OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>;
|
|
1473
|
+
static SplitToView<TEntity>(entityTypeBuilder: EntityTypeBuilder_1<TEntity>, name: string, buildAction: Action_1<SplitViewBuilder_1<TEntity>>): EntityTypeBuilder_1<TEntity>;
|
|
1474
|
+
static SplitToView<TEntity>(entityTypeBuilder: EntityTypeBuilder_1<TEntity>, name: string, schema: string, buildAction: Action_1<SplitViewBuilder_1<TEntity>>): EntityTypeBuilder_1<TEntity>;
|
|
1475
|
+
static SplitToView(entityTypeBuilder: EntityTypeBuilder, name: string, buildAction: Action_1<SplitViewBuilder>): EntityTypeBuilder;
|
|
1476
|
+
static SplitToView(entityTypeBuilder: EntityTypeBuilder, name: string, schema: string, buildAction: Action_1<SplitViewBuilder>): EntityTypeBuilder;
|
|
1477
|
+
static SplitToView(ownedNavigationBuilder: OwnedNavigationBuilder, name: string, buildAction: Action_1<OwnedNavigationSplitViewBuilder>): OwnedNavigationBuilder;
|
|
1478
|
+
static SplitToView(ownedNavigationBuilder: OwnedNavigationBuilder, name: string, schema: string, buildAction: Action_1<OwnedNavigationSplitViewBuilder>): OwnedNavigationBuilder;
|
|
1479
|
+
static SplitToView<TOwnerEntity, TDependentEntity>(ownedNavigationBuilder: OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, name: string, buildAction: Action_1<OwnedNavigationSplitViewBuilder_2<TOwnerEntity, TDependentEntity>>): OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>;
|
|
1480
|
+
static SplitToView<TOwnerEntity, TDependentEntity>(ownedNavigationBuilder: OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, name: string, schema: string, buildAction: Action_1<OwnedNavigationSplitViewBuilder_2<TOwnerEntity, TDependentEntity>>): OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>;
|
|
1481
|
+
static ToFunction<TEntity>(entityTypeBuilder: EntityTypeBuilder_1<TEntity>, function_: MethodInfo, configureFunction: Action_1<TableValuedFunctionBuilder_1<TEntity>>): EntityTypeBuilder_1<TEntity>;
|
|
1377
1482
|
static ToFunction<TEntity>(entityTypeBuilder: EntityTypeBuilder_1<TEntity>, function_: MethodInfo): EntityTypeBuilder_1<TEntity>;
|
|
1378
|
-
static ToFunction<TEntity>(entityTypeBuilder: EntityTypeBuilder_1<TEntity>, name: string, configureFunction:
|
|
1483
|
+
static ToFunction<TEntity>(entityTypeBuilder: EntityTypeBuilder_1<TEntity>, name: string, configureFunction: Action_1<TableValuedFunctionBuilder_1<TEntity>>): EntityTypeBuilder_1<TEntity>;
|
|
1379
1484
|
static ToFunction<TEntity>(entityTypeBuilder: EntityTypeBuilder_1<TEntity>, name: string): EntityTypeBuilder_1<TEntity>;
|
|
1380
|
-
static ToFunction(entityTypeBuilder: EntityTypeBuilder, function_: MethodInfo, configureFunction:
|
|
1485
|
+
static ToFunction(entityTypeBuilder: EntityTypeBuilder, function_: MethodInfo, configureFunction: Action_1<TableValuedFunctionBuilder>): EntityTypeBuilder;
|
|
1381
1486
|
static ToFunction(entityTypeBuilder: EntityTypeBuilder, function_: MethodInfo): EntityTypeBuilder;
|
|
1382
|
-
static ToFunction(entityTypeBuilder: EntityTypeBuilder, name: string, configureFunction:
|
|
1487
|
+
static ToFunction(entityTypeBuilder: EntityTypeBuilder, name: string, configureFunction: Action_1<TableValuedFunctionBuilder>): EntityTypeBuilder;
|
|
1383
1488
|
static ToFunction(entityTypeBuilder: EntityTypeBuilder, name: string): EntityTypeBuilder;
|
|
1384
1489
|
static ToFunction(entityTypeBuilder: IConventionEntityTypeBuilder, function_: MethodInfo, fromDataAnnotation?: boolean): IConventionEntityTypeBuilder | undefined;
|
|
1385
1490
|
static ToFunction(entityTypeBuilder: IConventionEntityTypeBuilder, name: string, fromDataAnnotation?: boolean): IConventionEntityTypeBuilder | undefined;
|
|
1386
|
-
static ToFunction(ownedNavigationBuilder: OwnedNavigationBuilder, function_: MethodInfo, configureFunction:
|
|
1491
|
+
static ToFunction(ownedNavigationBuilder: OwnedNavigationBuilder, function_: MethodInfo, configureFunction: Action_1<OwnedNavigationTableValuedFunctionBuilder>): OwnedNavigationBuilder;
|
|
1387
1492
|
static ToFunction(ownedNavigationBuilder: OwnedNavigationBuilder, function_: MethodInfo): OwnedNavigationBuilder;
|
|
1388
|
-
static ToFunction(ownedNavigationBuilder: OwnedNavigationBuilder, name: string, configureFunction:
|
|
1493
|
+
static ToFunction(ownedNavigationBuilder: OwnedNavigationBuilder, name: string, configureFunction: Action_1<OwnedNavigationTableValuedFunctionBuilder>): OwnedNavigationBuilder;
|
|
1389
1494
|
static ToFunction(ownedNavigationBuilder: OwnedNavigationBuilder, name: string): OwnedNavigationBuilder;
|
|
1390
|
-
static ToFunction<TOwnerEntity, TDependentEntity>(ownedNavigationBuilder: OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, function_: MethodInfo, configureFunction:
|
|
1495
|
+
static ToFunction<TOwnerEntity, TDependentEntity>(ownedNavigationBuilder: OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, function_: MethodInfo, configureFunction: Action_1<OwnedNavigationTableValuedFunctionBuilder_2<TOwnerEntity, TDependentEntity>>): OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>;
|
|
1391
1496
|
static ToFunction<TOwnerEntity, TDependentEntity>(ownedNavigationBuilder: OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, function_: MethodInfo): OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>;
|
|
1392
|
-
static ToFunction<TOwnerEntity, TDependentEntity>(ownedNavigationBuilder: OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, name: string, configureFunction:
|
|
1497
|
+
static ToFunction<TOwnerEntity, TDependentEntity>(ownedNavigationBuilder: OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, name: string, configureFunction: Action_1<OwnedNavigationTableValuedFunctionBuilder_2<TOwnerEntity, TDependentEntity>>): OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>;
|
|
1393
1498
|
static ToFunction<TOwnerEntity, TDependentEntity>(ownedNavigationBuilder: OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, name: string): OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>;
|
|
1394
1499
|
static ToSchema(entityTypeBuilder: IConventionEntityTypeBuilder, schema: string, fromDataAnnotation?: boolean): IConventionEntityTypeBuilder | undefined;
|
|
1395
1500
|
static ToSqlQuery<TEntity>(entityTypeBuilder: EntityTypeBuilder_1<TEntity>, query: string): EntityTypeBuilder_1<TEntity>;
|
|
1396
1501
|
static ToSqlQuery(entityTypeBuilder: EntityTypeBuilder, query: string): EntityTypeBuilder;
|
|
1397
1502
|
static ToSqlQuery(entityTypeBuilder: IConventionEntityTypeBuilder, name: string, fromDataAnnotation?: boolean): IConventionEntityTypeBuilder | undefined;
|
|
1398
|
-
static ToTable<TEntity>(entityTypeBuilder: EntityTypeBuilder_1<TEntity>, buildAction:
|
|
1399
|
-
static ToTable<TEntity>(entityTypeBuilder: EntityTypeBuilder_1<TEntity>, name: string, buildAction:
|
|
1400
|
-
static ToTable<TEntity>(entityTypeBuilder: EntityTypeBuilder_1<TEntity>, name: string, schema: string, buildAction:
|
|
1503
|
+
static ToTable<TEntity>(entityTypeBuilder: EntityTypeBuilder_1<TEntity>, buildAction: Action_1<TableBuilder_1<TEntity>>): EntityTypeBuilder_1<TEntity>;
|
|
1504
|
+
static ToTable<TEntity>(entityTypeBuilder: EntityTypeBuilder_1<TEntity>, name: string, buildAction: Action_1<TableBuilder_1<TEntity>>): EntityTypeBuilder_1<TEntity>;
|
|
1505
|
+
static ToTable<TEntity>(entityTypeBuilder: EntityTypeBuilder_1<TEntity>, name: string, schema: string, buildAction: Action_1<TableBuilder_1<TEntity>>): EntityTypeBuilder_1<TEntity>;
|
|
1401
1506
|
static ToTable<TEntity>(entityTypeBuilder: EntityTypeBuilder_1<TEntity>, name: string, schema: string): EntityTypeBuilder_1<TEntity>;
|
|
1402
1507
|
static ToTable<TEntity>(entityTypeBuilder: EntityTypeBuilder_1<TEntity>, name: string): EntityTypeBuilder_1<TEntity>;
|
|
1403
|
-
static ToTable(entityTypeBuilder: EntityTypeBuilder, buildAction:
|
|
1404
|
-
static ToTable(entityTypeBuilder: EntityTypeBuilder, name: string, buildAction:
|
|
1405
|
-
static ToTable(entityTypeBuilder: EntityTypeBuilder, name: string, schema: string, buildAction:
|
|
1508
|
+
static ToTable(entityTypeBuilder: EntityTypeBuilder, buildAction: Action_1<TableBuilder>): EntityTypeBuilder;
|
|
1509
|
+
static ToTable(entityTypeBuilder: EntityTypeBuilder, name: string, buildAction: Action_1<TableBuilder>): EntityTypeBuilder;
|
|
1510
|
+
static ToTable(entityTypeBuilder: EntityTypeBuilder, name: string, schema: string, buildAction: Action_1<TableBuilder>): EntityTypeBuilder;
|
|
1406
1511
|
static ToTable(entityTypeBuilder: EntityTypeBuilder, name: string, schema: string): EntityTypeBuilder;
|
|
1407
1512
|
static ToTable(entityTypeBuilder: EntityTypeBuilder, name: string): EntityTypeBuilder;
|
|
1408
1513
|
static ToTable(entityTypeBuilder: IConventionEntityTypeBuilder, name: string, fromDataAnnotation?: boolean): IConventionEntityTypeBuilder | undefined;
|
|
1409
1514
|
static ToTable(entityTypeBuilder: IConventionEntityTypeBuilder, name: string, schema: string, fromDataAnnotation?: boolean): IConventionEntityTypeBuilder | undefined;
|
|
1410
|
-
static ToTable(ownedNavigationBuilder: OwnedNavigationBuilder, buildAction:
|
|
1411
|
-
static ToTable(ownedNavigationBuilder: OwnedNavigationBuilder, name: string, buildAction:
|
|
1412
|
-
static ToTable(ownedNavigationBuilder: OwnedNavigationBuilder, name: string, schema: string, buildAction:
|
|
1515
|
+
static ToTable(ownedNavigationBuilder: OwnedNavigationBuilder, buildAction: Action_1<OwnedNavigationTableBuilder>): OwnedNavigationBuilder;
|
|
1516
|
+
static ToTable(ownedNavigationBuilder: OwnedNavigationBuilder, name: string, buildAction: Action_1<OwnedNavigationTableBuilder>): OwnedNavigationBuilder;
|
|
1517
|
+
static ToTable(ownedNavigationBuilder: OwnedNavigationBuilder, name: string, schema: string, buildAction: Action_1<OwnedNavigationTableBuilder>): OwnedNavigationBuilder;
|
|
1413
1518
|
static ToTable(ownedNavigationBuilder: OwnedNavigationBuilder, name: string, schema: string): OwnedNavigationBuilder;
|
|
1414
1519
|
static ToTable(ownedNavigationBuilder: OwnedNavigationBuilder, name: string): OwnedNavigationBuilder;
|
|
1415
|
-
static ToTable<TOwnerEntity, TDependentEntity>(ownedNavigationBuilder: OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, buildAction:
|
|
1416
|
-
static ToTable<TOwnerEntity, TDependentEntity>(ownedNavigationBuilder: OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, name: string, buildAction:
|
|
1417
|
-
static ToTable<TOwnerEntity, TDependentEntity>(ownedNavigationBuilder: OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, name: string, schema: string, buildAction:
|
|
1520
|
+
static ToTable<TOwnerEntity, TDependentEntity>(ownedNavigationBuilder: OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, buildAction: Action_1<OwnedNavigationTableBuilder_2<TOwnerEntity, TDependentEntity>>): OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>;
|
|
1521
|
+
static ToTable<TOwnerEntity, TDependentEntity>(ownedNavigationBuilder: OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, name: string, buildAction: Action_1<OwnedNavigationTableBuilder_2<TOwnerEntity, TDependentEntity>>): OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>;
|
|
1522
|
+
static ToTable<TOwnerEntity, TDependentEntity>(ownedNavigationBuilder: OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, name: string, schema: string, buildAction: Action_1<OwnedNavigationTableBuilder_2<TOwnerEntity, TDependentEntity>>): OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>;
|
|
1418
1523
|
static ToTable<TOwnerEntity, TDependentEntity>(ownedNavigationBuilder: OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, name: string, schema: string): OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>;
|
|
1419
1524
|
static ToTable<TOwnerEntity, TDependentEntity>(ownedNavigationBuilder: OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, name: string): OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>;
|
|
1420
|
-
static ToView<TEntity>(entityTypeBuilder: EntityTypeBuilder_1<TEntity>, name: string, buildAction:
|
|
1421
|
-
static ToView<TEntity>(entityTypeBuilder: EntityTypeBuilder_1<TEntity>, name: string, schema: string, buildAction:
|
|
1525
|
+
static ToView<TEntity>(entityTypeBuilder: EntityTypeBuilder_1<TEntity>, name: string, buildAction: Action_1<ViewBuilder_1<TEntity>>): EntityTypeBuilder_1<TEntity>;
|
|
1526
|
+
static ToView<TEntity>(entityTypeBuilder: EntityTypeBuilder_1<TEntity>, name: string, schema: string, buildAction: Action_1<ViewBuilder_1<TEntity>>): EntityTypeBuilder_1<TEntity>;
|
|
1422
1527
|
static ToView<TEntity>(entityTypeBuilder: EntityTypeBuilder_1<TEntity>, name: string, schema: string): EntityTypeBuilder_1<TEntity>;
|
|
1423
1528
|
static ToView<TEntity>(entityTypeBuilder: EntityTypeBuilder_1<TEntity>, name: string): EntityTypeBuilder_1<TEntity>;
|
|
1424
|
-
static ToView(entityTypeBuilder: EntityTypeBuilder, name: string, buildAction:
|
|
1425
|
-
static ToView(entityTypeBuilder: EntityTypeBuilder, name: string, schema: string, buildAction:
|
|
1529
|
+
static ToView(entityTypeBuilder: EntityTypeBuilder, name: string, buildAction: Action_1<ViewBuilder>): EntityTypeBuilder;
|
|
1530
|
+
static ToView(entityTypeBuilder: EntityTypeBuilder, name: string, schema: string, buildAction: Action_1<ViewBuilder>): EntityTypeBuilder;
|
|
1426
1531
|
static ToView(entityTypeBuilder: EntityTypeBuilder, name: string, schema: string): EntityTypeBuilder;
|
|
1427
1532
|
static ToView(entityTypeBuilder: EntityTypeBuilder, name: string): EntityTypeBuilder;
|
|
1428
1533
|
static ToView(entityTypeBuilder: IConventionEntityTypeBuilder, name: string, fromDataAnnotation?: boolean): IConventionEntityTypeBuilder | undefined;
|
|
1429
1534
|
static ToView(entityTypeBuilder: IConventionEntityTypeBuilder, name: string, schema: string, fromDataAnnotation?: boolean): IConventionEntityTypeBuilder | undefined;
|
|
1430
|
-
static ToView(ownedNavigationBuilder: OwnedNavigationBuilder, name: string, buildAction:
|
|
1431
|
-
static ToView(ownedNavigationBuilder: OwnedNavigationBuilder, name: string, schema: string, buildAction:
|
|
1535
|
+
static ToView(ownedNavigationBuilder: OwnedNavigationBuilder, name: string, buildAction: Action_1<OwnedNavigationViewBuilder>): OwnedNavigationBuilder;
|
|
1536
|
+
static ToView(ownedNavigationBuilder: OwnedNavigationBuilder, name: string, schema: string, buildAction: Action_1<OwnedNavigationViewBuilder>): OwnedNavigationBuilder;
|
|
1432
1537
|
static ToView(ownedNavigationBuilder: OwnedNavigationBuilder, name: string, schema: string): OwnedNavigationBuilder;
|
|
1433
1538
|
static ToView(ownedNavigationBuilder: OwnedNavigationBuilder, name: string): OwnedNavigationBuilder;
|
|
1434
|
-
static ToView<TOwnerEntity, TDependentEntity>(ownedNavigationBuilder: OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, name: string, buildAction:
|
|
1435
|
-
static ToView<TOwnerEntity, TDependentEntity>(ownedNavigationBuilder: OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, name: string, schema: string, buildAction:
|
|
1539
|
+
static ToView<TOwnerEntity, TDependentEntity>(ownedNavigationBuilder: OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, name: string, buildAction: Action_1<OwnedNavigationViewBuilder_2<TOwnerEntity, TDependentEntity>>): OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>;
|
|
1540
|
+
static ToView<TOwnerEntity, TDependentEntity>(ownedNavigationBuilder: OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, name: string, schema: string, buildAction: Action_1<OwnedNavigationViewBuilder_2<TOwnerEntity, TDependentEntity>>): OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>;
|
|
1436
1541
|
static ToView<TOwnerEntity, TDependentEntity>(ownedNavigationBuilder: OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, name: string, schema: string): OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>;
|
|
1437
1542
|
static ToView<TOwnerEntity, TDependentEntity>(ownedNavigationBuilder: OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, name: string): OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>;
|
|
1438
1543
|
static ToViewSchema(entityTypeBuilder: IConventionEntityTypeBuilder, schema: string, fromDataAnnotation?: boolean): IConventionEntityTypeBuilder | undefined;
|
|
1439
|
-
static UpdateUsingStoredProcedure<TEntity>(entityTypeBuilder: EntityTypeBuilder_1<TEntity>, buildAction:
|
|
1440
|
-
static UpdateUsingStoredProcedure<TEntity>(entityTypeBuilder: EntityTypeBuilder_1<TEntity>, name: string, buildAction:
|
|
1441
|
-
static UpdateUsingStoredProcedure<TEntity>(entityTypeBuilder: EntityTypeBuilder_1<TEntity>, name: string, schema: string, buildAction:
|
|
1442
|
-
static UpdateUsingStoredProcedure(entityTypeBuilder: EntityTypeBuilder, buildAction:
|
|
1443
|
-
static UpdateUsingStoredProcedure(entityTypeBuilder: EntityTypeBuilder, name: string, buildAction:
|
|
1444
|
-
static UpdateUsingStoredProcedure(entityTypeBuilder: EntityTypeBuilder, name: string, schema: string, buildAction:
|
|
1544
|
+
static UpdateUsingStoredProcedure<TEntity>(entityTypeBuilder: EntityTypeBuilder_1<TEntity>, buildAction: Action_1<StoredProcedureBuilder_1<TEntity>>): EntityTypeBuilder_1<TEntity>;
|
|
1545
|
+
static UpdateUsingStoredProcedure<TEntity>(entityTypeBuilder: EntityTypeBuilder_1<TEntity>, name: string, buildAction: Action_1<StoredProcedureBuilder_1<TEntity>>): EntityTypeBuilder_1<TEntity>;
|
|
1546
|
+
static UpdateUsingStoredProcedure<TEntity>(entityTypeBuilder: EntityTypeBuilder_1<TEntity>, name: string, schema: string, buildAction: Action_1<StoredProcedureBuilder_1<TEntity>>): EntityTypeBuilder_1<TEntity>;
|
|
1547
|
+
static UpdateUsingStoredProcedure(entityTypeBuilder: EntityTypeBuilder, buildAction: Action_1<StoredProcedureBuilder>): EntityTypeBuilder;
|
|
1548
|
+
static UpdateUsingStoredProcedure(entityTypeBuilder: EntityTypeBuilder, name: string, buildAction: Action_1<StoredProcedureBuilder>): EntityTypeBuilder;
|
|
1549
|
+
static UpdateUsingStoredProcedure(entityTypeBuilder: EntityTypeBuilder, name: string, schema: string, buildAction: Action_1<StoredProcedureBuilder>): EntityTypeBuilder;
|
|
1445
1550
|
static UpdateUsingStoredProcedure(entityTypeBuilder: IConventionEntityTypeBuilder, fromDataAnnotation?: boolean): IConventionStoredProcedureBuilder | undefined;
|
|
1446
|
-
static UpdateUsingStoredProcedure(ownedNavigationBuilder: OwnedNavigationBuilder, buildAction:
|
|
1447
|
-
static UpdateUsingStoredProcedure(ownedNavigationBuilder: OwnedNavigationBuilder, name: string, buildAction:
|
|
1448
|
-
static UpdateUsingStoredProcedure(ownedNavigationBuilder: OwnedNavigationBuilder, name: string, schema: string, buildAction:
|
|
1449
|
-
static UpdateUsingStoredProcedure<TOwnerEntity, TDependentEntity>(ownedNavigationBuilder: OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, buildAction:
|
|
1450
|
-
static UpdateUsingStoredProcedure<TOwnerEntity, TDependentEntity>(ownedNavigationBuilder: OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, name: string, buildAction:
|
|
1451
|
-
static UpdateUsingStoredProcedure<TOwnerEntity, TDependentEntity>(ownedNavigationBuilder: OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, name: string, schema: string, buildAction:
|
|
1551
|
+
static UpdateUsingStoredProcedure(ownedNavigationBuilder: OwnedNavigationBuilder, buildAction: Action_1<OwnedNavigationStoredProcedureBuilder>): OwnedNavigationBuilder;
|
|
1552
|
+
static UpdateUsingStoredProcedure(ownedNavigationBuilder: OwnedNavigationBuilder, name: string, buildAction: Action_1<OwnedNavigationStoredProcedureBuilder>): OwnedNavigationBuilder;
|
|
1553
|
+
static UpdateUsingStoredProcedure(ownedNavigationBuilder: OwnedNavigationBuilder, name: string, schema: string, buildAction: Action_1<OwnedNavigationStoredProcedureBuilder>): OwnedNavigationBuilder;
|
|
1554
|
+
static UpdateUsingStoredProcedure<TOwnerEntity, TDependentEntity>(ownedNavigationBuilder: OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, buildAction: Action_1<OwnedNavigationStoredProcedureBuilder_2<TOwnerEntity, TDependentEntity>>): OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>;
|
|
1555
|
+
static UpdateUsingStoredProcedure<TOwnerEntity, TDependentEntity>(ownedNavigationBuilder: OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, name: string, buildAction: Action_1<OwnedNavigationStoredProcedureBuilder_2<TOwnerEntity, TDependentEntity>>): OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>;
|
|
1556
|
+
static UpdateUsingStoredProcedure<TOwnerEntity, TDependentEntity>(ownedNavigationBuilder: OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>, name: string, schema: string, buildAction: Action_1<OwnedNavigationStoredProcedureBuilder_2<TOwnerEntity, TDependentEntity>>): OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>;
|
|
1452
1557
|
static UseMappingStrategy(entityTypeBuilder: IConventionEntityTypeBuilder, strategy: string, fromDataAnnotation?: boolean): IConventionEntityTypeBuilder | undefined;
|
|
1453
1558
|
static UseTpcMappingStrategy<TEntity>(entityTypeBuilder: EntityTypeBuilder_1<TEntity>): EntityTypeBuilder_1<TEntity>;
|
|
1454
1559
|
static UseTpcMappingStrategy(entityTypeBuilder: EntityTypeBuilder): EntityTypeBuilder;
|
|
@@ -1473,22 +1578,22 @@ export abstract class RelationalEntityTypeExtensions$instance {
|
|
|
1473
1578
|
static FindMappingFragment(entityType: IEntityType, storeObject: StoreObjectIdentifier): IEntityTypeMappingFragment | undefined;
|
|
1474
1579
|
static FindMappingFragment(entityType: IMutableEntityType, storeObject: StoreObjectIdentifier): IMutableEntityTypeMappingFragment | undefined;
|
|
1475
1580
|
static FindMappingFragment(entityType: IReadOnlyEntityType, storeObject: StoreObjectIdentifier): IReadOnlyEntityTypeMappingFragment | undefined;
|
|
1476
|
-
static FindRowInternalForeignKeys(entityType: IConventionEntityType, storeObject: StoreObjectIdentifier):
|
|
1477
|
-
static FindRowInternalForeignKeys(entityType: IEntityType, storeObject: StoreObjectIdentifier):
|
|
1478
|
-
static FindRowInternalForeignKeys(entityType: IMutableEntityType, storeObject: StoreObjectIdentifier):
|
|
1479
|
-
static FindRowInternalForeignKeys(entityType: IReadOnlyEntityType, storeObject: StoreObjectIdentifier):
|
|
1480
|
-
static GetCheckConstraints(entityType: IConventionEntityType):
|
|
1481
|
-
static GetCheckConstraints(entityType: IEntityType):
|
|
1482
|
-
static GetCheckConstraints(entityType: IMutableEntityType):
|
|
1483
|
-
static GetCheckConstraints(entityType: IReadOnlyEntityType):
|
|
1581
|
+
static FindRowInternalForeignKeys(entityType: IConventionEntityType, storeObject: StoreObjectIdentifier): IEnumerable_1<IConventionForeignKey>;
|
|
1582
|
+
static FindRowInternalForeignKeys(entityType: IEntityType, storeObject: StoreObjectIdentifier): IEnumerable_1<IForeignKey>;
|
|
1583
|
+
static FindRowInternalForeignKeys(entityType: IMutableEntityType, storeObject: StoreObjectIdentifier): IEnumerable_1<IMutableForeignKey>;
|
|
1584
|
+
static FindRowInternalForeignKeys(entityType: IReadOnlyEntityType, storeObject: StoreObjectIdentifier): IEnumerable_1<IReadOnlyForeignKey>;
|
|
1585
|
+
static GetCheckConstraints(entityType: IConventionEntityType): IEnumerable_1<IConventionCheckConstraint>;
|
|
1586
|
+
static GetCheckConstraints(entityType: IEntityType): IEnumerable_1<ICheckConstraint>;
|
|
1587
|
+
static GetCheckConstraints(entityType: IMutableEntityType): IEnumerable_1<IMutableCheckConstraint>;
|
|
1588
|
+
static GetCheckConstraints(entityType: IReadOnlyEntityType): IEnumerable_1<IReadOnlyCheckConstraint>;
|
|
1484
1589
|
static GetComment(entityType: IReadOnlyEntityType): string | undefined;
|
|
1485
|
-
static GetCommentConfigurationSource(entityType: IConventionEntityType):
|
|
1590
|
+
static GetCommentConfigurationSource(entityType: IConventionEntityType): Nullable_1<ConfigurationSource>;
|
|
1486
1591
|
static GetContainerColumnTypeMapping(entityType: IReadOnlyEntityType): RelationalTypeMapping | undefined;
|
|
1487
|
-
static GetContainerColumnTypeMappingConfigurationSource(entityType: IConventionEntityType):
|
|
1488
|
-
static GetDeclaredCheckConstraints(entityType: IConventionEntityType):
|
|
1489
|
-
static GetDeclaredCheckConstraints(entityType: IEntityType):
|
|
1490
|
-
static GetDeclaredCheckConstraints(entityType: IMutableEntityType):
|
|
1491
|
-
static GetDeclaredCheckConstraints(entityType: IReadOnlyEntityType):
|
|
1592
|
+
static GetContainerColumnTypeMappingConfigurationSource(entityType: IConventionEntityType): Nullable_1<ConfigurationSource>;
|
|
1593
|
+
static GetDeclaredCheckConstraints(entityType: IConventionEntityType): IEnumerable_1<IConventionCheckConstraint>;
|
|
1594
|
+
static GetDeclaredCheckConstraints(entityType: IEntityType): IEnumerable_1<ICheckConstraint>;
|
|
1595
|
+
static GetDeclaredCheckConstraints(entityType: IMutableEntityType): IEnumerable_1<IMutableCheckConstraint>;
|
|
1596
|
+
static GetDeclaredCheckConstraints(entityType: IReadOnlyEntityType): IEnumerable_1<IReadOnlyCheckConstraint>;
|
|
1492
1597
|
static GetDefaultSchema(entityType: IReadOnlyEntityType): string | undefined;
|
|
1493
1598
|
static GetDefaultSqlQueryName(entityType: IReadOnlyEntityType): string;
|
|
1494
1599
|
static GetDefaultTableName(entityType: IReadOnlyEntityType, truncate?: boolean): string | undefined;
|
|
@@ -1498,47 +1603,47 @@ export abstract class RelationalEntityTypeExtensions$instance {
|
|
|
1498
1603
|
static GetDeleteStoredProcedure(entityType: IEntityType): IStoredProcedure | undefined;
|
|
1499
1604
|
static GetDeleteStoredProcedure(entityType: IMutableEntityType): IMutableStoredProcedure | undefined;
|
|
1500
1605
|
static GetDeleteStoredProcedure(entityType: IReadOnlyEntityType): IReadOnlyStoredProcedure | undefined;
|
|
1501
|
-
static GetDeleteStoredProcedureConfigurationSource(entityType: IConventionEntityType):
|
|
1606
|
+
static GetDeleteStoredProcedureConfigurationSource(entityType: IConventionEntityType): Nullable_1<ConfigurationSource>;
|
|
1502
1607
|
static GetFunctionName(entityType: IReadOnlyEntityType): string | undefined;
|
|
1503
|
-
static GetFunctionNameConfigurationSource(entityType: IConventionEntityType):
|
|
1608
|
+
static GetFunctionNameConfigurationSource(entityType: IConventionEntityType): Nullable_1<ConfigurationSource>;
|
|
1504
1609
|
static GetInsertStoredProcedure(entityType: IConventionEntityType): IConventionStoredProcedure | undefined;
|
|
1505
1610
|
static GetInsertStoredProcedure(entityType: IEntityType): IStoredProcedure | undefined;
|
|
1506
1611
|
static GetInsertStoredProcedure(entityType: IMutableEntityType): IMutableStoredProcedure | undefined;
|
|
1507
1612
|
static GetInsertStoredProcedure(entityType: IReadOnlyEntityType): IReadOnlyStoredProcedure | undefined;
|
|
1508
|
-
static GetInsertStoredProcedureConfigurationSource(entityType: IConventionEntityType):
|
|
1509
|
-
static GetIsTableExcludedFromMigrationsConfigurationSource(entityType: IConventionEntityType, storeObject: StoreObjectIdentifier):
|
|
1510
|
-
static GetIsTableExcludedFromMigrationsConfigurationSource(entityType: IConventionEntityType):
|
|
1613
|
+
static GetInsertStoredProcedureConfigurationSource(entityType: IConventionEntityType): Nullable_1<ConfigurationSource>;
|
|
1614
|
+
static GetIsTableExcludedFromMigrationsConfigurationSource(entityType: IConventionEntityType, storeObject: StoreObjectIdentifier): Nullable_1<ConfigurationSource>;
|
|
1615
|
+
static GetIsTableExcludedFromMigrationsConfigurationSource(entityType: IConventionEntityType): Nullable_1<ConfigurationSource>;
|
|
1511
1616
|
static GetJsonPropertyName(entityType: IReadOnlyEntityType): string | undefined;
|
|
1512
|
-
static GetJsonPropertyNameConfigurationSource(entityType: IConventionEntityType):
|
|
1513
|
-
static GetMappingFragments(entityType: IConventionEntityType, storeObjectType: StoreObjectType):
|
|
1514
|
-
static GetMappingFragments(entityType: IConventionEntityType):
|
|
1515
|
-
static GetMappingFragments(entityType: IEntityType, storeObjectType: StoreObjectType):
|
|
1516
|
-
static GetMappingFragments(entityType: IEntityType):
|
|
1517
|
-
static GetMappingFragments(entityType: IMutableEntityType, storeObjectType: StoreObjectType):
|
|
1518
|
-
static GetMappingFragments(entityType: IMutableEntityType):
|
|
1519
|
-
static GetMappingFragments(entityType: IReadOnlyEntityType, storeObjectType: StoreObjectType):
|
|
1520
|
-
static GetMappingFragments(entityType: IReadOnlyEntityType):
|
|
1617
|
+
static GetJsonPropertyNameConfigurationSource(entityType: IConventionEntityType): Nullable_1<ConfigurationSource>;
|
|
1618
|
+
static GetMappingFragments(entityType: IConventionEntityType, storeObjectType: StoreObjectType): IEnumerable_1<IConventionEntityTypeMappingFragment>;
|
|
1619
|
+
static GetMappingFragments(entityType: IConventionEntityType): IEnumerable_1<IConventionEntityTypeMappingFragment>;
|
|
1620
|
+
static GetMappingFragments(entityType: IEntityType, storeObjectType: StoreObjectType): IEnumerable_1<IEntityTypeMappingFragment>;
|
|
1621
|
+
static GetMappingFragments(entityType: IEntityType): IEnumerable_1<IEntityTypeMappingFragment>;
|
|
1622
|
+
static GetMappingFragments(entityType: IMutableEntityType, storeObjectType: StoreObjectType): IEnumerable_1<IMutableEntityTypeMappingFragment>;
|
|
1623
|
+
static GetMappingFragments(entityType: IMutableEntityType): IEnumerable_1<IMutableEntityTypeMappingFragment>;
|
|
1624
|
+
static GetMappingFragments(entityType: IReadOnlyEntityType, storeObjectType: StoreObjectType): IEnumerable_1<IReadOnlyEntityTypeMappingFragment>;
|
|
1625
|
+
static GetMappingFragments(entityType: IReadOnlyEntityType): IEnumerable_1<IReadOnlyEntityTypeMappingFragment>;
|
|
1521
1626
|
static GetMappingStrategy(entityType: IReadOnlyEntityType): string | undefined;
|
|
1522
|
-
static GetMappingStrategyConfigurationSource(entityType: IConventionEntityType):
|
|
1627
|
+
static GetMappingStrategyConfigurationSource(entityType: IConventionEntityType): Nullable_1<ConfigurationSource>;
|
|
1523
1628
|
static GetOrCreateMappingFragment(entityType: IConventionEntityType, storeObject: StoreObjectIdentifier, fromDataAnnotation?: boolean): IConventionEntityTypeMappingFragment;
|
|
1524
1629
|
static GetOrCreateMappingFragment(entityType: IMutableEntityType, storeObject: StoreObjectIdentifier): IMutableEntityTypeMappingFragment;
|
|
1525
1630
|
static GetSchema(entityType: IReadOnlyEntityType): string | undefined;
|
|
1526
|
-
static GetSchemaConfigurationSource(entityType: IConventionEntityType):
|
|
1631
|
+
static GetSchemaConfigurationSource(entityType: IConventionEntityType): Nullable_1<ConfigurationSource>;
|
|
1527
1632
|
static GetSchemaQualifiedTableName(entityType: IReadOnlyEntityType): string | undefined;
|
|
1528
1633
|
static GetSchemaQualifiedViewName(entityType: IReadOnlyEntityType): string | undefined;
|
|
1529
1634
|
static GetSqlQuery(entityType: IReadOnlyEntityType): string | undefined;
|
|
1530
|
-
static GetSqlQueryConfigurationSource(entityType: IConventionEntityType):
|
|
1635
|
+
static GetSqlQueryConfigurationSource(entityType: IConventionEntityType): Nullable_1<ConfigurationSource>;
|
|
1531
1636
|
static GetTableName(entityType: IReadOnlyEntityType): string | undefined;
|
|
1532
|
-
static GetTableNameConfigurationSource(entityType: IConventionEntityType):
|
|
1637
|
+
static GetTableNameConfigurationSource(entityType: IConventionEntityType): Nullable_1<ConfigurationSource>;
|
|
1533
1638
|
static GetUpdateStoredProcedure(entityType: IConventionEntityType): IConventionStoredProcedure | undefined;
|
|
1534
1639
|
static GetUpdateStoredProcedure(entityType: IEntityType): IStoredProcedure | undefined;
|
|
1535
1640
|
static GetUpdateStoredProcedure(entityType: IMutableEntityType): IMutableStoredProcedure | undefined;
|
|
1536
1641
|
static GetUpdateStoredProcedure(entityType: IReadOnlyEntityType): IReadOnlyStoredProcedure | undefined;
|
|
1537
|
-
static GetUpdateStoredProcedureConfigurationSource(entityType: IConventionEntityType):
|
|
1642
|
+
static GetUpdateStoredProcedureConfigurationSource(entityType: IConventionEntityType): Nullable_1<ConfigurationSource>;
|
|
1538
1643
|
static GetViewName(entityType: IReadOnlyEntityType): string | undefined;
|
|
1539
|
-
static GetViewNameConfigurationSource(entityType: IConventionEntityType):
|
|
1644
|
+
static GetViewNameConfigurationSource(entityType: IConventionEntityType): Nullable_1<ConfigurationSource>;
|
|
1540
1645
|
static GetViewSchema(entityType: IReadOnlyEntityType): string | undefined;
|
|
1541
|
-
static GetViewSchemaConfigurationSource(entityType: IConventionEntityType):
|
|
1646
|
+
static GetViewSchemaConfigurationSource(entityType: IConventionEntityType): Nullable_1<ConfigurationSource>;
|
|
1542
1647
|
static IsMappedToJson(entityType: IReadOnlyEntityType): boolean;
|
|
1543
1648
|
static IsTableExcludedFromMigrations(entityType: IReadOnlyEntityType, storeObject: StoreObjectIdentifier): boolean;
|
|
1544
1649
|
static IsTableExcludedFromMigrations(entityType: IReadOnlyEntityType): boolean;
|
|
@@ -1562,10 +1667,10 @@ export abstract class RelationalEntityTypeExtensions$instance {
|
|
|
1562
1667
|
static SetFunctionName(entityType: IMutableEntityType, name: string): void;
|
|
1563
1668
|
static SetInsertStoredProcedure(entityType: IConventionEntityType, fromDataAnnotation?: boolean): IConventionStoredProcedure | undefined;
|
|
1564
1669
|
static SetInsertStoredProcedure(entityType: IMutableEntityType): IMutableStoredProcedure;
|
|
1565
|
-
static SetIsTableExcludedFromMigrations(entityType: IConventionEntityType, excluded:
|
|
1566
|
-
static SetIsTableExcludedFromMigrations(entityType: IConventionEntityType, excluded:
|
|
1567
|
-
static SetIsTableExcludedFromMigrations(entityType: IMutableEntityType, excluded:
|
|
1568
|
-
static SetIsTableExcludedFromMigrations(entityType: IMutableEntityType, excluded:
|
|
1670
|
+
static SetIsTableExcludedFromMigrations(entityType: IConventionEntityType, excluded: Nullable_1<System_Internal.Boolean>, storeObject: StoreObjectIdentifier, fromDataAnnotation?: boolean): Nullable_1<System_Internal.Boolean>;
|
|
1671
|
+
static SetIsTableExcludedFromMigrations(entityType: IConventionEntityType, excluded: Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): Nullable_1<System_Internal.Boolean>;
|
|
1672
|
+
static SetIsTableExcludedFromMigrations(entityType: IMutableEntityType, excluded: Nullable_1<System_Internal.Boolean>, storeObject: StoreObjectIdentifier): void;
|
|
1673
|
+
static SetIsTableExcludedFromMigrations(entityType: IMutableEntityType, excluded: Nullable_1<System_Internal.Boolean>): void;
|
|
1569
1674
|
static SetJsonPropertyName(entityType: IConventionEntityType, name: string, fromDataAnnotation?: boolean): string | undefined;
|
|
1570
1675
|
static SetJsonPropertyName(entityType: IMutableEntityType, name: string): void;
|
|
1571
1676
|
static SetMappingStrategy(entityType: IConventionEntityType, strategy: string, fromDataAnnotation?: boolean): string | undefined;
|
|
@@ -1608,10 +1713,10 @@ export abstract class RelationalForeignKeyExtensions$instance {
|
|
|
1608
1713
|
static FindSharedObjectRootForeignKey(foreignKey: IReadOnlyForeignKey, storeObject: StoreObjectIdentifier): IReadOnlyForeignKey | undefined;
|
|
1609
1714
|
static GetConstraintName(foreignKey: IReadOnlyForeignKey, storeObject: StoreObjectIdentifier, principalStoreObject: StoreObjectIdentifier): string | undefined;
|
|
1610
1715
|
static GetConstraintName(foreignKey: IReadOnlyForeignKey): string | undefined;
|
|
1611
|
-
static GetConstraintNameConfigurationSource(foreignKey: IConventionForeignKey):
|
|
1716
|
+
static GetConstraintNameConfigurationSource(foreignKey: IConventionForeignKey): Nullable_1<ConfigurationSource>;
|
|
1612
1717
|
static GetDefaultName(foreignKey: IReadOnlyForeignKey, storeObject: StoreObjectIdentifier, principalStoreObject: StoreObjectIdentifier): string | undefined;
|
|
1613
1718
|
static GetDefaultName(foreignKey: IReadOnlyForeignKey): string | undefined;
|
|
1614
|
-
static GetMappedConstraints(foreignKey: IForeignKey):
|
|
1719
|
+
static GetMappedConstraints(foreignKey: IForeignKey): IEnumerable_1<IForeignKeyConstraint>;
|
|
1615
1720
|
static IsRowInternal(foreignKey: IReadOnlyForeignKey, storeObject: StoreObjectIdentifier): boolean;
|
|
1616
1721
|
static SetConstraintName(foreignKey: IConventionForeignKey, value: string, fromDataAnnotation?: boolean): string | undefined;
|
|
1617
1722
|
static SetConstraintName(foreignKey: IMutableForeignKey, value: string): void;
|
|
@@ -1642,13 +1747,13 @@ export abstract class RelationalIndexExtensions$instance {
|
|
|
1642
1747
|
static FindSharedObjectRootIndex(index: IReadOnlyIndex, storeObject: StoreObjectIdentifier): IReadOnlyIndex | undefined;
|
|
1643
1748
|
static GetDatabaseName(index: IReadOnlyIndex, storeObject: StoreObjectIdentifier): string | undefined;
|
|
1644
1749
|
static GetDatabaseName(index: IReadOnlyIndex): string | undefined;
|
|
1645
|
-
static GetDatabaseNameConfigurationSource(index: IConventionIndex):
|
|
1750
|
+
static GetDatabaseNameConfigurationSource(index: IConventionIndex): Nullable_1<ConfigurationSource>;
|
|
1646
1751
|
static GetDefaultDatabaseName(index: IReadOnlyIndex, storeObject: StoreObjectIdentifier): string | undefined;
|
|
1647
1752
|
static GetDefaultDatabaseName(index: IReadOnlyIndex): string | undefined;
|
|
1648
1753
|
static GetFilter(index: IReadOnlyIndex, storeObject: StoreObjectIdentifier): string | undefined;
|
|
1649
1754
|
static GetFilter(index: IReadOnlyIndex): string | undefined;
|
|
1650
|
-
static GetFilterConfigurationSource(index: IConventionIndex):
|
|
1651
|
-
static GetMappedTableIndexes(index: IIndex):
|
|
1755
|
+
static GetFilterConfigurationSource(index: IConventionIndex): Nullable_1<ConfigurationSource>;
|
|
1756
|
+
static GetMappedTableIndexes(index: IIndex): IEnumerable_1<ITableIndex>;
|
|
1652
1757
|
static SetDatabaseName(index: IConventionIndex, name: string, fromDataAnnotation?: boolean): string | undefined;
|
|
1653
1758
|
static SetDatabaseName(index: IMutableIndex, name: string): void;
|
|
1654
1759
|
static SetFilter(index: IConventionIndex, value: string, fromDataAnnotation?: boolean): string | undefined;
|
|
@@ -1675,10 +1780,10 @@ export abstract class RelationalKeyExtensions$instance {
|
|
|
1675
1780
|
static FindSharedObjectRootKey(key: IReadOnlyKey, storeObject: StoreObjectIdentifier): IReadOnlyKey | undefined;
|
|
1676
1781
|
static GetDefaultName(key: IReadOnlyKey, storeObject: StoreObjectIdentifier): string | undefined;
|
|
1677
1782
|
static GetDefaultName(key: IReadOnlyKey): string | undefined;
|
|
1678
|
-
static GetMappedConstraints(key: IKey):
|
|
1783
|
+
static GetMappedConstraints(key: IKey): IEnumerable_1<IUniqueConstraint>;
|
|
1679
1784
|
static GetName(key: IReadOnlyKey, storeObject: StoreObjectIdentifier): string | undefined;
|
|
1680
1785
|
static GetName(key: IReadOnlyKey): string | undefined;
|
|
1681
|
-
static GetNameConfigurationSource(key: IConventionKey):
|
|
1786
|
+
static GetNameConfigurationSource(key: IConventionKey): Nullable_1<ConfigurationSource>;
|
|
1682
1787
|
static SetName(key: IConventionKey, name: string, fromDataAnnotation?: boolean): string | undefined;
|
|
1683
1788
|
static SetName(key: IMutableKey, name: string): void;
|
|
1684
1789
|
}
|
|
@@ -1689,21 +1794,21 @@ export type RelationalKeyExtensions = RelationalKeyExtensions$instance;
|
|
|
1689
1794
|
export abstract class RelationalModelBuilderExtensions$instance {
|
|
1690
1795
|
static CanSetCollation(modelBuilder: IConventionModelBuilder, collation: string, fromDataAnnotation?: boolean): boolean;
|
|
1691
1796
|
static CanSetDefaultSchema(modelBuilder: IConventionModelBuilder, schema: string, fromDataAnnotation?: boolean): boolean;
|
|
1692
|
-
static CanSetMaxIdentifierLength(modelBuilder: IConventionModelBuilder, length:
|
|
1797
|
+
static CanSetMaxIdentifierLength(modelBuilder: IConventionModelBuilder, length: Nullable_1<System_Internal.Int32>, fromDataAnnotation?: boolean): boolean;
|
|
1693
1798
|
static HasDbFunction(modelBuilder: IConventionModelBuilder, methodInfo: MethodInfo, fromDataAnnotation?: boolean): IConventionDbFunctionBuilder;
|
|
1694
1799
|
static HasDbFunction(modelBuilder: IConventionModelBuilder, name: string, returnType: Type, fromDataAnnotation?: boolean): IConventionDbFunctionBuilder;
|
|
1695
|
-
static HasDbFunction<TResult>(modelBuilder: ModelBuilder, expression:
|
|
1696
|
-
static HasDbFunction(modelBuilder: ModelBuilder, methodInfo: MethodInfo, builderAction:
|
|
1800
|
+
static HasDbFunction<TResult>(modelBuilder: ModelBuilder, expression: Expression_1<Func_1<TResult>>): DbFunctionBuilder;
|
|
1801
|
+
static HasDbFunction(modelBuilder: ModelBuilder, methodInfo: MethodInfo, builderAction: Action_1<DbFunctionBuilder>): ModelBuilder;
|
|
1697
1802
|
static HasDbFunction(modelBuilder: ModelBuilder, methodInfo: MethodInfo): DbFunctionBuilder;
|
|
1698
1803
|
static HasDefaultSchema(modelBuilder: IConventionModelBuilder, schema: string, fromDataAnnotation?: boolean): IConventionModelBuilder | undefined;
|
|
1699
1804
|
static HasDefaultSchema(modelBuilder: ModelBuilder, schema: string): ModelBuilder;
|
|
1700
|
-
static HasMaxIdentifierLength(modelBuilder: IConventionModelBuilder, length:
|
|
1805
|
+
static HasMaxIdentifierLength(modelBuilder: IConventionModelBuilder, length: Nullable_1<System_Internal.Int32>, fromDataAnnotation?: boolean): IConventionModelBuilder | undefined;
|
|
1701
1806
|
static HasSequence(modelBuilder: IConventionModelBuilder, name: string, schema?: string, fromDataAnnotation?: boolean): IConventionSequenceBuilder;
|
|
1702
|
-
static HasSequence(modelBuilder: ModelBuilder, name: string, builderAction:
|
|
1703
|
-
static HasSequence(modelBuilder: ModelBuilder, name: string, schema: string, builderAction:
|
|
1807
|
+
static HasSequence(modelBuilder: ModelBuilder, name: string, builderAction: Action_1<SequenceBuilder>): ModelBuilder;
|
|
1808
|
+
static HasSequence(modelBuilder: ModelBuilder, name: string, schema: string, builderAction: Action_1<SequenceBuilder>): ModelBuilder;
|
|
1704
1809
|
static HasSequence(modelBuilder: ModelBuilder, name: string, schema?: string): SequenceBuilder;
|
|
1705
|
-
static HasSequence(modelBuilder: ModelBuilder, type: Type, name: string, builderAction:
|
|
1706
|
-
static HasSequence(modelBuilder: ModelBuilder, type: Type, name: string, schema: string, builderAction:
|
|
1810
|
+
static HasSequence(modelBuilder: ModelBuilder, type: Type, name: string, builderAction: Action_1<SequenceBuilder>): ModelBuilder;
|
|
1811
|
+
static HasSequence(modelBuilder: ModelBuilder, type: Type, name: string, schema: string, builderAction: Action_1<SequenceBuilder>): ModelBuilder;
|
|
1707
1812
|
static HasSequence(modelBuilder: ModelBuilder, type: Type, name: string, schema?: string): SequenceBuilder;
|
|
1708
1813
|
static UseCollation(modelBuilder: IConventionModelBuilder, collation: string, fromDataAnnotation?: boolean): IConventionModelBuilder | undefined;
|
|
1709
1814
|
static UseCollation(modelBuilder: ModelBuilder, collation: string): ModelBuilder;
|
|
@@ -1733,20 +1838,20 @@ export abstract class RelationalModelExtensions$instance {
|
|
|
1733
1838
|
static FindSequence(model: IMutableModel, name: string, schema?: string): IMutableSequence | undefined;
|
|
1734
1839
|
static FindSequence(model: IReadOnlyModel, name: string, schema?: string): IReadOnlySequence | undefined;
|
|
1735
1840
|
static GetCollation(model: IReadOnlyModel): string | undefined;
|
|
1736
|
-
static GetCollationConfigurationSource(model: IConventionModel):
|
|
1737
|
-
static GetDbFunctions(model: IConventionModel):
|
|
1738
|
-
static GetDbFunctions(model: IModel):
|
|
1739
|
-
static GetDbFunctions(model: IMutableModel):
|
|
1740
|
-
static GetDbFunctions(model: IReadOnlyModel):
|
|
1841
|
+
static GetCollationConfigurationSource(model: IConventionModel): Nullable_1<ConfigurationSource>;
|
|
1842
|
+
static GetDbFunctions(model: IConventionModel): IEnumerable_1<IConventionDbFunction>;
|
|
1843
|
+
static GetDbFunctions(model: IModel): IEnumerable_1<IDbFunction>;
|
|
1844
|
+
static GetDbFunctions(model: IMutableModel): IEnumerable_1<IMutableDbFunction>;
|
|
1845
|
+
static GetDbFunctions(model: IReadOnlyModel): IEnumerable_1<IReadOnlyDbFunction>;
|
|
1741
1846
|
static GetDefaultSchema(model: IReadOnlyModel): string | undefined;
|
|
1742
|
-
static GetDefaultSchemaConfigurationSource(model: IConventionModel):
|
|
1847
|
+
static GetDefaultSchemaConfigurationSource(model: IConventionModel): Nullable_1<ConfigurationSource>;
|
|
1743
1848
|
static GetMaxIdentifierLength(model: IReadOnlyModel): int;
|
|
1744
|
-
static GetMaxIdentifierLengthConfigurationSource(model: IConventionModel):
|
|
1849
|
+
static GetMaxIdentifierLengthConfigurationSource(model: IConventionModel): Nullable_1<ConfigurationSource>;
|
|
1745
1850
|
static GetRelationalModel(model: IModel): IRelationalModel;
|
|
1746
|
-
static GetSequences(model: IConventionModel):
|
|
1747
|
-
static GetSequences(model: IModel):
|
|
1748
|
-
static GetSequences(model: IMutableModel):
|
|
1749
|
-
static GetSequences(model: IReadOnlyModel):
|
|
1851
|
+
static GetSequences(model: IConventionModel): IEnumerable_1<IConventionSequence>;
|
|
1852
|
+
static GetSequences(model: IModel): IEnumerable_1<ISequence>;
|
|
1853
|
+
static GetSequences(model: IMutableModel): IEnumerable_1<IMutableSequence>;
|
|
1854
|
+
static GetSequences(model: IReadOnlyModel): IEnumerable_1<IReadOnlySequence>;
|
|
1750
1855
|
static RemoveDbFunction(model: IConventionModel, method: MethodInfo): IConventionDbFunction | undefined;
|
|
1751
1856
|
static RemoveDbFunction(model: IConventionModel, name: string): IConventionDbFunction | undefined;
|
|
1752
1857
|
static RemoveDbFunction(model: IMutableModel, method: MethodInfo): IMutableDbFunction | undefined;
|
|
@@ -1757,11 +1862,11 @@ export abstract class RelationalModelExtensions$instance {
|
|
|
1757
1862
|
static SetCollation(model: IMutableModel, value: string): void;
|
|
1758
1863
|
static SetDefaultSchema(model: IConventionModel, value: string, fromDataAnnotation?: boolean): string | undefined;
|
|
1759
1864
|
static SetDefaultSchema(model: IMutableModel, value: string): void;
|
|
1760
|
-
static SetMaxIdentifierLength(model: IConventionModel, length:
|
|
1761
|
-
static SetMaxIdentifierLength(model: IMutableModel, length:
|
|
1762
|
-
static UseNamedDefaultConstraints(model: IConventionModel, value:
|
|
1865
|
+
static SetMaxIdentifierLength(model: IConventionModel, length: Nullable_1<System_Internal.Int32>, fromDataAnnotation?: boolean): Nullable_1<System_Internal.Int32>;
|
|
1866
|
+
static SetMaxIdentifierLength(model: IMutableModel, length: Nullable_1<System_Internal.Int32>): void;
|
|
1867
|
+
static UseNamedDefaultConstraints(model: IConventionModel, value: Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): Nullable_1<System_Internal.Boolean>;
|
|
1763
1868
|
static UseNamedDefaultConstraints(model: IMutableModel, value: boolean): void;
|
|
1764
|
-
static UseNamedDefaultConstraintsConfigurationSource(model: IConventionModel):
|
|
1869
|
+
static UseNamedDefaultConstraintsConfigurationSource(model: IConventionModel): Nullable_1<ConfigurationSource>;
|
|
1765
1870
|
}
|
|
1766
1871
|
|
|
1767
1872
|
|
|
@@ -1784,16 +1889,16 @@ export type RelationalOwnedNavigationBuilderExtensions = RelationalOwnedNavigati
|
|
|
1784
1889
|
export abstract class RelationalPrimitiveCollectionBuilderExtensions$instance {
|
|
1785
1890
|
static HasColumnName(primitiveCollectionBuilder: PrimitiveCollectionBuilder, name: string): PrimitiveCollectionBuilder;
|
|
1786
1891
|
static HasColumnName<TProperty>(primitiveCollectionBuilder: PrimitiveCollectionBuilder_1<TProperty>, name: string): PrimitiveCollectionBuilder_1<TProperty>;
|
|
1787
|
-
static HasColumnOrder(primitiveCollectionBuilder: PrimitiveCollectionBuilder, order:
|
|
1788
|
-
static HasColumnOrder<TProperty>(primitiveCollectionBuilder: PrimitiveCollectionBuilder_1<TProperty>, order:
|
|
1892
|
+
static HasColumnOrder(primitiveCollectionBuilder: PrimitiveCollectionBuilder, order: Nullable_1<System_Internal.Int32>): PrimitiveCollectionBuilder;
|
|
1893
|
+
static HasColumnOrder<TProperty>(primitiveCollectionBuilder: PrimitiveCollectionBuilder_1<TProperty>, order: Nullable_1<System_Internal.Int32>): PrimitiveCollectionBuilder_1<TProperty>;
|
|
1789
1894
|
static HasColumnType(primitiveCollectionBuilder: PrimitiveCollectionBuilder, typeName: string): PrimitiveCollectionBuilder;
|
|
1790
1895
|
static HasColumnType<TProperty>(primitiveCollectionBuilder: PrimitiveCollectionBuilder_1<TProperty>, typeName: string): PrimitiveCollectionBuilder_1<TProperty>;
|
|
1791
1896
|
static HasComment(primitiveCollectionBuilder: PrimitiveCollectionBuilder, comment: string): PrimitiveCollectionBuilder;
|
|
1792
1897
|
static HasComment<TProperty>(primitiveCollectionBuilder: PrimitiveCollectionBuilder_1<TProperty>, comment: string): PrimitiveCollectionBuilder_1<TProperty>;
|
|
1793
|
-
static HasComputedColumnSql(primitiveCollectionBuilder: PrimitiveCollectionBuilder, sql: string, stored:
|
|
1898
|
+
static HasComputedColumnSql(primitiveCollectionBuilder: PrimitiveCollectionBuilder, sql: string, stored: Nullable_1<System_Internal.Boolean>): PrimitiveCollectionBuilder;
|
|
1794
1899
|
static HasComputedColumnSql(primitiveCollectionBuilder: PrimitiveCollectionBuilder, sql: string): PrimitiveCollectionBuilder;
|
|
1795
1900
|
static HasComputedColumnSql(primitiveCollectionBuilder: PrimitiveCollectionBuilder): PrimitiveCollectionBuilder;
|
|
1796
|
-
static HasComputedColumnSql<TProperty>(primitiveCollectionBuilder: PrimitiveCollectionBuilder_1<TProperty>, sql: string, stored:
|
|
1901
|
+
static HasComputedColumnSql<TProperty>(primitiveCollectionBuilder: PrimitiveCollectionBuilder_1<TProperty>, sql: string, stored: Nullable_1<System_Internal.Boolean>): PrimitiveCollectionBuilder_1<TProperty>;
|
|
1797
1902
|
static HasComputedColumnSql<TProperty>(primitiveCollectionBuilder: PrimitiveCollectionBuilder_1<TProperty>, sql: string): PrimitiveCollectionBuilder_1<TProperty>;
|
|
1798
1903
|
static HasComputedColumnSql<TProperty>(primitiveCollectionBuilder: PrimitiveCollectionBuilder_1<TProperty>): PrimitiveCollectionBuilder_1<TProperty>;
|
|
1799
1904
|
static HasDefaultValue(primitiveCollectionBuilder: PrimitiveCollectionBuilder, value: unknown): PrimitiveCollectionBuilder;
|
|
@@ -1831,22 +1936,22 @@ export abstract class RelationalPropertyBuilderExtensions$instance {
|
|
|
1831
1936
|
static CanSetCollation(propertyBuilder: IConventionPropertyBuilder, collation: string, fromDataAnnotation?: boolean): boolean;
|
|
1832
1937
|
static CanSetColumnName(propertyBuilder: IConventionPropertyBuilder, name: string, storeObject: StoreObjectIdentifier, fromDataAnnotation?: boolean): boolean;
|
|
1833
1938
|
static CanSetColumnName(propertyBuilder: IConventionPropertyBuilder, name: string, fromDataAnnotation?: boolean): boolean;
|
|
1834
|
-
static CanSetColumnOrder(propertyBuilder: IConventionPropertyBuilder, order:
|
|
1939
|
+
static CanSetColumnOrder(propertyBuilder: IConventionPropertyBuilder, order: Nullable_1<System_Internal.Int32>, fromDataAnnotation?: boolean): boolean;
|
|
1835
1940
|
static CanSetColumnType(propertyBuilder: IConventionPropertyBuilder, typeName: string, fromDataAnnotation?: boolean): boolean;
|
|
1836
1941
|
static CanSetComment(propertyBuilder: IConventionPropertyBuilder, comment: string, fromDataAnnotation?: boolean): boolean;
|
|
1837
1942
|
static CanSetComputedColumnSql(propertyBuilder: IConventionPropertyBuilder, sql: string, fromDataAnnotation?: boolean): boolean;
|
|
1838
1943
|
static CanSetDefaultValue(propertyBuilder: IConventionPropertyBuilder, value: unknown, fromDataAnnotation?: boolean): boolean;
|
|
1839
1944
|
static CanSetDefaultValueSql(propertyBuilder: IConventionPropertyBuilder, sql: string, fromDataAnnotation?: boolean): boolean;
|
|
1840
|
-
static CanSetIsFixedLength(propertyBuilder: IConventionPropertyBuilder, fixedLength:
|
|
1841
|
-
static CanSetIsStoredComputedColumn(propertyBuilder: IConventionPropertyBuilder, stored:
|
|
1945
|
+
static CanSetIsFixedLength(propertyBuilder: IConventionPropertyBuilder, fixedLength: Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): boolean;
|
|
1946
|
+
static CanSetIsStoredComputedColumn(propertyBuilder: IConventionPropertyBuilder, stored: Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): boolean;
|
|
1842
1947
|
static CanSetJsonPropertyName(propertyBuilder: IConventionPropertyBuilder, name: string, fromDataAnnotation?: boolean): boolean;
|
|
1843
1948
|
static HasColumnName(propertyBuilder: IConventionPropertyBuilder, name: string, storeObject: StoreObjectIdentifier, fromDataAnnotation?: boolean): IConventionPropertyBuilder | undefined;
|
|
1844
1949
|
static HasColumnName(propertyBuilder: IConventionPropertyBuilder, name: string, fromDataAnnotation?: boolean): IConventionPropertyBuilder | undefined;
|
|
1845
1950
|
static HasColumnName(propertyBuilder: PropertyBuilder, name: string): PropertyBuilder;
|
|
1846
1951
|
static HasColumnName<TProperty>(propertyBuilder: PropertyBuilder_1<TProperty>, name: string): PropertyBuilder_1<TProperty>;
|
|
1847
|
-
static HasColumnOrder(propertyBuilder: IConventionPropertyBuilder, order:
|
|
1848
|
-
static HasColumnOrder(propertyBuilder: PropertyBuilder, order:
|
|
1849
|
-
static HasColumnOrder<TProperty>(propertyBuilder: PropertyBuilder_1<TProperty>, order:
|
|
1952
|
+
static HasColumnOrder(propertyBuilder: IConventionPropertyBuilder, order: Nullable_1<System_Internal.Int32>, fromDataAnnotation?: boolean): IConventionPropertyBuilder | undefined;
|
|
1953
|
+
static HasColumnOrder(propertyBuilder: PropertyBuilder, order: Nullable_1<System_Internal.Int32>): PropertyBuilder;
|
|
1954
|
+
static HasColumnOrder<TProperty>(propertyBuilder: PropertyBuilder_1<TProperty>, order: Nullable_1<System_Internal.Int32>): PropertyBuilder_1<TProperty>;
|
|
1850
1955
|
static HasColumnType(propertyBuilder: IConventionPropertyBuilder, typeName: string, fromDataAnnotation?: boolean): IConventionPropertyBuilder | undefined;
|
|
1851
1956
|
static HasColumnType(propertyBuilder: PropertyBuilder, typeName: string): PropertyBuilder;
|
|
1852
1957
|
static HasColumnType<TProperty>(propertyBuilder: PropertyBuilder_1<TProperty>, typeName: string): PropertyBuilder_1<TProperty>;
|
|
@@ -1854,10 +1959,10 @@ export abstract class RelationalPropertyBuilderExtensions$instance {
|
|
|
1854
1959
|
static HasComment(propertyBuilder: PropertyBuilder, comment: string): PropertyBuilder;
|
|
1855
1960
|
static HasComment<TProperty>(propertyBuilder: PropertyBuilder_1<TProperty>, comment: string): PropertyBuilder_1<TProperty>;
|
|
1856
1961
|
static HasComputedColumnSql(propertyBuilder: IConventionPropertyBuilder, sql: string, fromDataAnnotation?: boolean): IConventionPropertyBuilder | undefined;
|
|
1857
|
-
static HasComputedColumnSql(propertyBuilder: PropertyBuilder, sql: string, stored:
|
|
1962
|
+
static HasComputedColumnSql(propertyBuilder: PropertyBuilder, sql: string, stored: Nullable_1<System_Internal.Boolean>): PropertyBuilder;
|
|
1858
1963
|
static HasComputedColumnSql(propertyBuilder: PropertyBuilder, sql: string): PropertyBuilder;
|
|
1859
1964
|
static HasComputedColumnSql(propertyBuilder: PropertyBuilder): PropertyBuilder;
|
|
1860
|
-
static HasComputedColumnSql<TProperty>(propertyBuilder: PropertyBuilder_1<TProperty>, sql: string, stored:
|
|
1965
|
+
static HasComputedColumnSql<TProperty>(propertyBuilder: PropertyBuilder_1<TProperty>, sql: string, stored: Nullable_1<System_Internal.Boolean>): PropertyBuilder_1<TProperty>;
|
|
1861
1966
|
static HasComputedColumnSql<TProperty>(propertyBuilder: PropertyBuilder_1<TProperty>, sql: string): PropertyBuilder_1<TProperty>;
|
|
1862
1967
|
static HasComputedColumnSql<TProperty>(propertyBuilder: PropertyBuilder_1<TProperty>): PropertyBuilder_1<TProperty>;
|
|
1863
1968
|
static HasDefaultValue(propertyBuilder: IConventionPropertyBuilder, value: unknown, fromDataAnnotation?: boolean): IConventionPropertyBuilder | undefined;
|
|
@@ -1873,10 +1978,10 @@ export abstract class RelationalPropertyBuilderExtensions$instance {
|
|
|
1873
1978
|
static HasJsonPropertyName(propertyBuilder: IConventionPropertyBuilder, name: string, fromDataAnnotation?: boolean): IConventionPropertyBuilder | undefined;
|
|
1874
1979
|
static HasJsonPropertyName(propertyBuilder: PropertyBuilder, name: string): PropertyBuilder;
|
|
1875
1980
|
static HasJsonPropertyName<TProperty>(propertyBuilder: PropertyBuilder_1<TProperty>, name: string): PropertyBuilder_1<TProperty>;
|
|
1876
|
-
static IsFixedLength(propertyBuilder: IConventionPropertyBuilder, fixedLength:
|
|
1981
|
+
static IsFixedLength(propertyBuilder: IConventionPropertyBuilder, fixedLength: Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): IConventionPropertyBuilder | undefined;
|
|
1877
1982
|
static IsFixedLength(propertyBuilder: PropertyBuilder, fixedLength?: boolean): PropertyBuilder;
|
|
1878
1983
|
static IsFixedLength<TProperty>(propertyBuilder: PropertyBuilder_1<TProperty>, fixedLength?: boolean): PropertyBuilder_1<TProperty>;
|
|
1879
|
-
static IsStoredComputedColumn(propertyBuilder: IConventionPropertyBuilder, stored:
|
|
1984
|
+
static IsStoredComputedColumn(propertyBuilder: IConventionPropertyBuilder, stored: Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): IConventionPropertyBuilder | undefined;
|
|
1880
1985
|
static UseCollation(propertyBuilder: IConventionPropertyBuilder, collation: string, fromDataAnnotation?: boolean): IConventionPropertyBuilder | undefined;
|
|
1881
1986
|
static UseCollation(propertyBuilder: PropertyBuilder, collation: string): PropertyBuilder;
|
|
1882
1987
|
static UseCollation<TProperty>(propertyBuilder: PropertyBuilder_1<TProperty>, collation: string): PropertyBuilder_1<TProperty>;
|
|
@@ -1899,72 +2004,72 @@ export abstract class RelationalPropertyExtensions$instance {
|
|
|
1899
2004
|
static FindSharedStoreObjectRootProperty(property: IReadOnlyProperty, storeObject: StoreObjectIdentifier): IReadOnlyProperty | undefined;
|
|
1900
2005
|
static GetCollation(property: IReadOnlyProperty, storeObject: StoreObjectIdentifier): string | undefined;
|
|
1901
2006
|
static GetCollation(property: IReadOnlyProperty): string | undefined;
|
|
1902
|
-
static GetCollationConfigurationSource(property: IConventionProperty):
|
|
2007
|
+
static GetCollationConfigurationSource(property: IConventionProperty): Nullable_1<ConfigurationSource>;
|
|
1903
2008
|
static GetColumnBaseName(property: IReadOnlyProperty): string;
|
|
1904
2009
|
static GetColumnName(property: IReadOnlyProperty, storeObject: StoreObjectIdentifier): string | undefined;
|
|
1905
2010
|
static GetColumnName(property: IReadOnlyProperty): string;
|
|
1906
|
-
static GetColumnNameConfigurationSource(property: IConventionProperty, storeObject: StoreObjectIdentifier):
|
|
1907
|
-
static GetColumnNameConfigurationSource(property: IConventionProperty):
|
|
1908
|
-
static GetColumnOrder(property: IReadOnlyProperty, storeObject: StoreObjectIdentifier):
|
|
1909
|
-
static GetColumnOrder(property: IReadOnlyProperty):
|
|
1910
|
-
static GetColumnOrderConfigurationSource(property: IConventionProperty):
|
|
2011
|
+
static GetColumnNameConfigurationSource(property: IConventionProperty, storeObject: StoreObjectIdentifier): Nullable_1<ConfigurationSource>;
|
|
2012
|
+
static GetColumnNameConfigurationSource(property: IConventionProperty): Nullable_1<ConfigurationSource>;
|
|
2013
|
+
static GetColumnOrder(property: IReadOnlyProperty, storeObject: StoreObjectIdentifier): Nullable_1<System_Internal.Int32>;
|
|
2014
|
+
static GetColumnOrder(property: IReadOnlyProperty): Nullable_1<System_Internal.Int32>;
|
|
2015
|
+
static GetColumnOrderConfigurationSource(property: IConventionProperty): Nullable_1<ConfigurationSource>;
|
|
1911
2016
|
static GetColumnType(property: IProperty, storeObject: StoreObjectIdentifier): string;
|
|
1912
2017
|
static GetColumnType(property: IProperty): string;
|
|
1913
2018
|
static GetColumnType(property: IReadOnlyProperty, storeObject: StoreObjectIdentifier): string | undefined;
|
|
1914
2019
|
static GetColumnType(property: IReadOnlyProperty): string | undefined;
|
|
1915
|
-
static GetColumnTypeConfigurationSource(property: IConventionProperty):
|
|
2020
|
+
static GetColumnTypeConfigurationSource(property: IConventionProperty): Nullable_1<ConfigurationSource>;
|
|
1916
2021
|
static GetComment(property: IReadOnlyProperty, storeObject: StoreObjectIdentifier): string | undefined;
|
|
1917
2022
|
static GetComment(property: IReadOnlyProperty): string | undefined;
|
|
1918
|
-
static GetCommentConfigurationSource(property: IConventionProperty):
|
|
2023
|
+
static GetCommentConfigurationSource(property: IConventionProperty): Nullable_1<ConfigurationSource>;
|
|
1919
2024
|
static GetComputedColumnSql(property: IReadOnlyProperty, storeObject: StoreObjectIdentifier): string | undefined;
|
|
1920
2025
|
static GetComputedColumnSql(property: IReadOnlyProperty): string | undefined;
|
|
1921
|
-
static GetComputedColumnSqlConfigurationSource(property: IConventionProperty):
|
|
2026
|
+
static GetComputedColumnSqlConfigurationSource(property: IConventionProperty): Nullable_1<ConfigurationSource>;
|
|
1922
2027
|
static GetDefaultColumnBaseName(property: IReadOnlyProperty): string;
|
|
1923
|
-
static GetDefaultColumnMappings(property: IProperty):
|
|
2028
|
+
static GetDefaultColumnMappings(property: IProperty): IEnumerable_1<IColumnMappingBase>;
|
|
1924
2029
|
static GetDefaultColumnName(property: IReadOnlyProperty, storeObject: StoreObjectIdentifier): string | undefined;
|
|
1925
2030
|
static GetDefaultColumnName(property: IReadOnlyProperty): string;
|
|
1926
2031
|
static GetDefaultConstraintName(property: IReadOnlyProperty, storeObject: StoreObjectIdentifier): string | undefined;
|
|
1927
2032
|
static GetDefaultConstraintName(property: IReadOnlyProperty): string | undefined;
|
|
1928
|
-
static GetDefaultConstraintNameConfigurationSource(property: IConventionProperty):
|
|
2033
|
+
static GetDefaultConstraintNameConfigurationSource(property: IConventionProperty): Nullable_1<ConfigurationSource>;
|
|
1929
2034
|
static GetDefaultDefaultConstraintName(property: IReadOnlyProperty, storeObject: StoreObjectIdentifier): string;
|
|
1930
2035
|
static GetDefaultValue(property: IReadOnlyProperty, storeObject: StoreObjectIdentifier): unknown | undefined;
|
|
1931
2036
|
static GetDefaultValue(property: IReadOnlyProperty): unknown | undefined;
|
|
1932
|
-
static GetDefaultValueConfigurationSource(property: IConventionProperty):
|
|
2037
|
+
static GetDefaultValueConfigurationSource(property: IConventionProperty): Nullable_1<ConfigurationSource>;
|
|
1933
2038
|
static GetDefaultValueSql(property: IReadOnlyProperty, storeObject: StoreObjectIdentifier): string | undefined;
|
|
1934
2039
|
static GetDefaultValueSql(property: IReadOnlyProperty): string | undefined;
|
|
1935
|
-
static GetDefaultValueSqlConfigurationSource(property: IConventionProperty):
|
|
1936
|
-
static GetDeleteStoredProcedureParameterMappings(property: IProperty):
|
|
1937
|
-
static GetFunctionColumnMappings(property: IProperty):
|
|
1938
|
-
static GetInsertStoredProcedureParameterMappings(property: IProperty):
|
|
1939
|
-
static GetInsertStoredProcedureResultColumnMappings(property: IProperty):
|
|
1940
|
-
static GetIsFixedLengthConfigurationSource(property: IConventionProperty):
|
|
1941
|
-
static GetIsStored(property: IReadOnlyProperty, storeObject: StoreObjectIdentifier):
|
|
1942
|
-
static GetIsStored(property: IReadOnlyProperty):
|
|
1943
|
-
static GetIsStoredConfigurationSource(property: IConventionProperty):
|
|
2040
|
+
static GetDefaultValueSqlConfigurationSource(property: IConventionProperty): Nullable_1<ConfigurationSource>;
|
|
2041
|
+
static GetDeleteStoredProcedureParameterMappings(property: IProperty): IEnumerable_1<IStoredProcedureParameterMapping>;
|
|
2042
|
+
static GetFunctionColumnMappings(property: IProperty): IEnumerable_1<IFunctionColumnMapping>;
|
|
2043
|
+
static GetInsertStoredProcedureParameterMappings(property: IProperty): IEnumerable_1<IStoredProcedureParameterMapping>;
|
|
2044
|
+
static GetInsertStoredProcedureResultColumnMappings(property: IProperty): IEnumerable_1<IStoredProcedureResultColumnMapping>;
|
|
2045
|
+
static GetIsFixedLengthConfigurationSource(property: IConventionProperty): Nullable_1<ConfigurationSource>;
|
|
2046
|
+
static GetIsStored(property: IReadOnlyProperty, storeObject: StoreObjectIdentifier): Nullable_1<System_Internal.Boolean>;
|
|
2047
|
+
static GetIsStored(property: IReadOnlyProperty): Nullable_1<System_Internal.Boolean>;
|
|
2048
|
+
static GetIsStoredConfigurationSource(property: IConventionProperty): Nullable_1<ConfigurationSource>;
|
|
1944
2049
|
static GetJsonPropertyName(property: IReadOnlyProperty): string | undefined;
|
|
1945
|
-
static GetJsonPropertyNameConfigurationSource(property: IConventionProperty):
|
|
1946
|
-
static GetMappedStoreObjects(property: IReadOnlyProperty, storeObjectType: StoreObjectType):
|
|
1947
|
-
static GetMaxLength(property: IReadOnlyProperty, storeObject: StoreObjectIdentifier):
|
|
2050
|
+
static GetJsonPropertyNameConfigurationSource(property: IConventionProperty): Nullable_1<ConfigurationSource>;
|
|
2051
|
+
static GetMappedStoreObjects(property: IReadOnlyProperty, storeObjectType: StoreObjectType): IEnumerable_1<StoreObjectIdentifier>;
|
|
2052
|
+
static GetMaxLength(property: IReadOnlyProperty, storeObject: StoreObjectIdentifier): Nullable_1<System_Internal.Int32>;
|
|
1948
2053
|
static GetOrCreateOverrides(property: IConventionProperty, storeObject: StoreObjectIdentifier, fromDataAnnotation?: boolean): IConventionRelationalPropertyOverrides;
|
|
1949
2054
|
static GetOrCreateOverrides(property: IMutableProperty, storeObject: StoreObjectIdentifier): IMutableRelationalPropertyOverrides;
|
|
1950
|
-
static GetOverrides(property: IConventionProperty):
|
|
1951
|
-
static GetOverrides(property: IMutableProperty):
|
|
1952
|
-
static GetOverrides(property: IProperty):
|
|
1953
|
-
static GetOverrides(property: IReadOnlyProperty):
|
|
1954
|
-
static GetPrecision(property: IReadOnlyProperty, storeObject: StoreObjectIdentifier):
|
|
2055
|
+
static GetOverrides(property: IConventionProperty): IEnumerable_1<IConventionRelationalPropertyOverrides>;
|
|
2056
|
+
static GetOverrides(property: IMutableProperty): IEnumerable_1<IMutableRelationalPropertyOverrides>;
|
|
2057
|
+
static GetOverrides(property: IProperty): IEnumerable_1<IRelationalPropertyOverrides>;
|
|
2058
|
+
static GetOverrides(property: IReadOnlyProperty): IEnumerable_1<IReadOnlyRelationalPropertyOverrides>;
|
|
2059
|
+
static GetPrecision(property: IReadOnlyProperty, storeObject: StoreObjectIdentifier): Nullable_1<System_Internal.Int32>;
|
|
1955
2060
|
static GetReaderFieldValue(property: IProperty, relationalReader: RelationalDataReader, ordinal: int, detailedErrorsEnabled: boolean): unknown | undefined;
|
|
1956
2061
|
static GetRelationalTypeMapping(property: IReadOnlyProperty): RelationalTypeMapping;
|
|
1957
|
-
static GetScale(property: IReadOnlyProperty, storeObject: StoreObjectIdentifier):
|
|
1958
|
-
static GetSqlQueryColumnMappings(property: IProperty):
|
|
1959
|
-
static GetTableColumnMappings(property: IProperty):
|
|
1960
|
-
static GetUpdateStoredProcedureParameterMappings(property: IProperty):
|
|
1961
|
-
static GetUpdateStoredProcedureResultColumnMappings(property: IProperty):
|
|
1962
|
-
static GetViewColumnMappings(property: IProperty):
|
|
2062
|
+
static GetScale(property: IReadOnlyProperty, storeObject: StoreObjectIdentifier): Nullable_1<System_Internal.Int32>;
|
|
2063
|
+
static GetSqlQueryColumnMappings(property: IProperty): IEnumerable_1<ISqlQueryColumnMapping>;
|
|
2064
|
+
static GetTableColumnMappings(property: IProperty): IEnumerable_1<IColumnMapping>;
|
|
2065
|
+
static GetUpdateStoredProcedureParameterMappings(property: IProperty): IEnumerable_1<IStoredProcedureParameterMapping>;
|
|
2066
|
+
static GetUpdateStoredProcedureResultColumnMappings(property: IProperty): IEnumerable_1<IStoredProcedureResultColumnMapping>;
|
|
2067
|
+
static GetViewColumnMappings(property: IProperty): IEnumerable_1<IViewColumnMapping>;
|
|
1963
2068
|
static IsColumnNullable(property: IReadOnlyProperty, storeObject: StoreObjectIdentifier): boolean;
|
|
1964
2069
|
static IsColumnNullable(property: IReadOnlyProperty): boolean;
|
|
1965
|
-
static IsFixedLength(property: IReadOnlyProperty, storeObject: StoreObjectIdentifier):
|
|
1966
|
-
static IsFixedLength(property: IReadOnlyProperty):
|
|
1967
|
-
static IsUnicode(property: IReadOnlyProperty, storeObject: StoreObjectIdentifier):
|
|
2070
|
+
static IsFixedLength(property: IReadOnlyProperty, storeObject: StoreObjectIdentifier): Nullable_1<System_Internal.Boolean>;
|
|
2071
|
+
static IsFixedLength(property: IReadOnlyProperty): Nullable_1<System_Internal.Boolean>;
|
|
2072
|
+
static IsUnicode(property: IReadOnlyProperty, storeObject: StoreObjectIdentifier): Nullable_1<System_Internal.Boolean>;
|
|
1968
2073
|
static RemoveOverrides(property: IConventionProperty, storeObject: StoreObjectIdentifier): IConventionRelationalPropertyOverrides | undefined;
|
|
1969
2074
|
static RemoveOverrides(property: IMutableProperty, storeObject: StoreObjectIdentifier): IMutableRelationalPropertyOverrides | undefined;
|
|
1970
2075
|
static SetCollation(property: IConventionProperty, collation: string, fromDataAnnotation?: boolean): string | undefined;
|
|
@@ -1973,8 +2078,8 @@ export abstract class RelationalPropertyExtensions$instance {
|
|
|
1973
2078
|
static SetColumnName(property: IConventionProperty, name: string, fromDataAnnotation?: boolean): string | undefined;
|
|
1974
2079
|
static SetColumnName(property: IMutableProperty, name: string, storeObject: StoreObjectIdentifier): void;
|
|
1975
2080
|
static SetColumnName(property: IMutableProperty, name: string): void;
|
|
1976
|
-
static SetColumnOrder(property: IConventionProperty, order:
|
|
1977
|
-
static SetColumnOrder(property: IMutableProperty, order:
|
|
2081
|
+
static SetColumnOrder(property: IConventionProperty, order: Nullable_1<System_Internal.Int32>, fromDataAnnotation?: boolean): Nullable_1<System_Internal.Int32>;
|
|
2082
|
+
static SetColumnOrder(property: IMutableProperty, order: Nullable_1<System_Internal.Int32>): void;
|
|
1978
2083
|
static SetColumnType(property: IConventionProperty, value: string, fromDataAnnotation?: boolean): string | undefined;
|
|
1979
2084
|
static SetColumnType(property: IMutableProperty, value: string): void;
|
|
1980
2085
|
static SetComment(property: IConventionProperty, comment: string, fromDataAnnotation?: boolean): string | undefined;
|
|
@@ -1987,10 +2092,10 @@ export abstract class RelationalPropertyExtensions$instance {
|
|
|
1987
2092
|
static SetDefaultValue(property: IMutableProperty, value: unknown): void;
|
|
1988
2093
|
static SetDefaultValueSql(property: IConventionProperty, value: string, fromDataAnnotation?: boolean): string | undefined;
|
|
1989
2094
|
static SetDefaultValueSql(property: IMutableProperty, value: string): void;
|
|
1990
|
-
static SetIsFixedLength(property: IConventionProperty, fixedLength:
|
|
1991
|
-
static SetIsFixedLength(property: IMutableProperty, fixedLength:
|
|
1992
|
-
static SetIsStored(property: IConventionProperty, value:
|
|
1993
|
-
static SetIsStored(property: IMutableProperty, value:
|
|
2095
|
+
static SetIsFixedLength(property: IConventionProperty, fixedLength: Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): Nullable_1<System_Internal.Boolean>;
|
|
2096
|
+
static SetIsFixedLength(property: IMutableProperty, fixedLength: Nullable_1<System_Internal.Boolean>): void;
|
|
2097
|
+
static SetIsStored(property: IConventionProperty, value: Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): Nullable_1<System_Internal.Boolean>;
|
|
2098
|
+
static SetIsStored(property: IMutableProperty, value: Nullable_1<System_Internal.Boolean>): void;
|
|
1994
2099
|
static SetJsonPropertyName(property: IConventionProperty, name: string, fromDataAnnotation?: boolean): string | undefined;
|
|
1995
2100
|
static SetJsonPropertyName(property: IMutableProperty, name: string): void;
|
|
1996
2101
|
static TryGetDefaultValue(property: IReadOnlyProperty, storeObject: StoreObjectIdentifier, defaultValue: unknown): boolean;
|
|
@@ -2001,12 +2106,12 @@ export abstract class RelationalPropertyExtensions$instance {
|
|
|
2001
2106
|
export type RelationalPropertyExtensions = RelationalPropertyExtensions$instance;
|
|
2002
2107
|
|
|
2003
2108
|
export abstract class RelationalQueryableExtensions$instance {
|
|
2004
|
-
static AsSingleQuery<TEntity>(source:
|
|
2005
|
-
static AsSplitQuery<TEntity>(source:
|
|
2109
|
+
static AsSingleQuery<TEntity>(source: IQueryable_1<TEntity>): IQueryable_1<TEntity>;
|
|
2110
|
+
static AsSplitQuery<TEntity>(source: IQueryable_1<TEntity>): IQueryable_1<TEntity>;
|
|
2006
2111
|
static CreateDbCommand(source: IQueryable): DbCommand;
|
|
2007
|
-
static FromSql<TEntity>(source: DbSet_1<TEntity>, sql: FormattableString):
|
|
2008
|
-
static FromSqlInterpolated<TEntity>(source: DbSet_1<TEntity>, sql: FormattableString):
|
|
2009
|
-
static FromSqlRaw<TEntity>(source: DbSet_1<TEntity>, sql: string, ...parameters: unknown[]):
|
|
2112
|
+
static FromSql<TEntity>(source: DbSet_1<TEntity>, sql: FormattableString): IQueryable_1<TEntity>;
|
|
2113
|
+
static FromSqlInterpolated<TEntity>(source: DbSet_1<TEntity>, sql: FormattableString): IQueryable_1<TEntity>;
|
|
2114
|
+
static FromSqlRaw<TEntity>(source: DbSet_1<TEntity>, sql: string, ...parameters: unknown[]): IQueryable_1<TEntity>;
|
|
2010
2115
|
}
|
|
2011
2116
|
|
|
2012
2117
|
|
|
@@ -2027,13 +2132,13 @@ export type RelationalTriggerBuilderExtensions = RelationalTriggerBuilderExtensi
|
|
|
2027
2132
|
export abstract class RelationalTriggerExtensions$instance {
|
|
2028
2133
|
static GetDatabaseName(trigger: IReadOnlyTrigger, storeObject: StoreObjectIdentifier): string | undefined;
|
|
2029
2134
|
static GetDatabaseName(trigger: IReadOnlyTrigger): string | undefined;
|
|
2030
|
-
static GetDatabaseNameConfigurationSource(trigger: IConventionTrigger):
|
|
2135
|
+
static GetDatabaseNameConfigurationSource(trigger: IConventionTrigger): Nullable_1<ConfigurationSource>;
|
|
2031
2136
|
static GetDefaultDatabaseName(trigger: IReadOnlyTrigger, storeObject: StoreObjectIdentifier): string | undefined;
|
|
2032
2137
|
static GetDefaultDatabaseName(trigger: IReadOnlyTrigger): string | undefined;
|
|
2033
2138
|
static GetTableName(trigger: IReadOnlyTrigger): string;
|
|
2034
|
-
static GetTableNameConfigurationSource(trigger: IConventionTrigger):
|
|
2139
|
+
static GetTableNameConfigurationSource(trigger: IConventionTrigger): Nullable_1<ConfigurationSource>;
|
|
2035
2140
|
static GetTableSchema(trigger: IReadOnlyTrigger): string | undefined;
|
|
2036
|
-
static GetTableSchemaConfigurationSource(trigger: IConventionTrigger):
|
|
2141
|
+
static GetTableSchemaConfigurationSource(trigger: IConventionTrigger): Nullable_1<ConfigurationSource>;
|
|
2037
2142
|
static SetDatabaseName(trigger: IConventionTrigger, name: string, fromDataAnnotation?: boolean): string | undefined;
|
|
2038
2143
|
static SetDatabaseName(trigger: IMutableTrigger, name: string): void;
|
|
2039
2144
|
static SetTableName(trigger: IConventionTrigger, name: string, fromDataAnnotation?: boolean): string | undefined;
|
|
@@ -2049,33 +2154,33 @@ export abstract class RelationalTypeBaseExtensions$instance {
|
|
|
2049
2154
|
static FindMappingFragment(typeBase: IReadOnlyTypeBase, storeObject: StoreObjectIdentifier): IReadOnlyEntityTypeMappingFragment | undefined;
|
|
2050
2155
|
static FindMappingFragment(typeBase: ITypeBase, storeObject: StoreObjectIdentifier): IEntityTypeMappingFragment | undefined;
|
|
2051
2156
|
static GetContainerColumnName(typeBase: IReadOnlyTypeBase): string | undefined;
|
|
2052
|
-
static GetContainerColumnNameConfigurationSource(typeBase: IConventionTypeBase):
|
|
2157
|
+
static GetContainerColumnNameConfigurationSource(typeBase: IConventionTypeBase): Nullable_1<ConfigurationSource>;
|
|
2053
2158
|
static GetContainerColumnType(typeBase: IReadOnlyTypeBase): string | undefined;
|
|
2054
|
-
static GetContainerColumnTypeConfigurationSource(typeBase: IConventionTypeBase):
|
|
2055
|
-
static GetDefaultMappings(typeBase: ITypeBase):
|
|
2159
|
+
static GetContainerColumnTypeConfigurationSource(typeBase: IConventionTypeBase): Nullable_1<ConfigurationSource>;
|
|
2160
|
+
static GetDefaultMappings(typeBase: ITypeBase): IEnumerable_1<ITableMappingBase>;
|
|
2056
2161
|
static GetDeleteStoredProcedure(typeBase: IReadOnlyTypeBase): IReadOnlyStoredProcedure | undefined;
|
|
2057
2162
|
static GetDeleteStoredProcedure(typeBase: ITypeBase): IStoredProcedure | undefined;
|
|
2058
|
-
static GetDeleteStoredProcedureMappings(typeBase: ITypeBase):
|
|
2059
|
-
static GetFunctionMappings(typeBase: ITypeBase):
|
|
2163
|
+
static GetDeleteStoredProcedureMappings(typeBase: ITypeBase): IEnumerable_1<IStoredProcedureMapping>;
|
|
2164
|
+
static GetFunctionMappings(typeBase: ITypeBase): IEnumerable_1<IFunctionMapping>;
|
|
2060
2165
|
static GetFunctionName(typeBase: IReadOnlyTypeBase): string | undefined;
|
|
2061
2166
|
static GetInsertStoredProcedure(typeBase: IReadOnlyTypeBase): IReadOnlyStoredProcedure | undefined;
|
|
2062
2167
|
static GetInsertStoredProcedure(typeBase: ITypeBase): IStoredProcedure | undefined;
|
|
2063
|
-
static GetInsertStoredProcedureMappings(typeBase: ITypeBase):
|
|
2168
|
+
static GetInsertStoredProcedureMappings(typeBase: ITypeBase): IEnumerable_1<IStoredProcedureMapping>;
|
|
2064
2169
|
static GetJsonPropertyName(typeBase: IReadOnlyTypeBase): string | undefined;
|
|
2065
|
-
static GetMappingFragments(typeBase: IReadOnlyTypeBase, storeObjectType: StoreObjectType):
|
|
2066
|
-
static GetMappingFragments(typeBase: IReadOnlyTypeBase):
|
|
2067
|
-
static GetMappingFragments(typeBase: ITypeBase, storeObjectType: StoreObjectType):
|
|
2068
|
-
static GetMappingFragments(typeBase: ITypeBase):
|
|
2170
|
+
static GetMappingFragments(typeBase: IReadOnlyTypeBase, storeObjectType: StoreObjectType): IEnumerable_1<IReadOnlyEntityTypeMappingFragment>;
|
|
2171
|
+
static GetMappingFragments(typeBase: IReadOnlyTypeBase): IEnumerable_1<IReadOnlyEntityTypeMappingFragment>;
|
|
2172
|
+
static GetMappingFragments(typeBase: ITypeBase, storeObjectType: StoreObjectType): IEnumerable_1<IEntityTypeMappingFragment>;
|
|
2173
|
+
static GetMappingFragments(typeBase: ITypeBase): IEnumerable_1<IEntityTypeMappingFragment>;
|
|
2069
2174
|
static GetMappingStrategy(typeBase: IReadOnlyTypeBase): string | undefined;
|
|
2070
2175
|
static GetSchema(typeBase: IReadOnlyTypeBase): string | undefined;
|
|
2071
2176
|
static GetSqlQuery(typeBase: IReadOnlyTypeBase): string | undefined;
|
|
2072
|
-
static GetSqlQueryMappings(typeBase: ITypeBase):
|
|
2073
|
-
static GetTableMappings(typeBase: ITypeBase):
|
|
2177
|
+
static GetSqlQueryMappings(typeBase: ITypeBase): IEnumerable_1<ISqlQueryMapping>;
|
|
2178
|
+
static GetTableMappings(typeBase: ITypeBase): IEnumerable_1<ITableMapping>;
|
|
2074
2179
|
static GetTableName(typeBase: IReadOnlyTypeBase): string | undefined;
|
|
2075
2180
|
static GetUpdateStoredProcedure(typeBase: IReadOnlyTypeBase): IReadOnlyStoredProcedure | undefined;
|
|
2076
2181
|
static GetUpdateStoredProcedure(typeBase: ITypeBase): IStoredProcedure | undefined;
|
|
2077
|
-
static GetUpdateStoredProcedureMappings(typeBase: ITypeBase):
|
|
2078
|
-
static GetViewMappings(typeBase: ITypeBase):
|
|
2182
|
+
static GetUpdateStoredProcedureMappings(typeBase: ITypeBase): IEnumerable_1<IStoredProcedureMapping>;
|
|
2183
|
+
static GetViewMappings(typeBase: ITypeBase): IEnumerable_1<IViewMapping>;
|
|
2079
2184
|
static GetViewName(typeBase: IReadOnlyTypeBase): string | undefined;
|
|
2080
2185
|
static GetViewSchema(typeBase: IReadOnlyTypeBase): string | undefined;
|
|
2081
2186
|
static IsMappedToJson(typeBase: IReadOnlyTypeBase): boolean;
|