@tsonic/efcore 10.0.27 → 10.0.32
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.Metadata/internal/index.d.ts +6 -3
- package/Microsoft.EntityFrameworkCore.Metadata.Internal/internal/index.d.ts +14 -8
- package/Microsoft.EntityFrameworkCore.Migrations.Operations/internal/index.d.ts +18 -9
- package/Microsoft.EntityFrameworkCore.Query/internal/index.d.ts +6 -3
- package/Microsoft.EntityFrameworkCore.Query.Internal/internal/index.d.ts +6 -3
- package/Microsoft.EntityFrameworkCore.Scaffolding.Metadata/internal/index.d.ts +16 -8
- package/Microsoft.EntityFrameworkCore.Storage/internal/index.d.ts +28 -14
- package/Microsoft.EntityFrameworkCore.Update/internal/index.d.ts +2 -1
- package/__internal/extensions/index.d.ts +269 -4
- package/package.json +4 -4
|
@@ -2346,7 +2346,8 @@ export interface IMutableEntityTypeMappingFragment$instance extends IReadOnlyEnt
|
|
|
2346
2346
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableEntityTypeMappingFragment: never;
|
|
2347
2347
|
|
|
2348
2348
|
readonly EntityType: IMutableEntityType;
|
|
2349
|
-
IsTableExcludedFromMigrations: Nullable_1<System_Internal.Boolean>;
|
|
2349
|
+
get IsTableExcludedFromMigrations(): Nullable_1<System_Internal.Boolean>;
|
|
2350
|
+
set IsTableExcludedFromMigrations(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
2350
2351
|
readonly StoreObject: StoreObjectIdentifier;
|
|
2351
2352
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
2352
2353
|
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
@@ -2675,8 +2676,10 @@ export interface IMutableSequence$instance extends IReadOnlySequence, IReadOnlyA
|
|
|
2675
2676
|
readonly Model: IMutableModel;
|
|
2676
2677
|
StartValue: long;
|
|
2677
2678
|
IncrementBy: int;
|
|
2678
|
-
MinValue: Nullable_1<System_Internal.Int64>;
|
|
2679
|
-
|
|
2679
|
+
get MinValue(): Nullable_1<System_Internal.Int64>;
|
|
2680
|
+
set MinValue(value: Nullable_1<System_Internal.Int64> | long);
|
|
2681
|
+
get MaxValue(): Nullable_1<System_Internal.Int64>;
|
|
2682
|
+
set MaxValue(value: Nullable_1<System_Internal.Int64> | long);
|
|
2680
2683
|
Type: Type;
|
|
2681
2684
|
IsCyclic: boolean;
|
|
2682
2685
|
readonly Name: string;
|
|
@@ -2134,7 +2134,8 @@ export interface EntityTypeMappingFragment$instance extends ConventionAnnotatabl
|
|
|
2134
2134
|
readonly EntityType: IReadOnlyEntityType;
|
|
2135
2135
|
readonly IsInModel: boolean;
|
|
2136
2136
|
readonly IsReadOnly: boolean;
|
|
2137
|
-
IsTableExcludedFromMigrations: Nullable_1<System_Internal.Boolean>;
|
|
2137
|
+
get IsTableExcludedFromMigrations(): Nullable_1<System_Internal.Boolean>;
|
|
2138
|
+
set IsTableExcludedFromMigrations(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
2138
2139
|
readonly StoreObject: StoreObjectIdentifier;
|
|
2139
2140
|
GetConfigurationSource(): ConfigurationSource;
|
|
2140
2141
|
GetIsTableExcludedFromMigrationsConfigurationSource(): Nullable_1<ConfigurationSource>;
|
|
@@ -4309,7 +4310,8 @@ export interface QueryFilter$instance extends Microsoft_EntityFrameworkCore_Meta
|
|
|
4309
4310
|
|
|
4310
4311
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IQueryFilter: never;
|
|
4311
4312
|
|
|
4312
|
-
ConfigurationSource: Nullable_1<ConfigurationSource>;
|
|
4313
|
+
get ConfigurationSource(): Nullable_1<ConfigurationSource>;
|
|
4314
|
+
set ConfigurationSource(value: Nullable_1<ConfigurationSource> | ConfigurationSource);
|
|
4313
4315
|
readonly Expression: LambdaExpression;
|
|
4314
4316
|
readonly Key: string | undefined;
|
|
4315
4317
|
}
|
|
@@ -4605,8 +4607,10 @@ export interface Sequence$instance extends ConventionAnnotatable {
|
|
|
4605
4607
|
IsCyclic: boolean;
|
|
4606
4608
|
readonly IsInModel: boolean;
|
|
4607
4609
|
readonly IsReadOnly: boolean;
|
|
4608
|
-
MaxValue: Nullable_1<System_Internal.Int64>;
|
|
4609
|
-
|
|
4610
|
+
get MaxValue(): Nullable_1<System_Internal.Int64>;
|
|
4611
|
+
set MaxValue(value: Nullable_1<System_Internal.Int64> | long);
|
|
4612
|
+
get MinValue(): Nullable_1<System_Internal.Int64>;
|
|
4613
|
+
set MinValue(value: Nullable_1<System_Internal.Int64> | long);
|
|
4610
4614
|
readonly Model: IReadOnlyModel;
|
|
4611
4615
|
readonly ModelSchema: string | undefined;
|
|
4612
4616
|
Name: string;
|
|
@@ -5648,8 +5652,10 @@ export interface TableMappingBase_1$instance<TColumnMapping extends IColumnMappi
|
|
|
5648
5652
|
readonly ColumnMappings: List_1<TColumnMapping>;
|
|
5649
5653
|
readonly IncludesDerivedTypes: Nullable_1<System_Internal.Boolean>;
|
|
5650
5654
|
readonly IsReadOnly: boolean;
|
|
5651
|
-
IsSharedTablePrincipal: Nullable_1<System_Internal.Boolean>;
|
|
5652
|
-
|
|
5655
|
+
get IsSharedTablePrincipal(): Nullable_1<System_Internal.Boolean>;
|
|
5656
|
+
set IsSharedTablePrincipal(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
5657
|
+
get IsSplitEntityTypePrincipal(): Nullable_1<System_Internal.Boolean>;
|
|
5658
|
+
set IsSplitEntityTypePrincipal(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
5653
5659
|
readonly Table: ITable | TableBase;
|
|
5654
5660
|
readonly TypeBase: ITypeBase;
|
|
5655
5661
|
AddColumnMapping(columnMapping: TColumnMapping): boolean;
|
|
@@ -5748,8 +5754,8 @@ export interface TypeBase$instance extends ConventionAnnotatable {
|
|
|
5748
5754
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Internal_IRuntimeTypeBase: never;
|
|
5749
5755
|
|
|
5750
5756
|
readonly BaseBuilder: InternalTypeBaseBuilder;
|
|
5751
|
-
get BaseType():
|
|
5752
|
-
set BaseType(value:
|
|
5757
|
+
get BaseType(): EntityType | undefined | TypeBase | undefined;
|
|
5758
|
+
set BaseType(value: EntityType | undefined | TypeBase | undefined);
|
|
5753
5759
|
readonly ClrType: Type;
|
|
5754
5760
|
get ConstructorBinding(): InstantiationBinding | undefined;
|
|
5755
5761
|
set ConstructorBinding(value: InstantiationBinding | undefined);
|
|
@@ -331,15 +331,21 @@ export interface ColumnOperation$instance extends MigrationOperation$instance {
|
|
|
331
331
|
set DefaultValue(value: unknown | undefined);
|
|
332
332
|
get DefaultValueSql(): string | undefined;
|
|
333
333
|
set DefaultValueSql(value: string | undefined);
|
|
334
|
-
IsFixedLength: Nullable_1<System_Internal.Boolean>;
|
|
334
|
+
get IsFixedLength(): Nullable_1<System_Internal.Boolean>;
|
|
335
|
+
set IsFixedLength(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
335
336
|
IsNullable: boolean;
|
|
336
337
|
IsRowVersion: boolean;
|
|
337
|
-
IsStored: Nullable_1<System_Internal.Boolean>;
|
|
338
|
-
|
|
339
|
-
|
|
338
|
+
get IsStored(): Nullable_1<System_Internal.Boolean>;
|
|
339
|
+
set IsStored(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
340
|
+
get IsUnicode(): Nullable_1<System_Internal.Boolean>;
|
|
341
|
+
set IsUnicode(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
342
|
+
get MaxLength(): Nullable_1<System_Internal.Int32>;
|
|
343
|
+
set MaxLength(value: Nullable_1<System_Internal.Int32> | int);
|
|
340
344
|
Name: string;
|
|
341
|
-
Precision: Nullable_1<System_Internal.Int32>;
|
|
342
|
-
|
|
345
|
+
get Precision(): Nullable_1<System_Internal.Int32>;
|
|
346
|
+
set Precision(value: Nullable_1<System_Internal.Int32> | int);
|
|
347
|
+
get Scale(): Nullable_1<System_Internal.Int32>;
|
|
348
|
+
set Scale(value: Nullable_1<System_Internal.Int32> | int);
|
|
343
349
|
get Schema(): string | undefined;
|
|
344
350
|
set Schema(value: string | undefined);
|
|
345
351
|
Table: string;
|
|
@@ -993,7 +999,8 @@ export interface RestartSequenceOperation$instance extends MigrationOperation$in
|
|
|
993
999
|
Name: string;
|
|
994
1000
|
get Schema(): string | undefined;
|
|
995
1001
|
set Schema(value: string | undefined);
|
|
996
|
-
StartValue: Nullable_1<System_Internal.Int64>;
|
|
1002
|
+
get StartValue(): Nullable_1<System_Internal.Int64>;
|
|
1003
|
+
set StartValue(value: Nullable_1<System_Internal.Int64> | long);
|
|
997
1004
|
}
|
|
998
1005
|
|
|
999
1006
|
|
|
@@ -1020,8 +1027,10 @@ export interface SequenceOperation$instance extends MigrationOperation$instance
|
|
|
1020
1027
|
|
|
1021
1028
|
IncrementBy: int;
|
|
1022
1029
|
IsCyclic: boolean;
|
|
1023
|
-
MaxValue: Nullable_1<System_Internal.Int64>;
|
|
1024
|
-
|
|
1030
|
+
get MaxValue(): Nullable_1<System_Internal.Int64>;
|
|
1031
|
+
set MaxValue(value: Nullable_1<System_Internal.Int64> | long);
|
|
1032
|
+
get MinValue(): Nullable_1<System_Internal.Int64>;
|
|
1033
|
+
set MinValue(value: Nullable_1<System_Internal.Int64> | long);
|
|
1025
1034
|
}
|
|
1026
1035
|
|
|
1027
1036
|
|
|
@@ -400,7 +400,8 @@ export interface EntityMaterializerSourceParameters$instance {
|
|
|
400
400
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
401
401
|
|
|
402
402
|
InstanceName: string;
|
|
403
|
-
QueryTrackingBehavior: Nullable_1<QueryTrackingBehavior>;
|
|
403
|
+
get QueryTrackingBehavior(): Nullable_1<QueryTrackingBehavior>;
|
|
404
|
+
set QueryTrackingBehavior(value: Nullable_1<QueryTrackingBehavior> | QueryTrackingBehavior);
|
|
404
405
|
StructuralType: ITypeBase;
|
|
405
406
|
Deconstruct(StructuralType: ITypeBase, InstanceName: string, QueryTrackingBehavior: Nullable_1<QueryTrackingBehavior>): void;
|
|
406
407
|
Equals(obj: unknown): boolean;
|
|
@@ -452,7 +453,8 @@ export interface StructuralTypeMaterializerSourceParameters$instance {
|
|
|
452
453
|
ClrType: Type;
|
|
453
454
|
InstanceName: string;
|
|
454
455
|
IsNullable: boolean;
|
|
455
|
-
QueryTrackingBehavior: Nullable_1<QueryTrackingBehavior>;
|
|
456
|
+
get QueryTrackingBehavior(): Nullable_1<QueryTrackingBehavior>;
|
|
457
|
+
set QueryTrackingBehavior(value: Nullable_1<QueryTrackingBehavior> | QueryTrackingBehavior);
|
|
456
458
|
StructuralType: ITypeBase;
|
|
457
459
|
Deconstruct(StructuralType: ITypeBase, InstanceName: string, ClrType: Type, IsNullable: boolean, QueryTrackingBehavior: Nullable_1<QueryTrackingBehavior>): void;
|
|
458
460
|
Equals(obj: unknown): boolean;
|
|
@@ -2186,7 +2188,8 @@ export type RelationalQueryableMethodTranslatingExpressionVisitorDependencies =
|
|
|
2186
2188
|
export interface RelationalQueryCompilationContext$instance extends QueryCompilationContext {
|
|
2187
2189
|
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Query_RelationalQueryCompilationContext: never;
|
|
2188
2190
|
|
|
2189
|
-
QuerySplittingBehavior: Nullable_1<QuerySplittingBehavior>;
|
|
2191
|
+
get QuerySplittingBehavior(): Nullable_1<QuerySplittingBehavior>;
|
|
2192
|
+
set QuerySplittingBehavior(value: Nullable_1<QuerySplittingBehavior> | QuerySplittingBehavior);
|
|
2190
2193
|
readonly RelationalDependencies: RelationalQueryCompilationContextDependencies;
|
|
2191
2194
|
readonly SqlAliasManager: SqlAliasManager;
|
|
2192
2195
|
}
|
|
@@ -1512,7 +1512,8 @@ export interface SingleQueryResultCoordinator$instance {
|
|
|
1512
1512
|
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Query_Internal_SingleQueryResultCoordinator: never;
|
|
1513
1513
|
|
|
1514
1514
|
readonly Collections: IList_1<SingleQueryCollectionContext | undefined>;
|
|
1515
|
-
HasNext: Nullable_1<System_Internal.Boolean>;
|
|
1515
|
+
get HasNext(): Nullable_1<System_Internal.Boolean>;
|
|
1516
|
+
set HasNext(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
1516
1517
|
readonly ResultContext: ResultContext;
|
|
1517
1518
|
ResultReady: boolean;
|
|
1518
1519
|
SetSingleQueryCollectionContext(collectionId: int, singleQueryCollectionContext: SingleQueryCollectionContext): void;
|
|
@@ -1547,7 +1548,8 @@ export interface SplitQueryDataReaderContext$instance {
|
|
|
1547
1548
|
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Query_Internal_SplitQueryDataReaderContext: never;
|
|
1548
1549
|
|
|
1549
1550
|
readonly DataReader: RelationalDataReader;
|
|
1550
|
-
HasNext: Nullable_1<System_Internal.Boolean>;
|
|
1551
|
+
get HasNext(): Nullable_1<System_Internal.Boolean>;
|
|
1552
|
+
set HasNext(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
1551
1553
|
}
|
|
1552
1554
|
|
|
1553
1555
|
|
|
@@ -1592,7 +1594,8 @@ export interface SplitQueryResultCoordinator$instance {
|
|
|
1592
1594
|
|
|
1593
1595
|
readonly Collections: IList_1<SplitQueryCollectionContext | undefined>;
|
|
1594
1596
|
readonly DataReaders: IList_1<SplitQueryDataReaderContext | undefined>;
|
|
1595
|
-
HasNext: Nullable_1<System_Internal.Boolean>;
|
|
1597
|
+
get HasNext(): Nullable_1<System_Internal.Boolean>;
|
|
1598
|
+
set HasNext(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
1596
1599
|
readonly ResultContext: ResultContext;
|
|
1597
1600
|
SetDataReader(collectionId: int, relationalDataReader: RelationalDataReader): void;
|
|
1598
1601
|
SetSplitQueryCollectionContext(collectionId: int, splitQueryCollectionContext: SplitQueryCollectionContext): void;
|
|
@@ -33,12 +33,14 @@ export interface DatabaseColumn$instance extends Annotatable {
|
|
|
33
33
|
get DefaultValueSql(): string | undefined;
|
|
34
34
|
set DefaultValueSql(value: string | undefined);
|
|
35
35
|
IsNullable: boolean;
|
|
36
|
-
IsStored: Nullable_1<System_Internal.Boolean>;
|
|
36
|
+
get IsStored(): Nullable_1<System_Internal.Boolean>;
|
|
37
|
+
set IsStored(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
37
38
|
Name: string;
|
|
38
39
|
get StoreType(): string | undefined;
|
|
39
40
|
set StoreType(value: string | undefined);
|
|
40
41
|
Table: DatabaseTable;
|
|
41
|
-
ValueGenerated: Nullable_1<ValueGenerated>;
|
|
42
|
+
get ValueGenerated(): Nullable_1<ValueGenerated>;
|
|
43
|
+
set ValueGenerated(value: Nullable_1<ValueGenerated> | ValueGenerated);
|
|
42
44
|
ToString(): string;
|
|
43
45
|
}
|
|
44
46
|
|
|
@@ -67,7 +69,8 @@ export interface DatabaseForeignKey$instance extends Annotatable {
|
|
|
67
69
|
readonly Columns: IList_1<DatabaseColumn>;
|
|
68
70
|
get Name(): string | undefined;
|
|
69
71
|
set Name(value: string | undefined);
|
|
70
|
-
OnDelete: Nullable_1<ReferentialAction>;
|
|
72
|
+
get OnDelete(): Nullable_1<ReferentialAction>;
|
|
73
|
+
set OnDelete(value: Nullable_1<ReferentialAction> | ReferentialAction);
|
|
71
74
|
readonly PrincipalColumns: IList_1<DatabaseColumn>;
|
|
72
75
|
PrincipalTable: DatabaseTable;
|
|
73
76
|
Table: DatabaseTable;
|
|
@@ -193,14 +196,19 @@ export interface DatabaseSequence$instance extends Annotatable {
|
|
|
193
196
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
|
|
194
197
|
|
|
195
198
|
Database: DatabaseModel;
|
|
196
|
-
IncrementBy: Nullable_1<System_Internal.Int32>;
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
199
|
+
get IncrementBy(): Nullable_1<System_Internal.Int32>;
|
|
200
|
+
set IncrementBy(value: Nullable_1<System_Internal.Int32> | int);
|
|
201
|
+
get IsCyclic(): Nullable_1<System_Internal.Boolean>;
|
|
202
|
+
set IsCyclic(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
203
|
+
get MaxValue(): Nullable_1<System_Internal.Int64>;
|
|
204
|
+
set MaxValue(value: Nullable_1<System_Internal.Int64> | long);
|
|
205
|
+
get MinValue(): Nullable_1<System_Internal.Int64>;
|
|
206
|
+
set MinValue(value: Nullable_1<System_Internal.Int64> | long);
|
|
200
207
|
Name: string;
|
|
201
208
|
get Schema(): string | undefined;
|
|
202
209
|
set Schema(value: string | undefined);
|
|
203
|
-
StartValue: Nullable_1<System_Internal.Int64>;
|
|
210
|
+
get StartValue(): Nullable_1<System_Internal.Int64>;
|
|
211
|
+
set StartValue(value: Nullable_1<System_Internal.Int64> | long);
|
|
204
212
|
get StoreType(): string | undefined;
|
|
205
213
|
set StoreType(value: string | undefined);
|
|
206
214
|
ToString(): string;
|
|
@@ -254,7 +254,8 @@ export interface IRelationalConnection$instance extends IRelationalTransactionMa
|
|
|
254
254
|
DbConnection: DbConnection;
|
|
255
255
|
readonly Context: DbContext;
|
|
256
256
|
readonly ConnectionId: Guid;
|
|
257
|
-
CommandTimeout: Nullable_1<System_Internal.Int32>;
|
|
257
|
+
get CommandTimeout(): Nullable_1<System_Internal.Int32>;
|
|
258
|
+
set CommandTimeout(value: Nullable_1<System_Internal.Int32> | int);
|
|
258
259
|
readonly CurrentTransaction: IDbContextTransaction | undefined;
|
|
259
260
|
BeginTransaction(): IDbContextTransaction;
|
|
260
261
|
BeginTransaction(isolationLevel: IsolationLevel): IDbContextTransaction;
|
|
@@ -494,19 +495,26 @@ export interface RelationalTypeMappingInfo$instance {
|
|
|
494
495
|
get ClrType(): Type | undefined;
|
|
495
496
|
set ClrType(value: Type | undefined);
|
|
496
497
|
readonly CoreTypeMappingInfo: TypeMappingInfo;
|
|
497
|
-
DbType: Nullable_1<DbType>;
|
|
498
|
+
get DbType(): Nullable_1<DbType>;
|
|
499
|
+
set DbType(value: Nullable_1<DbType> | DbType);
|
|
498
500
|
get ElementTypeMapping(): RelationalTypeMapping | undefined;
|
|
499
501
|
set ElementTypeMapping(value: RelationalTypeMapping | undefined);
|
|
500
|
-
IsFixedLength: Nullable_1<System_Internal.Boolean>;
|
|
502
|
+
get IsFixedLength(): Nullable_1<System_Internal.Boolean>;
|
|
503
|
+
set IsFixedLength(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
501
504
|
IsKey: boolean;
|
|
502
505
|
IsKeyOrIndex: boolean;
|
|
503
|
-
IsRowVersion: Nullable_1<System_Internal.Boolean>;
|
|
504
|
-
|
|
506
|
+
get IsRowVersion(): Nullable_1<System_Internal.Boolean>;
|
|
507
|
+
set IsRowVersion(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
508
|
+
get IsUnicode(): Nullable_1<System_Internal.Boolean>;
|
|
509
|
+
set IsUnicode(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
505
510
|
get JsonValueReaderWriter(): JsonValueReaderWriter | undefined;
|
|
506
511
|
set JsonValueReaderWriter(value: JsonValueReaderWriter | undefined);
|
|
507
|
-
Precision: Nullable_1<System_Internal.Int32>;
|
|
508
|
-
|
|
509
|
-
|
|
512
|
+
get Precision(): Nullable_1<System_Internal.Int32>;
|
|
513
|
+
set Precision(value: Nullable_1<System_Internal.Int32> | int);
|
|
514
|
+
get Scale(): Nullable_1<System_Internal.Int32>;
|
|
515
|
+
set Scale(value: Nullable_1<System_Internal.Int32> | int);
|
|
516
|
+
get Size(): Nullable_1<System_Internal.Int32>;
|
|
517
|
+
set Size(value: Nullable_1<System_Internal.Int32> | int);
|
|
510
518
|
get StoreTypeName(): string | undefined;
|
|
511
519
|
set StoreTypeName(value: string | undefined);
|
|
512
520
|
get StoreTypeNameBase(): string | undefined;
|
|
@@ -544,13 +552,18 @@ export interface TypeMappingInfo$instance {
|
|
|
544
552
|
set ElementTypeMapping(value: CoreTypeMapping | undefined);
|
|
545
553
|
IsKey: boolean;
|
|
546
554
|
IsKeyOrIndex: boolean;
|
|
547
|
-
IsRowVersion: Nullable_1<System_Internal.Boolean>;
|
|
548
|
-
|
|
555
|
+
get IsRowVersion(): Nullable_1<System_Internal.Boolean>;
|
|
556
|
+
set IsRowVersion(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
557
|
+
get IsUnicode(): Nullable_1<System_Internal.Boolean>;
|
|
558
|
+
set IsUnicode(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
549
559
|
get JsonValueReaderWriter(): JsonValueReaderWriter | undefined;
|
|
550
560
|
set JsonValueReaderWriter(value: JsonValueReaderWriter | undefined);
|
|
551
|
-
Precision: Nullable_1<System_Internal.Int32>;
|
|
552
|
-
|
|
553
|
-
|
|
561
|
+
get Precision(): Nullable_1<System_Internal.Int32>;
|
|
562
|
+
set Precision(value: Nullable_1<System_Internal.Int32> | int);
|
|
563
|
+
get Scale(): Nullable_1<System_Internal.Int32>;
|
|
564
|
+
set Scale(value: Nullable_1<System_Internal.Int32> | int);
|
|
565
|
+
get Size(): Nullable_1<System_Internal.Int32>;
|
|
566
|
+
set Size(value: Nullable_1<System_Internal.Int32> | int);
|
|
554
567
|
Equals(obj: unknown): boolean;
|
|
555
568
|
Equals(other: TypeMappingInfo): boolean;
|
|
556
569
|
GetHashCode(): int;
|
|
@@ -1306,7 +1319,8 @@ export interface RelationalConnection$instance {
|
|
|
1306
1319
|
readonly __tsonic_iface_System_IAsyncDisposable: never;
|
|
1307
1320
|
readonly __tsonic_iface_System_IDisposable: never;
|
|
1308
1321
|
|
|
1309
|
-
CommandTimeout: Nullable_1<System_Internal.Int32>;
|
|
1322
|
+
get CommandTimeout(): Nullable_1<System_Internal.Int32>;
|
|
1323
|
+
set CommandTimeout(value: Nullable_1<System_Internal.Int32> | int);
|
|
1310
1324
|
readonly ConnectionId: Guid;
|
|
1311
1325
|
get ConnectionString(): string | undefined;
|
|
1312
1326
|
set ConnectionString(value: string | undefined);
|
|
@@ -249,7 +249,8 @@ export interface ColumnModificationParameters$instance {
|
|
|
249
249
|
set GenerateParameterName(value: Func_1<System_Internal.String> | undefined);
|
|
250
250
|
IsCondition: boolean;
|
|
251
251
|
IsKey: boolean;
|
|
252
|
-
IsNullable: Nullable_1<System_Internal.Boolean>;
|
|
252
|
+
get IsNullable(): Nullable_1<System_Internal.Boolean>;
|
|
253
|
+
set IsNullable(value: Nullable_1<System_Internal.Boolean> | boolean);
|
|
253
254
|
IsRead: boolean;
|
|
254
255
|
IsWrite: boolean;
|
|
255
256
|
get JsonPath(): string | undefined;
|
|
@@ -397,6 +397,7 @@ export interface __Ext_Microsoft_EntityFrameworkCore_IndexBuilder {
|
|
|
397
397
|
}
|
|
398
398
|
|
|
399
399
|
export interface __Ext_Microsoft_EntityFrameworkCore_IndexBuilder_1<T> {
|
|
400
|
+
HasName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder>;
|
|
400
401
|
HasDatabaseName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder_1<T>>;
|
|
401
402
|
HasFilter(sql: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder_1<T>>;
|
|
402
403
|
}
|
|
@@ -606,6 +607,28 @@ export interface __Ext_Microsoft_EntityFrameworkCore_IConventionElementType {
|
|
|
606
607
|
}
|
|
607
608
|
|
|
608
609
|
export interface __Ext_Microsoft_EntityFrameworkCore_IConventionEntityType {
|
|
610
|
+
GetContainerColumnName(): Rewrap<this, string | undefined>;
|
|
611
|
+
GetContainerColumnType(): Rewrap<this, string | undefined>;
|
|
612
|
+
GetTableName(): Rewrap<this, string | undefined>;
|
|
613
|
+
GetDefaultTableName(truncate?: boolean): Rewrap<this, string | undefined>;
|
|
614
|
+
GetSchema(): Rewrap<this, string | undefined>;
|
|
615
|
+
GetDefaultSchema(): Rewrap<this, string | undefined>;
|
|
616
|
+
GetSchemaQualifiedTableName(): Rewrap<this, string | undefined>;
|
|
617
|
+
GetSchemaQualifiedViewName(): Rewrap<this, string | undefined>;
|
|
618
|
+
GetViewName(): Rewrap<this, string | undefined>;
|
|
619
|
+
GetDefaultViewName(): Rewrap<this, string | undefined>;
|
|
620
|
+
GetViewSchema(): Rewrap<this, string | undefined>;
|
|
621
|
+
GetDefaultViewSchema(): Rewrap<this, string | undefined>;
|
|
622
|
+
GetDefaultSqlQueryName(): Rewrap<this, string>;
|
|
623
|
+
GetSqlQuery(): Rewrap<this, string | undefined>;
|
|
624
|
+
GetFunctionName(): Rewrap<this, string | undefined>;
|
|
625
|
+
GetComment(): Rewrap<this, string | undefined>;
|
|
626
|
+
IsTableExcludedFromMigrations(): Rewrap<this, boolean>;
|
|
627
|
+
IsTableExcludedFromMigrations(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, boolean>;
|
|
628
|
+
GetMappingStrategy(): Rewrap<this, string | undefined>;
|
|
629
|
+
IsMappedToJson(): Rewrap<this, boolean>;
|
|
630
|
+
GetContainerColumnTypeMapping(): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping | undefined>;
|
|
631
|
+
GetJsonPropertyName(): Rewrap<this, string | undefined>;
|
|
609
632
|
SetTableName(name: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
|
|
610
633
|
GetTableNameConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
|
|
611
634
|
SetSchema(value: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
|
|
@@ -656,12 +679,23 @@ export interface __Ext_Microsoft_EntityFrameworkCore_IConventionEntityType {
|
|
|
656
679
|
}
|
|
657
680
|
|
|
658
681
|
export interface __Ext_Microsoft_EntityFrameworkCore_IConventionForeignKey {
|
|
682
|
+
GetConstraintName(): Rewrap<this, string | undefined>;
|
|
683
|
+
GetConstraintName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, principalStoreObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
684
|
+
GetDefaultName(): Rewrap<this, string | undefined>;
|
|
685
|
+
GetDefaultName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, principalStoreObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
686
|
+
IsRowInternal(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, boolean>;
|
|
659
687
|
SetConstraintName(value: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
|
|
660
688
|
GetConstraintNameConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
|
|
661
689
|
FindSharedObjectRootForeignKey(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionForeignKey | undefined>;
|
|
662
690
|
}
|
|
663
691
|
|
|
664
692
|
export interface __Ext_Microsoft_EntityFrameworkCore_IConventionIndex {
|
|
693
|
+
GetDatabaseName(): Rewrap<this, string | undefined>;
|
|
694
|
+
GetDatabaseName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
695
|
+
GetDefaultDatabaseName(): Rewrap<this, string | undefined>;
|
|
696
|
+
GetDefaultDatabaseName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
697
|
+
GetFilter(): Rewrap<this, string | undefined>;
|
|
698
|
+
GetFilter(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
665
699
|
SetDatabaseName(name: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
|
|
666
700
|
GetDatabaseNameConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
|
|
667
701
|
SetFilter(value: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
|
|
@@ -670,12 +704,20 @@ export interface __Ext_Microsoft_EntityFrameworkCore_IConventionIndex {
|
|
|
670
704
|
}
|
|
671
705
|
|
|
672
706
|
export interface __Ext_Microsoft_EntityFrameworkCore_IConventionKey {
|
|
707
|
+
GetName(): Rewrap<this, string | undefined>;
|
|
708
|
+
GetName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
709
|
+
GetDefaultName(): Rewrap<this, string | undefined>;
|
|
710
|
+
GetDefaultName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
673
711
|
SetName(name: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
|
|
674
712
|
GetNameConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
|
|
675
713
|
FindSharedObjectRootKey(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionKey | undefined>;
|
|
676
714
|
}
|
|
677
715
|
|
|
678
716
|
export interface __Ext_Microsoft_EntityFrameworkCore_IConventionModel {
|
|
717
|
+
GetDefaultSchema(): Rewrap<this, string | undefined>;
|
|
718
|
+
GetMaxIdentifierLength(): Rewrap<this, int>;
|
|
719
|
+
GetCollation(): Rewrap<this, string | undefined>;
|
|
720
|
+
AreNamedDefaultConstraintsUsed(): Rewrap<this, boolean>;
|
|
679
721
|
SetDefaultSchema(value: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
|
|
680
722
|
GetDefaultSchemaConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
|
|
681
723
|
SetMaxIdentifierLength(length: System.Nullable_1<System_Internal.Int32>, fromDataAnnotation?: boolean): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
|
|
@@ -698,6 +740,46 @@ export interface __Ext_Microsoft_EntityFrameworkCore_IConventionModel {
|
|
|
698
740
|
}
|
|
699
741
|
|
|
700
742
|
export interface __Ext_Microsoft_EntityFrameworkCore_IConventionProperty {
|
|
743
|
+
GetColumnBaseName(): Rewrap<this, string>;
|
|
744
|
+
GetColumnName(): Rewrap<this, string>;
|
|
745
|
+
GetColumnName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
746
|
+
GetDefaultColumnBaseName(): Rewrap<this, string>;
|
|
747
|
+
GetDefaultColumnName(): Rewrap<this, string>;
|
|
748
|
+
GetDefaultColumnName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
749
|
+
GetColumnOrder(): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
|
|
750
|
+
GetColumnOrder(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
|
|
751
|
+
GetColumnType(): Rewrap<this, string | undefined>;
|
|
752
|
+
GetColumnType(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
753
|
+
GetDefaultValueSql(): Rewrap<this, string | undefined>;
|
|
754
|
+
GetDefaultValueSql(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
755
|
+
GetComputedColumnSql(): Rewrap<this, string | undefined>;
|
|
756
|
+
GetComputedColumnSql(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
757
|
+
GetIsStored(): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
|
|
758
|
+
GetIsStored(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
|
|
759
|
+
GetDefaultValue(): Rewrap<this, unknown | undefined>;
|
|
760
|
+
TryGetDefaultValue(defaultValue: unknown): Rewrap<this, boolean>;
|
|
761
|
+
GetDefaultValue(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, unknown | undefined>;
|
|
762
|
+
TryGetDefaultValue(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, defaultValue: unknown): Rewrap<this, boolean>;
|
|
763
|
+
GetMaxLength(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
|
|
764
|
+
GetPrecision(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
|
|
765
|
+
GetScale(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
|
|
766
|
+
IsUnicode(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
|
|
767
|
+
IsFixedLength(): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
|
|
768
|
+
IsFixedLength(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
|
|
769
|
+
IsColumnNullable(): Rewrap<this, boolean>;
|
|
770
|
+
IsColumnNullable(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, boolean>;
|
|
771
|
+
GetComment(): Rewrap<this, string | undefined>;
|
|
772
|
+
GetComment(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
773
|
+
GetCollation(): Rewrap<this, string | undefined>;
|
|
774
|
+
GetCollation(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
775
|
+
GetRelationalTypeMapping(): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping>;
|
|
776
|
+
FindRelationalTypeMapping(): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping | undefined>;
|
|
777
|
+
FindRelationalTypeMapping(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping | undefined>;
|
|
778
|
+
GetMappedStoreObjects(storeObjectType: Microsoft_EntityFrameworkCore_Metadata.StoreObjectType): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier>>;
|
|
779
|
+
GetJsonPropertyName(): Rewrap<this, string | undefined>;
|
|
780
|
+
GetDefaultConstraintName(): Rewrap<this, string | undefined>;
|
|
781
|
+
GetDefaultConstraintName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
782
|
+
GetDefaultDefaultConstraintName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string>;
|
|
701
783
|
SetColumnName(name: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
|
|
702
784
|
SetColumnName(name: string, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
|
|
703
785
|
GetColumnNameConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
|
|
@@ -748,10 +830,36 @@ export interface __Ext_Microsoft_EntityFrameworkCore_IConventionTypeBase {
|
|
|
748
830
|
}
|
|
749
831
|
|
|
750
832
|
export interface __Ext_Microsoft_EntityFrameworkCore_IElementType {
|
|
833
|
+
IsFixedLength(): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
|
|
834
|
+
IsFixedLength(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
|
|
835
|
+
GetRelationalTypeMapping(): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping>;
|
|
836
|
+
FindRelationalTypeMapping(): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping | undefined>;
|
|
751
837
|
GetStoreType(): Rewrap<this, string>;
|
|
752
838
|
}
|
|
753
839
|
|
|
754
840
|
export interface __Ext_Microsoft_EntityFrameworkCore_IEntityType {
|
|
841
|
+
GetContainerColumnName(): Rewrap<this, string | undefined>;
|
|
842
|
+
GetContainerColumnType(): Rewrap<this, string | undefined>;
|
|
843
|
+
GetTableName(): Rewrap<this, string | undefined>;
|
|
844
|
+
GetDefaultTableName(truncate?: boolean): Rewrap<this, string | undefined>;
|
|
845
|
+
GetSchema(): Rewrap<this, string | undefined>;
|
|
846
|
+
GetDefaultSchema(): Rewrap<this, string | undefined>;
|
|
847
|
+
GetSchemaQualifiedTableName(): Rewrap<this, string | undefined>;
|
|
848
|
+
GetSchemaQualifiedViewName(): Rewrap<this, string | undefined>;
|
|
849
|
+
GetViewName(): Rewrap<this, string | undefined>;
|
|
850
|
+
GetDefaultViewName(): Rewrap<this, string | undefined>;
|
|
851
|
+
GetViewSchema(): Rewrap<this, string | undefined>;
|
|
852
|
+
GetDefaultViewSchema(): Rewrap<this, string | undefined>;
|
|
853
|
+
GetDefaultSqlQueryName(): Rewrap<this, string>;
|
|
854
|
+
GetSqlQuery(): Rewrap<this, string | undefined>;
|
|
855
|
+
GetFunctionName(): Rewrap<this, string | undefined>;
|
|
856
|
+
GetComment(): Rewrap<this, string | undefined>;
|
|
857
|
+
IsTableExcludedFromMigrations(): Rewrap<this, boolean>;
|
|
858
|
+
IsTableExcludedFromMigrations(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, boolean>;
|
|
859
|
+
GetMappingStrategy(): Rewrap<this, string | undefined>;
|
|
860
|
+
IsMappedToJson(): Rewrap<this, boolean>;
|
|
861
|
+
GetContainerColumnTypeMapping(): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping | undefined>;
|
|
862
|
+
GetJsonPropertyName(): Rewrap<this, string | undefined>;
|
|
755
863
|
GetDeleteStoredProcedure(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IStoredProcedure | undefined>;
|
|
756
864
|
GetInsertStoredProcedure(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IStoredProcedure | undefined>;
|
|
757
865
|
GetUpdateStoredProcedure(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IStoredProcedure | undefined>;
|
|
@@ -765,21 +873,40 @@ export interface __Ext_Microsoft_EntityFrameworkCore_IEntityType {
|
|
|
765
873
|
}
|
|
766
874
|
|
|
767
875
|
export interface __Ext_Microsoft_EntityFrameworkCore_IForeignKey {
|
|
876
|
+
GetConstraintName(): Rewrap<this, string | undefined>;
|
|
877
|
+
GetConstraintName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, principalStoreObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
878
|
+
GetDefaultName(): Rewrap<this, string | undefined>;
|
|
879
|
+
GetDefaultName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, principalStoreObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
880
|
+
IsRowInternal(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, boolean>;
|
|
768
881
|
GetMappedConstraints(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IForeignKeyConstraint>>;
|
|
769
882
|
FindSharedObjectRootForeignKey(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IForeignKey | undefined>;
|
|
770
883
|
}
|
|
771
884
|
|
|
772
885
|
export interface __Ext_Microsoft_EntityFrameworkCore_IIndex {
|
|
886
|
+
GetDatabaseName(): Rewrap<this, string | undefined>;
|
|
887
|
+
GetDatabaseName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
888
|
+
GetDefaultDatabaseName(): Rewrap<this, string | undefined>;
|
|
889
|
+
GetDefaultDatabaseName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
890
|
+
GetFilter(): Rewrap<this, string | undefined>;
|
|
891
|
+
GetFilter(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
773
892
|
GetMappedTableIndexes(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.ITableIndex>>;
|
|
774
893
|
FindSharedObjectRootIndex(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IIndex | undefined>;
|
|
775
894
|
}
|
|
776
895
|
|
|
777
896
|
export interface __Ext_Microsoft_EntityFrameworkCore_IKey {
|
|
897
|
+
GetName(): Rewrap<this, string | undefined>;
|
|
898
|
+
GetName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
899
|
+
GetDefaultName(): Rewrap<this, string | undefined>;
|
|
900
|
+
GetDefaultName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
778
901
|
GetMappedConstraints(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IUniqueConstraint>>;
|
|
779
902
|
FindSharedObjectRootKey(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IKey | undefined>;
|
|
780
903
|
}
|
|
781
904
|
|
|
782
905
|
export interface __Ext_Microsoft_EntityFrameworkCore_IModel {
|
|
906
|
+
GetDefaultSchema(): Rewrap<this, string | undefined>;
|
|
907
|
+
GetMaxIdentifierLength(): Rewrap<this, int>;
|
|
908
|
+
GetCollation(): Rewrap<this, string | undefined>;
|
|
909
|
+
AreNamedDefaultConstraintsUsed(): Rewrap<this, boolean>;
|
|
783
910
|
GetRelationalModel(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IRelationalModel>;
|
|
784
911
|
FindSequence(name: string, schema?: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.ISequence | undefined>;
|
|
785
912
|
GetSequences(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.ISequence>>;
|
|
@@ -798,6 +925,28 @@ export interface __Ext_Microsoft_EntityFrameworkCore_IMutableElementType {
|
|
|
798
925
|
}
|
|
799
926
|
|
|
800
927
|
export interface __Ext_Microsoft_EntityFrameworkCore_IMutableEntityType {
|
|
928
|
+
GetContainerColumnName(): Rewrap<this, string | undefined>;
|
|
929
|
+
GetContainerColumnType(): Rewrap<this, string | undefined>;
|
|
930
|
+
GetTableName(): Rewrap<this, string | undefined>;
|
|
931
|
+
GetDefaultTableName(truncate?: boolean): Rewrap<this, string | undefined>;
|
|
932
|
+
GetSchema(): Rewrap<this, string | undefined>;
|
|
933
|
+
GetDefaultSchema(): Rewrap<this, string | undefined>;
|
|
934
|
+
GetSchemaQualifiedTableName(): Rewrap<this, string | undefined>;
|
|
935
|
+
GetSchemaQualifiedViewName(): Rewrap<this, string | undefined>;
|
|
936
|
+
GetViewName(): Rewrap<this, string | undefined>;
|
|
937
|
+
GetDefaultViewName(): Rewrap<this, string | undefined>;
|
|
938
|
+
GetViewSchema(): Rewrap<this, string | undefined>;
|
|
939
|
+
GetDefaultViewSchema(): Rewrap<this, string | undefined>;
|
|
940
|
+
GetDefaultSqlQueryName(): Rewrap<this, string>;
|
|
941
|
+
GetSqlQuery(): Rewrap<this, string | undefined>;
|
|
942
|
+
GetFunctionName(): Rewrap<this, string | undefined>;
|
|
943
|
+
GetComment(): Rewrap<this, string | undefined>;
|
|
944
|
+
IsTableExcludedFromMigrations(): Rewrap<this, boolean>;
|
|
945
|
+
IsTableExcludedFromMigrations(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, boolean>;
|
|
946
|
+
GetMappingStrategy(): Rewrap<this, string | undefined>;
|
|
947
|
+
IsMappedToJson(): Rewrap<this, boolean>;
|
|
948
|
+
GetContainerColumnTypeMapping(): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping | undefined>;
|
|
949
|
+
GetJsonPropertyName(): Rewrap<this, string | undefined>;
|
|
801
950
|
SetTableName(name: string): Rewrap<this, void>;
|
|
802
951
|
SetSchema(value: string): Rewrap<this, void>;
|
|
803
952
|
SetViewName(name: string): Rewrap<this, void>;
|
|
@@ -833,22 +982,41 @@ export interface __Ext_Microsoft_EntityFrameworkCore_IMutableEntityType {
|
|
|
833
982
|
}
|
|
834
983
|
|
|
835
984
|
export interface __Ext_Microsoft_EntityFrameworkCore_IMutableForeignKey {
|
|
985
|
+
GetConstraintName(): Rewrap<this, string | undefined>;
|
|
986
|
+
GetConstraintName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, principalStoreObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
987
|
+
GetDefaultName(): Rewrap<this, string | undefined>;
|
|
988
|
+
GetDefaultName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, principalStoreObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
989
|
+
IsRowInternal(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, boolean>;
|
|
836
990
|
SetConstraintName(value: string): Rewrap<this, void>;
|
|
837
991
|
FindSharedObjectRootForeignKey(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableForeignKey | undefined>;
|
|
838
992
|
}
|
|
839
993
|
|
|
840
994
|
export interface __Ext_Microsoft_EntityFrameworkCore_IMutableIndex {
|
|
995
|
+
GetDatabaseName(): Rewrap<this, string | undefined>;
|
|
996
|
+
GetDatabaseName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
997
|
+
GetDefaultDatabaseName(): Rewrap<this, string | undefined>;
|
|
998
|
+
GetDefaultDatabaseName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
999
|
+
GetFilter(): Rewrap<this, string | undefined>;
|
|
1000
|
+
GetFilter(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
841
1001
|
SetDatabaseName(name: string): Rewrap<this, void>;
|
|
842
1002
|
SetFilter(value: string): Rewrap<this, void>;
|
|
843
1003
|
FindSharedObjectRootIndex(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableIndex | undefined>;
|
|
844
1004
|
}
|
|
845
1005
|
|
|
846
1006
|
export interface __Ext_Microsoft_EntityFrameworkCore_IMutableKey {
|
|
1007
|
+
GetName(): Rewrap<this, string | undefined>;
|
|
1008
|
+
GetName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
1009
|
+
GetDefaultName(): Rewrap<this, string | undefined>;
|
|
1010
|
+
GetDefaultName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
847
1011
|
SetName(name: string): Rewrap<this, void>;
|
|
848
1012
|
FindSharedObjectRootKey(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableKey | undefined>;
|
|
849
1013
|
}
|
|
850
1014
|
|
|
851
1015
|
export interface __Ext_Microsoft_EntityFrameworkCore_IMutableModel {
|
|
1016
|
+
GetDefaultSchema(): Rewrap<this, string | undefined>;
|
|
1017
|
+
GetMaxIdentifierLength(): Rewrap<this, int>;
|
|
1018
|
+
GetCollation(): Rewrap<this, string | undefined>;
|
|
1019
|
+
AreNamedDefaultConstraintsUsed(): Rewrap<this, boolean>;
|
|
852
1020
|
SetDefaultSchema(value: string): Rewrap<this, void>;
|
|
853
1021
|
SetMaxIdentifierLength(length: System.Nullable_1<System_Internal.Int32>): Rewrap<this, void>;
|
|
854
1022
|
FindSequence(name: string, schema?: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableSequence | undefined>;
|
|
@@ -867,6 +1035,46 @@ export interface __Ext_Microsoft_EntityFrameworkCore_IMutableModel {
|
|
|
867
1035
|
}
|
|
868
1036
|
|
|
869
1037
|
export interface __Ext_Microsoft_EntityFrameworkCore_IMutableProperty {
|
|
1038
|
+
GetColumnBaseName(): Rewrap<this, string>;
|
|
1039
|
+
GetColumnName(): Rewrap<this, string>;
|
|
1040
|
+
GetColumnName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
1041
|
+
GetDefaultColumnBaseName(): Rewrap<this, string>;
|
|
1042
|
+
GetDefaultColumnName(): Rewrap<this, string>;
|
|
1043
|
+
GetDefaultColumnName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
1044
|
+
GetColumnOrder(): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
|
|
1045
|
+
GetColumnOrder(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
|
|
1046
|
+
GetColumnType(): Rewrap<this, string | undefined>;
|
|
1047
|
+
GetColumnType(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
1048
|
+
GetDefaultValueSql(): Rewrap<this, string | undefined>;
|
|
1049
|
+
GetDefaultValueSql(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
1050
|
+
GetComputedColumnSql(): Rewrap<this, string | undefined>;
|
|
1051
|
+
GetComputedColumnSql(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
1052
|
+
GetIsStored(): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
|
|
1053
|
+
GetIsStored(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
|
|
1054
|
+
GetDefaultValue(): Rewrap<this, unknown | undefined>;
|
|
1055
|
+
TryGetDefaultValue(defaultValue: unknown): Rewrap<this, boolean>;
|
|
1056
|
+
GetDefaultValue(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, unknown | undefined>;
|
|
1057
|
+
TryGetDefaultValue(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, defaultValue: unknown): Rewrap<this, boolean>;
|
|
1058
|
+
GetMaxLength(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
|
|
1059
|
+
GetPrecision(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
|
|
1060
|
+
GetScale(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
|
|
1061
|
+
IsUnicode(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
|
|
1062
|
+
IsFixedLength(): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
|
|
1063
|
+
IsFixedLength(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
|
|
1064
|
+
IsColumnNullable(): Rewrap<this, boolean>;
|
|
1065
|
+
IsColumnNullable(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, boolean>;
|
|
1066
|
+
GetComment(): Rewrap<this, string | undefined>;
|
|
1067
|
+
GetComment(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
1068
|
+
GetCollation(): Rewrap<this, string | undefined>;
|
|
1069
|
+
GetCollation(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
1070
|
+
GetRelationalTypeMapping(): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping>;
|
|
1071
|
+
FindRelationalTypeMapping(): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping | undefined>;
|
|
1072
|
+
FindRelationalTypeMapping(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping | undefined>;
|
|
1073
|
+
GetMappedStoreObjects(storeObjectType: Microsoft_EntityFrameworkCore_Metadata.StoreObjectType): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier>>;
|
|
1074
|
+
GetJsonPropertyName(): Rewrap<this, string | undefined>;
|
|
1075
|
+
GetDefaultConstraintName(): Rewrap<this, string | undefined>;
|
|
1076
|
+
GetDefaultConstraintName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
1077
|
+
GetDefaultDefaultConstraintName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string>;
|
|
870
1078
|
SetColumnName(name: string): Rewrap<this, void>;
|
|
871
1079
|
SetColumnName(name: string, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, void>;
|
|
872
1080
|
SetColumnOrder(order: System.Nullable_1<System_Internal.Int32>): Rewrap<this, void>;
|
|
@@ -899,6 +1107,44 @@ export interface __Ext_Microsoft_EntityFrameworkCore_IMutableTypeBase {
|
|
|
899
1107
|
}
|
|
900
1108
|
|
|
901
1109
|
export interface __Ext_Microsoft_EntityFrameworkCore_IProperty {
|
|
1110
|
+
GetColumnBaseName(): Rewrap<this, string>;
|
|
1111
|
+
GetColumnName(): Rewrap<this, string>;
|
|
1112
|
+
GetColumnName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
1113
|
+
GetDefaultColumnBaseName(): Rewrap<this, string>;
|
|
1114
|
+
GetDefaultColumnName(): Rewrap<this, string>;
|
|
1115
|
+
GetDefaultColumnName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
1116
|
+
GetColumnOrder(): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
|
|
1117
|
+
GetColumnOrder(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
|
|
1118
|
+
GetDefaultValueSql(): Rewrap<this, string | undefined>;
|
|
1119
|
+
GetDefaultValueSql(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
1120
|
+
GetComputedColumnSql(): Rewrap<this, string | undefined>;
|
|
1121
|
+
GetComputedColumnSql(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
1122
|
+
GetIsStored(): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
|
|
1123
|
+
GetIsStored(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
|
|
1124
|
+
GetDefaultValue(): Rewrap<this, unknown | undefined>;
|
|
1125
|
+
TryGetDefaultValue(defaultValue: unknown): Rewrap<this, boolean>;
|
|
1126
|
+
GetDefaultValue(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, unknown | undefined>;
|
|
1127
|
+
TryGetDefaultValue(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, defaultValue: unknown): Rewrap<this, boolean>;
|
|
1128
|
+
GetMaxLength(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
|
|
1129
|
+
GetPrecision(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
|
|
1130
|
+
GetScale(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
|
|
1131
|
+
IsUnicode(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
|
|
1132
|
+
IsFixedLength(): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
|
|
1133
|
+
IsFixedLength(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
|
|
1134
|
+
IsColumnNullable(): Rewrap<this, boolean>;
|
|
1135
|
+
IsColumnNullable(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, boolean>;
|
|
1136
|
+
GetComment(): Rewrap<this, string | undefined>;
|
|
1137
|
+
GetComment(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
1138
|
+
GetCollation(): Rewrap<this, string | undefined>;
|
|
1139
|
+
GetCollation(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
1140
|
+
GetRelationalTypeMapping(): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping>;
|
|
1141
|
+
FindRelationalTypeMapping(): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping | undefined>;
|
|
1142
|
+
FindRelationalTypeMapping(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping | undefined>;
|
|
1143
|
+
GetMappedStoreObjects(storeObjectType: Microsoft_EntityFrameworkCore_Metadata.StoreObjectType): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier>>;
|
|
1144
|
+
GetJsonPropertyName(): Rewrap<this, string | undefined>;
|
|
1145
|
+
GetDefaultConstraintName(): Rewrap<this, string | undefined>;
|
|
1146
|
+
GetDefaultConstraintName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
1147
|
+
GetDefaultDefaultConstraintName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string>;
|
|
902
1148
|
GetColumnType(): Rewrap<this, string>;
|
|
903
1149
|
GetColumnType(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string>;
|
|
904
1150
|
GetDefaultColumnMappings(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IColumnMappingBase>>;
|
|
@@ -931,6 +1177,8 @@ export interface __Ext_Microsoft_EntityFrameworkCore_IReadOnlyElementType {
|
|
|
931
1177
|
}
|
|
932
1178
|
|
|
933
1179
|
export interface __Ext_Microsoft_EntityFrameworkCore_IReadOnlyEntityType {
|
|
1180
|
+
GetContainerColumnName(): Rewrap<this, string | undefined>;
|
|
1181
|
+
GetContainerColumnType(): Rewrap<this, string | undefined>;
|
|
934
1182
|
GetTableName(): Rewrap<this, string | undefined>;
|
|
935
1183
|
GetDefaultTableName(truncate?: boolean): Rewrap<this, string | undefined>;
|
|
936
1184
|
GetSchema(): Rewrap<this, string | undefined>;
|
|
@@ -1078,6 +1326,17 @@ export interface __Ext_Microsoft_EntityFrameworkCore_IReadOnlyTypeBase {
|
|
|
1078
1326
|
}
|
|
1079
1327
|
|
|
1080
1328
|
export interface __Ext_Microsoft_EntityFrameworkCore_ITypeBase {
|
|
1329
|
+
GetTableName(): Rewrap<this, string | undefined>;
|
|
1330
|
+
GetSchema(): Rewrap<this, string | undefined>;
|
|
1331
|
+
GetViewName(): Rewrap<this, string | undefined>;
|
|
1332
|
+
GetViewSchema(): Rewrap<this, string | undefined>;
|
|
1333
|
+
GetSqlQuery(): Rewrap<this, string | undefined>;
|
|
1334
|
+
GetFunctionName(): Rewrap<this, string | undefined>;
|
|
1335
|
+
GetMappingStrategy(): Rewrap<this, string | undefined>;
|
|
1336
|
+
IsMappedToJson(): Rewrap<this, boolean>;
|
|
1337
|
+
GetContainerColumnName(): Rewrap<this, string | undefined>;
|
|
1338
|
+
GetContainerColumnType(): Rewrap<this, string | undefined>;
|
|
1339
|
+
GetJsonPropertyName(): Rewrap<this, string | undefined>;
|
|
1081
1340
|
GetDefaultMappings(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.ITableMappingBase>>;
|
|
1082
1341
|
GetTableMappings(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.ITableMapping>>;
|
|
1083
1342
|
GetViewMappings(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IViewMapping>>;
|
|
@@ -1577,6 +1836,13 @@ export interface __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IComplexP
|
|
|
1577
1836
|
}
|
|
1578
1837
|
|
|
1579
1838
|
export interface __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IConventionEntityType {
|
|
1839
|
+
GetNavigationMemberInfo(navigationName: string): Rewrap<this, System_Reflection.MemberInfo>;
|
|
1840
|
+
IsOwned(): Rewrap<this, boolean>;
|
|
1841
|
+
FindInOwnershipPath(targetType: System.Type): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType | undefined>;
|
|
1842
|
+
IsInOwnershipPath(targetType: System.Type): Rewrap<this, boolean>;
|
|
1843
|
+
IsInOwnershipPath(targetType: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType): Rewrap<this, boolean>;
|
|
1844
|
+
FindDeclaredPrimaryKey(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlyKey | undefined>;
|
|
1845
|
+
FindDerivedNavigations(navigationName: string): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyNavigation>>;
|
|
1580
1846
|
FindDeclaredOwnership(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionForeignKey | undefined>;
|
|
1581
1847
|
GetStoreObjectConfigurationSource(type: Microsoft_EntityFrameworkCore_Metadata.StoreObjectType): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
|
|
1582
1848
|
}
|
|
@@ -1801,14 +2067,13 @@ export interface __Ext_System_Transactions_DatabaseFacade {
|
|
|
1801
2067
|
|
|
1802
2068
|
// Internal helper types for sticky extension scopes
|
|
1803
2069
|
type __TsonicExtMapOf<T> = T extends { __tsonic_ext?: infer M } ? M : {};
|
|
1804
|
-
type __TsonicMergeExtMaps<A, B> =
|
|
2070
|
+
type __TsonicMergeExtMaps<A, B> = A & B;
|
|
1805
2071
|
type __TsonicWithExt<TShape, K extends string, TApplier> = { __tsonic_ext?: __TsonicMergeExtMaps<__TsonicExtMapOf<TShape>, { [P in K]: TApplier }> };
|
|
1806
|
-
type __TsonicPreferExt<A, B> = Omit<A, keyof B> & B;
|
|
1807
2072
|
|
|
1808
2073
|
// Generic helper type for extension methods in namespace: Microsoft.EntityFrameworkCore
|
|
1809
2074
|
type __TsonicExtSurface_Microsoft_EntityFrameworkCore<TShape> =
|
|
1810
2075
|
(
|
|
1811
|
-
(TShape extends Microsoft_EntityFrameworkCore.DbFunctions ? __Ext_Microsoft_EntityFrameworkCore_DbFunctions : {}) & (TShape extends Microsoft_EntityFrameworkCore.DbSet_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_DbSet_1<T0> : {}) & (TShape extends Microsoft_EntityFrameworkCore.ModelBuilder ? __Ext_Microsoft_EntityFrameworkCore_ModelBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_ChangeTracking.ChangeTracker ? __Ext_Microsoft_EntityFrameworkCore_ChangeTracker : {}) & (TShape extends Microsoft_EntityFrameworkCore_Infrastructure.DatabaseFacade ? __Ext_Microsoft_EntityFrameworkCore_DatabaseFacade : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionComplexProperty ? __Ext_Microsoft_EntityFrameworkCore_IConventionComplexProperty : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionElementType ? __Ext_Microsoft_EntityFrameworkCore_IConventionElementType : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType ? __TsonicPreferExt<__TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_IReadOnlyTypeBase, __Ext_Microsoft_EntityFrameworkCore_IReadOnlyEntityType>, __Ext_Microsoft_EntityFrameworkCore_IConventionEntityType> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionForeignKey ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_IReadOnlyForeignKey, __Ext_Microsoft_EntityFrameworkCore_IConventionForeignKey> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionIndex ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_IReadOnlyIndex, __Ext_Microsoft_EntityFrameworkCore_IConventionIndex> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionKey ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_IReadOnlyKey, __Ext_Microsoft_EntityFrameworkCore_IConventionKey> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionModel ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_IReadOnlyModel, __Ext_Microsoft_EntityFrameworkCore_IConventionModel> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionProperty ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_IReadOnlyProperty, __Ext_Microsoft_EntityFrameworkCore_IConventionProperty> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionTrigger ? __Ext_Microsoft_EntityFrameworkCore_IConventionTrigger : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionTypeBase ? __Ext_Microsoft_EntityFrameworkCore_IConventionTypeBase : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IElementType ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_IReadOnlyElementType, __Ext_Microsoft_EntityFrameworkCore_IElementType> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IEntityType ? __TsonicPreferExt<__TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_IReadOnlyTypeBase, __Ext_Microsoft_EntityFrameworkCore_IReadOnlyEntityType>, __Ext_Microsoft_EntityFrameworkCore_IEntityType> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IForeignKey ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_IReadOnlyForeignKey, __Ext_Microsoft_EntityFrameworkCore_IForeignKey> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IIndex ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_IReadOnlyIndex, __Ext_Microsoft_EntityFrameworkCore_IIndex> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IKey ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_IReadOnlyKey, __Ext_Microsoft_EntityFrameworkCore_IKey> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IModel ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_IReadOnlyModel, __Ext_Microsoft_EntityFrameworkCore_IModel> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableComplexProperty ? __Ext_Microsoft_EntityFrameworkCore_IMutableComplexProperty : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyElementType ? (TShape extends Microsoft_EntityFrameworkCore_Metadata.IElementType ? {} : __Ext_Microsoft_EntityFrameworkCore_IReadOnlyElementType) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableElementType ? __Ext_Microsoft_EntityFrameworkCore_IMutableElementType : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableForeignKey ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_IReadOnlyForeignKey, __Ext_Microsoft_EntityFrameworkCore_IMutableForeignKey> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableIndex ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_IReadOnlyIndex, __Ext_Microsoft_EntityFrameworkCore_IMutableIndex> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableKey ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_IReadOnlyKey, __Ext_Microsoft_EntityFrameworkCore_IMutableKey> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableModel ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_IReadOnlyModel, __Ext_Microsoft_EntityFrameworkCore_IMutableModel> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableProperty ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_IReadOnlyProperty, __Ext_Microsoft_EntityFrameworkCore_IMutableProperty> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableTrigger ? __Ext_Microsoft_EntityFrameworkCore_IMutableTrigger : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableTypeBase ? __Ext_Microsoft_EntityFrameworkCore_IMutableTypeBase : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IProperty ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_IReadOnlyProperty, __Ext_Microsoft_EntityFrameworkCore_IProperty> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyComplexProperty ? __Ext_Microsoft_EntityFrameworkCore_IReadOnlyComplexProperty : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyTypeBase ? (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IEntityType ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableEntityType ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.ITypeBase ? {} : __Ext_Microsoft_EntityFrameworkCore_IReadOnlyTypeBase))))) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType ? (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IEntityType ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableEntityType ? {} : __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_IReadOnlyTypeBase, __Ext_Microsoft_EntityFrameworkCore_IReadOnlyEntityType>))) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableEntityType ? __TsonicPreferExt<__TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_IReadOnlyTypeBase, __Ext_Microsoft_EntityFrameworkCore_IReadOnlyEntityType>, __Ext_Microsoft_EntityFrameworkCore_IMutableEntityType> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyForeignKey ? (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionForeignKey ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IForeignKey ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableForeignKey ? {} : __Ext_Microsoft_EntityFrameworkCore_IReadOnlyForeignKey))) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyIndex ? (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionIndex ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IIndex ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableIndex ? {} : __Ext_Microsoft_EntityFrameworkCore_IReadOnlyIndex))) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyKey ? (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionKey ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IKey ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableKey ? {} : __Ext_Microsoft_EntityFrameworkCore_IReadOnlyKey))) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyModel ? (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionModel ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IModel ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableModel ? {} : __Ext_Microsoft_EntityFrameworkCore_IReadOnlyModel))) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty ? (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionProperty ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableProperty ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IProperty ? {} : __Ext_Microsoft_EntityFrameworkCore_IReadOnlyProperty))) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyTrigger ? __Ext_Microsoft_EntityFrameworkCore_IReadOnlyTrigger : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.ITypeBase ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_IReadOnlyTypeBase, __Ext_Microsoft_EntityFrameworkCore_ITypeBase> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionBuilder_1<infer _0> ? {} : __Ext_Microsoft_EntityFrameworkCore_ComplexCollectionBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionBuilder_1<infer T0> ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_ComplexCollectionBuilder, __Ext_Microsoft_EntityFrameworkCore_ComplexCollectionBuilder_1<T0>> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionTypePropertyBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionTypePropertyBuilder_1<infer _0> ? {} : __Ext_Microsoft_EntityFrameworkCore_ComplexCollectionTypePropertyBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionTypePropertyBuilder_1<infer T0> ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_ComplexCollectionTypePropertyBuilder, __Ext_Microsoft_EntityFrameworkCore_ComplexCollectionTypePropertyBuilder_1<T0>> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexPropertyBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexPropertyBuilder_1<infer _0> ? {} : __Ext_Microsoft_EntityFrameworkCore_ComplexPropertyBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexPropertyBuilder_1<infer T0> ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_ComplexPropertyBuilder, __Ext_Microsoft_EntityFrameworkCore_ComplexPropertyBuilder_1<T0>> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<infer _0> ? {} : __Ext_Microsoft_EntityFrameworkCore_ComplexTypePrimitiveCollectionBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<infer T0> ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_ComplexTypePrimitiveCollectionBuilder, __Ext_Microsoft_EntityFrameworkCore_ComplexTypePrimitiveCollectionBuilder_1<T0>> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<infer _0> ? {} : __Ext_Microsoft_EntityFrameworkCore_ComplexTypePropertyBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<infer T0> ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_ComplexTypePropertyBuilder, __Ext_Microsoft_EntityFrameworkCore_ComplexTypePropertyBuilder_1<T0>> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ElementTypeBuilder ? __Ext_Microsoft_EntityFrameworkCore_ElementTypeBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<infer _0> ? {} : __Ext_Microsoft_EntityFrameworkCore_EntityTypeBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<infer T0> ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_EntityTypeBuilder, __Ext_Microsoft_EntityFrameworkCore_EntityTypeBuilder_1<T0>> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionElementTypeBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionElementTypeBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionEntityTypeBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionForeignKeyBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionForeignKeyBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionIndexBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionIndexBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionKeyBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionKeyBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionModelBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionModelBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionPropertyBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionTriggerBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionTriggerBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder_1<infer _0> ? {} : __Ext_Microsoft_EntityFrameworkCore_IndexBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder_1<infer T0> ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_IndexBuilder, __Ext_Microsoft_EntityFrameworkCore_IndexBuilder_1<T0>> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.KeyBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.KeyBuilder_1<infer _0> ? {} : __Ext_Microsoft_EntityFrameworkCore_KeyBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.KeyBuilder_1<infer T0> ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_KeyBuilder, __Ext_Microsoft_EntityFrameworkCore_KeyBuilder_1<T0>> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<infer _0, infer _1> ? {} : __Ext_Microsoft_EntityFrameworkCore_OwnedNavigationBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<infer T0, infer T1> ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_OwnedNavigationBuilder, __Ext_Microsoft_EntityFrameworkCore_OwnedNavigationBuilder_2<T0, T1>> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.OwnershipBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.OwnershipBuilder_2<infer _0, infer _1> ? {} : __Ext_Microsoft_EntityFrameworkCore_OwnershipBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.OwnershipBuilder_2<infer T0, infer T1> ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_OwnershipBuilder, __Ext_Microsoft_EntityFrameworkCore_OwnershipBuilder_2<T0, T1>> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<infer _0> ? {} : __Ext_Microsoft_EntityFrameworkCore_PrimitiveCollectionBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<infer T0> ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_PrimitiveCollectionBuilder, __Ext_Microsoft_EntityFrameworkCore_PrimitiveCollectionBuilder_1<T0>> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PropertiesConfigurationBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PropertiesConfigurationBuilder_1<infer _0> ? {} : __Ext_Microsoft_EntityFrameworkCore_PropertiesConfigurationBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PropertiesConfigurationBuilder_1<infer T0> ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_PropertiesConfigurationBuilder, __Ext_Microsoft_EntityFrameworkCore_PropertiesConfigurationBuilder_1<T0>> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<infer _0> ? {} : __Ext_Microsoft_EntityFrameworkCore_PropertyBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<infer T0> ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_PropertyBuilder, __Ext_Microsoft_EntityFrameworkCore_PropertyBuilder_1<T0>> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ReferenceCollectionBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ReferenceCollectionBuilder_2<infer _0, infer _1> ? {} : __Ext_Microsoft_EntityFrameworkCore_ReferenceCollectionBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ReferenceCollectionBuilder_2<infer T0, infer T1> ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_ReferenceCollectionBuilder, __Ext_Microsoft_EntityFrameworkCore_ReferenceCollectionBuilder_2<T0, T1>> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ReferenceReferenceBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ReferenceReferenceBuilder_2<infer _0, infer _1> ? {} : __Ext_Microsoft_EntityFrameworkCore_ReferenceReferenceBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ReferenceReferenceBuilder_2<infer T0, infer T1> ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_ReferenceReferenceBuilder, __Ext_Microsoft_EntityFrameworkCore_ReferenceReferenceBuilder_2<T0, T1>> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.TypeMappingConfigurationBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.TypeMappingConfigurationBuilder_1<infer _0> ? {} : __Ext_Microsoft_EntityFrameworkCore_TypeMappingConfigurationBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.TypeMappingConfigurationBuilder_1<infer T0> ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_TypeMappingConfigurationBuilder, __Ext_Microsoft_EntityFrameworkCore_TypeMappingConfigurationBuilder_1<T0>> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Query.IIncludableQueryable_2<infer T0, infer T1> ? __Ext_Microsoft_EntityFrameworkCore_IIncludableQueryable_2<T0, T1> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Query_SqlExpressions.TableExpressionBase ? __Ext_Microsoft_EntityFrameworkCore_TableExpressionBase : {}) & (TShape extends Microsoft_EntityFrameworkCore_Storage.IExecutionStrategy ? __Ext_Microsoft_EntityFrameworkCore_IExecutionStrategy : {}) & (TShape extends System_Collections_Generic.IEnumerable_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_IEnumerable_1<T0> : {}) & (TShape extends System_Collections_ObjectModel.ObservableCollection_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_ObservableCollection_1<T0> : {}) & (TShape extends System_Linq.IQueryable ? __Ext_Microsoft_EntityFrameworkCore_IQueryable : {}) & (TShape extends System_Linq.IQueryable_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_IQueryable_1<T0> : {}) & (TShape extends (infer T)[] ? __Ext_Microsoft_EntityFrameworkCore_IEnumerable_1<T> : {})
|
|
2076
|
+
(TShape extends Microsoft_EntityFrameworkCore.DbFunctions ? __Ext_Microsoft_EntityFrameworkCore_DbFunctions : {}) & (TShape extends Microsoft_EntityFrameworkCore.DbSet_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_DbSet_1<T0> : {}) & (TShape extends Microsoft_EntityFrameworkCore.ModelBuilder ? __Ext_Microsoft_EntityFrameworkCore_ModelBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_ChangeTracking.ChangeTracker ? __Ext_Microsoft_EntityFrameworkCore_ChangeTracker : {}) & (TShape extends Microsoft_EntityFrameworkCore_Infrastructure.DatabaseFacade ? __Ext_Microsoft_EntityFrameworkCore_DatabaseFacade : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionComplexProperty ? __Ext_Microsoft_EntityFrameworkCore_IConventionComplexProperty : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionElementType ? __Ext_Microsoft_EntityFrameworkCore_IConventionElementType : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType ? __Ext_Microsoft_EntityFrameworkCore_IConventionEntityType : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionForeignKey ? __Ext_Microsoft_EntityFrameworkCore_IConventionForeignKey : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionIndex ? __Ext_Microsoft_EntityFrameworkCore_IConventionIndex : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionKey ? __Ext_Microsoft_EntityFrameworkCore_IConventionKey : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionModel ? __Ext_Microsoft_EntityFrameworkCore_IConventionModel : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionProperty ? __Ext_Microsoft_EntityFrameworkCore_IConventionProperty : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionTrigger ? __Ext_Microsoft_EntityFrameworkCore_IConventionTrigger : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionTypeBase ? __Ext_Microsoft_EntityFrameworkCore_IConventionTypeBase : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IElementType ? __Ext_Microsoft_EntityFrameworkCore_IElementType : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IEntityType ? __Ext_Microsoft_EntityFrameworkCore_IEntityType : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IForeignKey ? __Ext_Microsoft_EntityFrameworkCore_IForeignKey : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IIndex ? __Ext_Microsoft_EntityFrameworkCore_IIndex : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IKey ? __Ext_Microsoft_EntityFrameworkCore_IKey : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IModel ? __Ext_Microsoft_EntityFrameworkCore_IModel : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableComplexProperty ? __Ext_Microsoft_EntityFrameworkCore_IMutableComplexProperty : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableElementType ? __Ext_Microsoft_EntityFrameworkCore_IMutableElementType : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableEntityType ? __Ext_Microsoft_EntityFrameworkCore_IMutableEntityType : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableForeignKey ? __Ext_Microsoft_EntityFrameworkCore_IMutableForeignKey : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableIndex ? __Ext_Microsoft_EntityFrameworkCore_IMutableIndex : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableKey ? __Ext_Microsoft_EntityFrameworkCore_IMutableKey : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableModel ? __Ext_Microsoft_EntityFrameworkCore_IMutableModel : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableProperty ? __Ext_Microsoft_EntityFrameworkCore_IMutableProperty : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableTrigger ? __Ext_Microsoft_EntityFrameworkCore_IMutableTrigger : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableTypeBase ? __Ext_Microsoft_EntityFrameworkCore_IMutableTypeBase : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IProperty ? __Ext_Microsoft_EntityFrameworkCore_IProperty : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyComplexProperty ? __Ext_Microsoft_EntityFrameworkCore_IReadOnlyComplexProperty : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyElementType ? (TShape extends Microsoft_EntityFrameworkCore_Metadata.IElementType ? {} : __Ext_Microsoft_EntityFrameworkCore_IReadOnlyElementType) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType ? (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IEntityType ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableEntityType ? {} : __Ext_Microsoft_EntityFrameworkCore_IReadOnlyEntityType))) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyForeignKey ? (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionForeignKey ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IForeignKey ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableForeignKey ? {} : __Ext_Microsoft_EntityFrameworkCore_IReadOnlyForeignKey))) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyIndex ? (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionIndex ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IIndex ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableIndex ? {} : __Ext_Microsoft_EntityFrameworkCore_IReadOnlyIndex))) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyKey ? (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionKey ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IKey ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableKey ? {} : __Ext_Microsoft_EntityFrameworkCore_IReadOnlyKey))) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyModel ? (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionModel ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IModel ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableModel ? {} : __Ext_Microsoft_EntityFrameworkCore_IReadOnlyModel))) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty ? (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionProperty ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableProperty ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IProperty ? {} : __Ext_Microsoft_EntityFrameworkCore_IReadOnlyProperty))) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyTrigger ? __Ext_Microsoft_EntityFrameworkCore_IReadOnlyTrigger : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyTypeBase ? (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IEntityType ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableEntityType ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.ITypeBase ? {} : __Ext_Microsoft_EntityFrameworkCore_IReadOnlyTypeBase))))) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.ITypeBase ? __Ext_Microsoft_EntityFrameworkCore_ITypeBase : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionBuilder_1<infer _0> ? {} : __Ext_Microsoft_EntityFrameworkCore_ComplexCollectionBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_ComplexCollectionBuilder_1<T0> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionTypePropertyBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionTypePropertyBuilder_1<infer _0> ? {} : __Ext_Microsoft_EntityFrameworkCore_ComplexCollectionTypePropertyBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionTypePropertyBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_ComplexCollectionTypePropertyBuilder_1<T0> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexPropertyBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexPropertyBuilder_1<infer _0> ? {} : __Ext_Microsoft_EntityFrameworkCore_ComplexPropertyBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexPropertyBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_ComplexPropertyBuilder_1<T0> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<infer _0> ? {} : __Ext_Microsoft_EntityFrameworkCore_ComplexTypePrimitiveCollectionBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_ComplexTypePrimitiveCollectionBuilder_1<T0> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<infer _0> ? {} : __Ext_Microsoft_EntityFrameworkCore_ComplexTypePropertyBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_ComplexTypePropertyBuilder_1<T0> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ElementTypeBuilder ? __Ext_Microsoft_EntityFrameworkCore_ElementTypeBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<infer _0> ? {} : __Ext_Microsoft_EntityFrameworkCore_EntityTypeBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_EntityTypeBuilder_1<T0> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionElementTypeBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionElementTypeBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionEntityTypeBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionForeignKeyBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionForeignKeyBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionIndexBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionIndexBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionKeyBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionKeyBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionModelBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionModelBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionPropertyBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionTriggerBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionTriggerBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder_1<infer _0> ? {} : __Ext_Microsoft_EntityFrameworkCore_IndexBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_IndexBuilder_1<T0> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.KeyBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.KeyBuilder_1<infer _0> ? {} : __Ext_Microsoft_EntityFrameworkCore_KeyBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.KeyBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_KeyBuilder_1<T0> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<infer _0, infer _1> ? {} : __Ext_Microsoft_EntityFrameworkCore_OwnedNavigationBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<infer T0, infer T1> ? __Ext_Microsoft_EntityFrameworkCore_OwnedNavigationBuilder_2<T0, T1> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.OwnershipBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.OwnershipBuilder_2<infer _0, infer _1> ? {} : __Ext_Microsoft_EntityFrameworkCore_OwnershipBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.OwnershipBuilder_2<infer T0, infer T1> ? __Ext_Microsoft_EntityFrameworkCore_OwnershipBuilder_2<T0, T1> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<infer _0> ? {} : __Ext_Microsoft_EntityFrameworkCore_PrimitiveCollectionBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_PrimitiveCollectionBuilder_1<T0> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PropertiesConfigurationBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PropertiesConfigurationBuilder_1<infer _0> ? {} : __Ext_Microsoft_EntityFrameworkCore_PropertiesConfigurationBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PropertiesConfigurationBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_PropertiesConfigurationBuilder_1<T0> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<infer _0> ? {} : __Ext_Microsoft_EntityFrameworkCore_PropertyBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_PropertyBuilder_1<T0> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ReferenceCollectionBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ReferenceCollectionBuilder_2<infer _0, infer _1> ? {} : __Ext_Microsoft_EntityFrameworkCore_ReferenceCollectionBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ReferenceCollectionBuilder_2<infer T0, infer T1> ? __Ext_Microsoft_EntityFrameworkCore_ReferenceCollectionBuilder_2<T0, T1> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ReferenceReferenceBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ReferenceReferenceBuilder_2<infer _0, infer _1> ? {} : __Ext_Microsoft_EntityFrameworkCore_ReferenceReferenceBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ReferenceReferenceBuilder_2<infer T0, infer T1> ? __Ext_Microsoft_EntityFrameworkCore_ReferenceReferenceBuilder_2<T0, T1> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.TypeMappingConfigurationBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.TypeMappingConfigurationBuilder_1<infer _0> ? {} : __Ext_Microsoft_EntityFrameworkCore_TypeMappingConfigurationBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.TypeMappingConfigurationBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_TypeMappingConfigurationBuilder_1<T0> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Query.IIncludableQueryable_2<infer T0, infer T1> ? __Ext_Microsoft_EntityFrameworkCore_IIncludableQueryable_2<T0, T1> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Query_SqlExpressions.TableExpressionBase ? __Ext_Microsoft_EntityFrameworkCore_TableExpressionBase : {}) & (TShape extends Microsoft_EntityFrameworkCore_Storage.IExecutionStrategy ? __Ext_Microsoft_EntityFrameworkCore_IExecutionStrategy : {}) & (TShape extends System_Collections_Generic.IEnumerable_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_IEnumerable_1<T0> : {}) & (TShape extends System_Collections_ObjectModel.ObservableCollection_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_ObservableCollection_1<T0> : {}) & (TShape extends System_Linq.IQueryable ? __Ext_Microsoft_EntityFrameworkCore_IQueryable : {}) & (TShape extends System_Linq.IQueryable_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_IQueryable_1<T0> : {}) & (TShape extends (infer T)[] ? __Ext_Microsoft_EntityFrameworkCore_IEnumerable_1<T> : {})
|
|
1812
2077
|
);
|
|
1813
2078
|
|
|
1814
2079
|
interface __TsonicExtApplier_Microsoft_EntityFrameworkCore {
|
|
@@ -1952,7 +2217,7 @@ export type ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Conventions_
|
|
|
1952
2217
|
// Generic helper type for extension methods in namespace: Microsoft.EntityFrameworkCore.Metadata.Internal
|
|
1953
2218
|
type __TsonicExtSurface_Microsoft_EntityFrameworkCore_Metadata_Internal<TShape> =
|
|
1954
2219
|
(
|
|
1955
|
-
(TShape extends Microsoft_EntityFrameworkCore_Metadata.IComplexProperty ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IComplexProperty : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType ?
|
|
2220
|
+
(TShape extends Microsoft_EntityFrameworkCore_Metadata.IComplexProperty ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IComplexProperty : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IConventionEntityType : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IEntityType ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IEntityType : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IForeignKey ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IForeignKey : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IModel ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IModel : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableModel ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IMutableModel : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IProperty ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IProperty : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IPropertyBase ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IPropertyBase : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyComplexProperty ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlyComplexProperty : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType ? (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType ? {} : __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlyEntityType) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyForeignKey ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlyForeignKey : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyIndex ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlyIndex : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyKey ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlyKey : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyNavigation ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlyNavigation : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlyProperty : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyPropertyBase ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlyPropertyBase : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlySkipNavigation ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlySkipNavigation : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyTypeBase ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlyTypeBase : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.ITypeBase ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_ITypeBase : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.ValueGenerated ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_ValueGenerated : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Internal.EntityType ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_EntityType : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Internal.IRuntimeEntityType ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IRuntimeEntityType : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Internal.Property ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_Property : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Internal.PropertyBase ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_PropertyBase : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Internal.TypeConfigurationType ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_TypeConfigurationType : {}) & (TShape extends System.Nullable_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_Nullable_1<T0> : {})
|
|
1956
2221
|
);
|
|
1957
2222
|
|
|
1958
2223
|
interface __TsonicExtApplier_Microsoft_EntityFrameworkCore_Metadata_Internal {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tsonic/efcore",
|
|
3
|
-
"version": "10.0.
|
|
3
|
+
"version": "10.0.32",
|
|
4
4
|
"description": "TypeScript type definitions for Microsoft.EntityFrameworkCore.* for .NET 10",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"keywords": [
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
"url": "https://github.com/tsoniclang/efcore.git"
|
|
20
20
|
},
|
|
21
21
|
"peerDependencies": {
|
|
22
|
-
"@tsonic/core": "10.0.
|
|
23
|
-
"@tsonic/dotnet": "10.0.
|
|
24
|
-
"@tsonic/microsoft-extensions": "10.0.
|
|
22
|
+
"@tsonic/core": "10.0.32",
|
|
23
|
+
"@tsonic/dotnet": "10.0.32",
|
|
24
|
+
"@tsonic/microsoft-extensions": "10.0.32"
|
|
25
25
|
}
|
|
26
26
|
}
|