@tsonic/efcore 0.1.1 → 0.1.2
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/bindings.json +8 -8
- package/Microsoft.EntityFrameworkCore/internal/index.d.ts +14 -14
- package/Microsoft.EntityFrameworkCore/internal/metadata.json +4 -4
- package/Microsoft.EntityFrameworkCore.ChangeTracking/bindings.json +12 -12
- package/Microsoft.EntityFrameworkCore.ChangeTracking/internal/index.d.ts +9 -9
- package/Microsoft.EntityFrameworkCore.ChangeTracking/internal/metadata.json +3 -3
- package/Microsoft.EntityFrameworkCore.ChangeTracking.Internal/bindings.json +2 -2
- package/Microsoft.EntityFrameworkCore.ChangeTracking.Internal/internal/index.d.ts +1 -1
- package/Microsoft.EntityFrameworkCore.Design/bindings.json +6 -6
- package/Microsoft.EntityFrameworkCore.Design/internal/index.d.ts +6 -6
- package/Microsoft.EntityFrameworkCore.Design/internal/metadata.json +3 -3
- package/Microsoft.EntityFrameworkCore.Design.Internal/bindings.json +4 -4
- package/Microsoft.EntityFrameworkCore.Design.Internal/internal/index.d.ts +4 -4
- package/Microsoft.EntityFrameworkCore.Design.Internal/internal/metadata.json +2 -2
- package/Microsoft.EntityFrameworkCore.Diagnostics/bindings.json +6 -6
- package/Microsoft.EntityFrameworkCore.Diagnostics/internal/index.d.ts +80 -80
- package/Microsoft.EntityFrameworkCore.Diagnostics/internal/metadata.json +3 -3
- package/Microsoft.EntityFrameworkCore.Infrastructure/bindings.json +2 -2
- package/Microsoft.EntityFrameworkCore.Infrastructure/internal/index.d.ts +4 -4
- package/Microsoft.EntityFrameworkCore.Infrastructure/internal/metadata.json +1 -1
- package/Microsoft.EntityFrameworkCore.Internal/bindings.json +6 -6
- package/Microsoft.EntityFrameworkCore.Internal/internal/index.d.ts +21 -21
- package/Microsoft.EntityFrameworkCore.Internal/internal/metadata.json +3 -3
- package/Microsoft.EntityFrameworkCore.Metadata/bindings.json +145 -145
- package/Microsoft.EntityFrameworkCore.Metadata/internal/index.d.ts +128 -128
- package/Microsoft.EntityFrameworkCore.Metadata/internal/metadata.json +72 -72
- package/Microsoft.EntityFrameworkCore.Metadata.Builders/internal/index.d.ts +24 -24
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions/internal/index.d.ts +5 -5
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure/bindings.json +2 -2
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure/internal/index.d.ts +1 -1
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure/internal/metadata.json +1 -1
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Internal/internal/index.d.ts +2 -2
- package/Microsoft.EntityFrameworkCore.Metadata.Internal/bindings.json +30 -30
- package/Microsoft.EntityFrameworkCore.Metadata.Internal/internal/index.d.ts +116 -116
- package/Microsoft.EntityFrameworkCore.Metadata.Internal/internal/metadata.json +15 -15
- package/Microsoft.EntityFrameworkCore.Migrations/bindings.json +2 -2
- package/Microsoft.EntityFrameworkCore.Migrations/internal/index.d.ts +3 -3
- package/Microsoft.EntityFrameworkCore.Migrations/internal/metadata.json +1 -1
- package/Microsoft.EntityFrameworkCore.Migrations.Operations.Builders/internal/index.d.ts +1 -1
- package/Microsoft.EntityFrameworkCore.Query/bindings.json +71 -71
- package/Microsoft.EntityFrameworkCore.Query/internal/index.d.ts +75 -75
- package/Microsoft.EntityFrameworkCore.Query/internal/metadata.json +33 -33
- package/Microsoft.EntityFrameworkCore.Query.Internal/bindings.json +6 -6
- package/Microsoft.EntityFrameworkCore.Query.Internal/internal/index.d.ts +9 -9
- package/Microsoft.EntityFrameworkCore.Query.Internal/internal/metadata.json +1 -1
- package/Microsoft.EntityFrameworkCore.Query.SqlExpressions/bindings.json +47 -47
- package/Microsoft.EntityFrameworkCore.Query.SqlExpressions/internal/index.d.ts +25 -25
- package/Microsoft.EntityFrameworkCore.Query.SqlExpressions/internal/metadata.json +6 -6
- package/Microsoft.EntityFrameworkCore.Storage/bindings.json +47 -47
- package/Microsoft.EntityFrameworkCore.Storage/internal/index.d.ts +51 -51
- package/Microsoft.EntityFrameworkCore.Storage/internal/metadata.json +23 -23
- package/Microsoft.EntityFrameworkCore.Storage.Internal/bindings.json +2 -2
- package/Microsoft.EntityFrameworkCore.Storage.Internal/internal/index.d.ts +1 -1
- package/Microsoft.EntityFrameworkCore.Storage.Internal/internal/metadata.json +1 -1
- package/Microsoft.EntityFrameworkCore.Storage.Json/internal/index.d.ts +2 -2
- package/Microsoft.EntityFrameworkCore.Storage.ValueConversion/bindings.json +4 -4
- package/Microsoft.EntityFrameworkCore.Storage.ValueConversion/internal/index.d.ts +2 -2
- package/Microsoft.EntityFrameworkCore.Storage.ValueConversion/internal/metadata.json +2 -2
- package/__internal/extensions/index.d.ts +7 -7
- package/package.json +1 -1
|
@@ -46,8 +46,8 @@ export enum StoreTypePostfix {
|
|
|
46
46
|
|
|
47
47
|
|
|
48
48
|
export interface IDatabase$instance {
|
|
49
|
-
compileQuery<TResult>(query: Expression,
|
|
50
|
-
compileQueryExpression<TResult>(query: Expression,
|
|
49
|
+
compileQuery<TResult>(query: Expression, async: boolean): Func<QueryContext, TResult>;
|
|
50
|
+
compileQueryExpression<TResult>(query: Expression, async: boolean): Expression<Func<QueryContext, TResult>>;
|
|
51
51
|
saveChanges(entries: IList<IUpdateEntry>): int;
|
|
52
52
|
saveChangesAsync(entries: IList<IUpdateEntry>, cancellationToken?: CancellationToken): Task<System_Internal.Int32>;
|
|
53
53
|
}
|
|
@@ -318,14 +318,14 @@ export interface IRelationalTypeMappingSource$instance extends ITypeMappingSourc
|
|
|
318
318
|
findMapping(property: IProperty): CoreTypeMapping | undefined;
|
|
319
319
|
findMapping(member: MemberInfo, model: IModel, useAttributes: boolean): CoreTypeMapping | undefined;
|
|
320
320
|
findMapping(member: MemberInfo): CoreTypeMapping | undefined;
|
|
321
|
-
findMapping(
|
|
322
|
-
findMapping(
|
|
321
|
+
findMapping(type: Type, model: IModel, elementMapping?: CoreTypeMapping): CoreTypeMapping | undefined;
|
|
322
|
+
findMapping(type: Type): CoreTypeMapping | undefined;
|
|
323
323
|
findMapping(property: IProperty): RelationalTypeMapping | undefined;
|
|
324
324
|
findMapping(member: MemberInfo): RelationalTypeMapping | undefined;
|
|
325
325
|
findMapping(storeTypeName: string): RelationalTypeMapping | undefined;
|
|
326
|
-
findMapping(
|
|
327
|
-
findMapping(
|
|
328
|
-
findMapping(
|
|
326
|
+
findMapping(type: Type, model: IModel, elementMapping?: CoreTypeMapping): RelationalTypeMapping | undefined;
|
|
327
|
+
findMapping(type: Type, storeTypeName: string, keyOrIndex?: boolean, unicode?: Nullable<System_Internal.Boolean>, size?: Nullable<System_Internal.Int32>, rowVersion?: Nullable<System_Internal.Boolean>, fixedLength?: Nullable<System_Internal.Boolean>, precision?: Nullable<System_Internal.Int32>, scale?: Nullable<System_Internal.Int32>): RelationalTypeMapping | undefined;
|
|
328
|
+
findMapping(type: Type): RelationalTypeMapping | undefined;
|
|
329
329
|
}
|
|
330
330
|
|
|
331
331
|
|
|
@@ -367,8 +367,8 @@ export interface ITypeMappingSource$instance {
|
|
|
367
367
|
findMapping(property: IProperty): CoreTypeMapping | undefined;
|
|
368
368
|
findMapping(member: MemberInfo, model: IModel, useAttributes: boolean): CoreTypeMapping | undefined;
|
|
369
369
|
findMapping(member: MemberInfo): CoreTypeMapping | undefined;
|
|
370
|
-
findMapping(
|
|
371
|
-
findMapping(
|
|
370
|
+
findMapping(type: Type, model: IModel, elementMapping?: CoreTypeMapping): CoreTypeMapping | undefined;
|
|
371
|
+
findMapping(type: Type): CoreTypeMapping | undefined;
|
|
372
372
|
}
|
|
373
373
|
|
|
374
374
|
|
|
@@ -455,8 +455,8 @@ export const RelationalTypeMappingInfo: {
|
|
|
455
455
|
new(storeTypeName: string, storeTypeNameBase: string, unicode: Nullable<System_Internal.Boolean>, size: Nullable<System_Internal.Int32>, precision: Nullable<System_Internal.Int32>, scale: Nullable<System_Internal.Int32>): RelationalTypeMappingInfo;
|
|
456
456
|
new(member: MemberInfo, elementTypeMapping: RelationalTypeMapping, storeTypeName: string, storeTypeNameBase: string, unicode: Nullable<System_Internal.Boolean>, size: Nullable<System_Internal.Int32>, precision: Nullable<System_Internal.Int32>, scale: Nullable<System_Internal.Int32>): RelationalTypeMappingInfo;
|
|
457
457
|
new(source: RelationalTypeMappingInfo, converter: ValueConverterInfo): RelationalTypeMappingInfo;
|
|
458
|
-
new(
|
|
459
|
-
new(
|
|
458
|
+
new(type: Type, elementTypeMapping: RelationalTypeMapping, storeTypeName: string, storeTypeNameBase: string, keyOrIndex: boolean, unicode: Nullable<System_Internal.Boolean>, size: Nullable<System_Internal.Int32>, rowVersion: Nullable<System_Internal.Boolean>, fixedLength: Nullable<System_Internal.Boolean>, precision: Nullable<System_Internal.Int32>, scale: Nullable<System_Internal.Int32>, dbType: Nullable<DbType>, key: boolean): RelationalTypeMappingInfo;
|
|
459
|
+
new(type: Type, typeMappingConfiguration: ITypeMappingConfiguration, elementTypeMapping: RelationalTypeMapping, storeTypeName: string, storeTypeNameBase: string, unicode: Nullable<System_Internal.Boolean>, size: Nullable<System_Internal.Int32>, precision: Nullable<System_Internal.Int32>, scale: Nullable<System_Internal.Int32>): RelationalTypeMappingInfo;
|
|
460
460
|
};
|
|
461
461
|
|
|
462
462
|
|
|
@@ -488,8 +488,8 @@ export const TypeMappingInfo: {
|
|
|
488
488
|
new(elementType: IElementType, fallbackUnicode: Nullable<System_Internal.Boolean>, fallbackSize: Nullable<System_Internal.Int32>, fallbackPrecision: Nullable<System_Internal.Int32>, fallbackScale: Nullable<System_Internal.Int32>): TypeMappingInfo;
|
|
489
489
|
new(principals: IReadOnlyList<IProperty>, fallbackUnicode: Nullable<System_Internal.Boolean>, fallbackSize: Nullable<System_Internal.Int32>, fallbackPrecision: Nullable<System_Internal.Int32>, fallbackScale: Nullable<System_Internal.Int32>): TypeMappingInfo;
|
|
490
490
|
new(member: MemberInfo, elementTypeMapping: CoreTypeMapping, unicode: Nullable<System_Internal.Boolean>, size: Nullable<System_Internal.Int32>, precision: Nullable<System_Internal.Int32>, scale: Nullable<System_Internal.Int32>): TypeMappingInfo;
|
|
491
|
-
new(
|
|
492
|
-
new(
|
|
491
|
+
new(type: Type, typeMappingConfiguration: ITypeMappingConfiguration, elementTypeMapping: CoreTypeMapping): TypeMappingInfo;
|
|
492
|
+
new(type: Type, elementTypeMapping: CoreTypeMapping, keyOrIndex: boolean, unicode: Nullable<System_Internal.Boolean>, size: Nullable<System_Internal.Int32>, rowVersion: Nullable<System_Internal.Boolean>, precision: Nullable<System_Internal.Int32>, scale: Nullable<System_Internal.Int32>, key: boolean): TypeMappingInfo;
|
|
493
493
|
new(source: TypeMappingInfo, converter: ValueConverterInfo, unicode: Nullable<System_Internal.Boolean>, size: Nullable<System_Internal.Int32>, precision: Nullable<System_Internal.Int32>, scale: Nullable<System_Internal.Int32>): TypeMappingInfo;
|
|
494
494
|
};
|
|
495
495
|
|
|
@@ -520,7 +520,7 @@ export interface BoolTypeMapping$instance extends RelationalTypeMapping {
|
|
|
520
520
|
|
|
521
521
|
export const BoolTypeMapping: {
|
|
522
522
|
new(storeType: string, dbType: Nullable<DbType>): BoolTypeMapping;
|
|
523
|
-
readonly
|
|
523
|
+
readonly default: BoolTypeMapping;
|
|
524
524
|
};
|
|
525
525
|
|
|
526
526
|
|
|
@@ -532,7 +532,7 @@ export interface ByteArrayTypeMapping$instance extends RelationalTypeMapping {
|
|
|
532
532
|
|
|
533
533
|
export const ByteArrayTypeMapping: {
|
|
534
534
|
new(storeType: string, dbType: Nullable<DbType>, size: Nullable<System_Internal.Int32>): ByteArrayTypeMapping;
|
|
535
|
-
readonly
|
|
535
|
+
readonly default: ByteArrayTypeMapping;
|
|
536
536
|
};
|
|
537
537
|
|
|
538
538
|
|
|
@@ -544,7 +544,7 @@ export interface ByteTypeMapping$instance extends RelationalTypeMapping {
|
|
|
544
544
|
|
|
545
545
|
export const ByteTypeMapping: {
|
|
546
546
|
new(storeType: string, dbType: Nullable<DbType>): ByteTypeMapping;
|
|
547
|
-
readonly
|
|
547
|
+
readonly default: ByteTypeMapping;
|
|
548
548
|
};
|
|
549
549
|
|
|
550
550
|
|
|
@@ -556,7 +556,7 @@ export interface CharTypeMapping$instance extends RelationalTypeMapping {
|
|
|
556
556
|
|
|
557
557
|
export const CharTypeMapping: {
|
|
558
558
|
new(storeType: string, dbType: Nullable<DbType>): CharTypeMapping;
|
|
559
|
-
readonly
|
|
559
|
+
readonly default: CharTypeMapping;
|
|
560
560
|
};
|
|
561
561
|
|
|
562
562
|
|
|
@@ -584,8 +584,8 @@ export const CoreTypeMapping: {
|
|
|
584
584
|
export type CoreTypeMapping = CoreTypeMapping$instance;
|
|
585
585
|
|
|
586
586
|
export interface Database$instance {
|
|
587
|
-
compileQuery<TResult>(query: Expression,
|
|
588
|
-
compileQueryExpression<TResult>(query: Expression,
|
|
587
|
+
compileQuery<TResult>(query: Expression, async: boolean): Func<QueryContext, TResult>;
|
|
588
|
+
compileQueryExpression<TResult>(query: Expression, async: boolean): Expression<Func<QueryContext, TResult>>;
|
|
589
589
|
saveChanges(entries: IList<IUpdateEntry>): int;
|
|
590
590
|
saveChangesAsync(entries: IList<IUpdateEntry>, cancellationToken?: CancellationToken): Task<System_Internal.Int32>;
|
|
591
591
|
}
|
|
@@ -666,7 +666,7 @@ export interface DateOnlyTypeMapping$instance extends RelationalTypeMapping {
|
|
|
666
666
|
|
|
667
667
|
export const DateOnlyTypeMapping: {
|
|
668
668
|
new(storeType: string, dbType: Nullable<DbType>): DateOnlyTypeMapping;
|
|
669
|
-
readonly
|
|
669
|
+
readonly default: DateOnlyTypeMapping;
|
|
670
670
|
};
|
|
671
671
|
|
|
672
672
|
|
|
@@ -678,7 +678,7 @@ export interface DateTimeOffsetTypeMapping$instance extends RelationalTypeMappin
|
|
|
678
678
|
|
|
679
679
|
export const DateTimeOffsetTypeMapping: {
|
|
680
680
|
new(storeType: string, dbType: Nullable<DbType>): DateTimeOffsetTypeMapping;
|
|
681
|
-
readonly
|
|
681
|
+
readonly default: DateTimeOffsetTypeMapping;
|
|
682
682
|
};
|
|
683
683
|
|
|
684
684
|
|
|
@@ -690,7 +690,7 @@ export interface DateTimeTypeMapping$instance extends RelationalTypeMapping {
|
|
|
690
690
|
|
|
691
691
|
export const DateTimeTypeMapping: {
|
|
692
692
|
new(storeType: string, dbType: Nullable<DbType>): DateTimeTypeMapping;
|
|
693
|
-
readonly
|
|
693
|
+
readonly default: DateTimeTypeMapping;
|
|
694
694
|
};
|
|
695
695
|
|
|
696
696
|
|
|
@@ -702,7 +702,7 @@ export interface DecimalTypeMapping$instance extends RelationalTypeMapping {
|
|
|
702
702
|
|
|
703
703
|
export const DecimalTypeMapping: {
|
|
704
704
|
new(storeType: string, dbType: Nullable<DbType>, precision: Nullable<System_Internal.Int32>, scale: Nullable<System_Internal.Int32>): DecimalTypeMapping;
|
|
705
|
-
readonly
|
|
705
|
+
readonly default: DecimalTypeMapping;
|
|
706
706
|
};
|
|
707
707
|
|
|
708
708
|
|
|
@@ -714,7 +714,7 @@ export interface DoubleTypeMapping$instance extends RelationalTypeMapping {
|
|
|
714
714
|
|
|
715
715
|
export const DoubleTypeMapping: {
|
|
716
716
|
new(storeType: string, dbType: Nullable<DbType>): DoubleTypeMapping;
|
|
717
|
-
readonly
|
|
717
|
+
readonly default: DoubleTypeMapping;
|
|
718
718
|
};
|
|
719
719
|
|
|
720
720
|
|
|
@@ -782,7 +782,7 @@ export interface FloatTypeMapping$instance extends RelationalTypeMapping {
|
|
|
782
782
|
|
|
783
783
|
export const FloatTypeMapping: {
|
|
784
784
|
new(storeType: string, dbType: Nullable<DbType>): FloatTypeMapping;
|
|
785
|
-
readonly
|
|
785
|
+
readonly default: FloatTypeMapping;
|
|
786
786
|
};
|
|
787
787
|
|
|
788
788
|
|
|
@@ -794,7 +794,7 @@ export interface GuidTypeMapping$instance extends RelationalTypeMapping {
|
|
|
794
794
|
|
|
795
795
|
export const GuidTypeMapping: {
|
|
796
796
|
new(storeType: string, dbType: Nullable<DbType>): GuidTypeMapping;
|
|
797
|
-
readonly
|
|
797
|
+
readonly default: GuidTypeMapping;
|
|
798
798
|
};
|
|
799
799
|
|
|
800
800
|
|
|
@@ -806,7 +806,7 @@ export interface IntTypeMapping$instance extends RelationalTypeMapping {
|
|
|
806
806
|
|
|
807
807
|
export const IntTypeMapping: {
|
|
808
808
|
new(storeType: string, dbType: Nullable<DbType>): IntTypeMapping;
|
|
809
|
-
readonly
|
|
809
|
+
readonly default: IntTypeMapping;
|
|
810
810
|
};
|
|
811
811
|
|
|
812
812
|
|
|
@@ -839,7 +839,7 @@ export interface LongTypeMapping$instance extends RelationalTypeMapping {
|
|
|
839
839
|
|
|
840
840
|
export const LongTypeMapping: {
|
|
841
841
|
new(storeType: string, dbType: Nullable<DbType>): LongTypeMapping;
|
|
842
|
-
readonly
|
|
842
|
+
readonly default: LongTypeMapping;
|
|
843
843
|
};
|
|
844
844
|
|
|
845
845
|
|
|
@@ -933,13 +933,13 @@ export interface ReaderColumn$instance {
|
|
|
933
933
|
readonly isNullable: boolean;
|
|
934
934
|
readonly name: string;
|
|
935
935
|
readonly property: IPropertyBase;
|
|
936
|
-
readonly
|
|
936
|
+
readonly type: Type;
|
|
937
937
|
}
|
|
938
938
|
|
|
939
939
|
|
|
940
940
|
export const ReaderColumn: {
|
|
941
|
-
create(
|
|
942
|
-
getConstructor(
|
|
941
|
+
create(type: Type, nullable: boolean, columnName: string, property: IPropertyBase, readFunc: LambdaExpression): ReaderColumn;
|
|
942
|
+
getConstructor(type: Type): ConstructorInfo;
|
|
943
943
|
};
|
|
944
944
|
|
|
945
945
|
|
|
@@ -1128,8 +1128,8 @@ export const RelationalConnectionDependencies: {
|
|
|
1128
1128
|
export type RelationalConnectionDependencies = RelationalConnectionDependencies$instance;
|
|
1129
1129
|
|
|
1130
1130
|
export interface RelationalDatabase$instance extends Database$instance {
|
|
1131
|
-
compileQuery<TResult>(query: Expression,
|
|
1132
|
-
compileQueryExpression<TResult>(query: Expression,
|
|
1131
|
+
compileQuery<TResult>(query: Expression, async: boolean): Func<QueryContext, TResult>;
|
|
1132
|
+
compileQueryExpression<TResult>(query: Expression, async: boolean): Expression<Func<QueryContext, TResult>>;
|
|
1133
1133
|
saveChanges(entries: IList<IUpdateEntry>): int;
|
|
1134
1134
|
saveChangesAsync(entries: IList<IUpdateEntry>, cancellationToken?: CancellationToken): Task<System_Internal.Int32>;
|
|
1135
1135
|
}
|
|
@@ -1154,7 +1154,7 @@ export interface RelationalDatabaseCreator$instance {
|
|
|
1154
1154
|
createAsync(cancellationToken?: CancellationToken): Task;
|
|
1155
1155
|
createTables(): void;
|
|
1156
1156
|
createTablesAsync(cancellationToken?: CancellationToken): Task;
|
|
1157
|
-
|
|
1157
|
+
delete(): void;
|
|
1158
1158
|
deleteAsync(cancellationToken?: CancellationToken): Task;
|
|
1159
1159
|
ensureCreated(): boolean;
|
|
1160
1160
|
ensureCreatedAsync(cancellationToken?: CancellationToken): Task<System_Internal.Boolean>;
|
|
@@ -1430,7 +1430,7 @@ export interface RelationalTypeMapping$instance extends CoreTypeMapping {
|
|
|
1430
1430
|
|
|
1431
1431
|
export const RelationalTypeMapping: {
|
|
1432
1432
|
readonly nullMapping: RelationalTypeMapping;
|
|
1433
|
-
getDataReaderMethod(
|
|
1433
|
+
getDataReaderMethod(type: Type): MethodInfo;
|
|
1434
1434
|
};
|
|
1435
1435
|
|
|
1436
1436
|
|
|
@@ -1439,12 +1439,12 @@ export type RelationalTypeMapping = RelationalTypeMapping$instance;
|
|
|
1439
1439
|
export interface RelationalTypeMappingSource$instance extends TypeMappingSourceBase$instance {
|
|
1440
1440
|
findMapping(property: IProperty): CoreTypeMapping | undefined;
|
|
1441
1441
|
findMapping(elementType: IElementType): CoreTypeMapping | undefined;
|
|
1442
|
-
findMapping(
|
|
1443
|
-
findMapping(
|
|
1442
|
+
findMapping(type: Type): RelationalTypeMapping | undefined;
|
|
1443
|
+
findMapping(type: Type, model: IModel, elementMapping?: CoreTypeMapping): RelationalTypeMapping | undefined;
|
|
1444
1444
|
findMapping(member: MemberInfo): RelationalTypeMapping | undefined;
|
|
1445
1445
|
findMapping(storeTypeName: string): RelationalTypeMapping | undefined;
|
|
1446
|
-
findMapping(
|
|
1447
|
-
findMapping(
|
|
1446
|
+
findMapping(type: Type): CoreTypeMapping | undefined;
|
|
1447
|
+
findMapping(type: Type, model: IModel, elementMapping?: CoreTypeMapping): CoreTypeMapping | undefined;
|
|
1448
1448
|
findMapping(member: MemberInfo): CoreTypeMapping | undefined;
|
|
1449
1449
|
findMapping(member: MemberInfo, model: IModel, useAttributes: boolean): CoreTypeMapping | undefined;
|
|
1450
1450
|
}
|
|
@@ -1499,7 +1499,7 @@ export interface SByteTypeMapping$instance extends RelationalTypeMapping {
|
|
|
1499
1499
|
|
|
1500
1500
|
export const SByteTypeMapping: {
|
|
1501
1501
|
new(storeType: string, dbType: Nullable<DbType>): SByteTypeMapping;
|
|
1502
|
-
readonly
|
|
1502
|
+
readonly default: SByteTypeMapping;
|
|
1503
1503
|
};
|
|
1504
1504
|
|
|
1505
1505
|
|
|
@@ -1511,7 +1511,7 @@ export interface ShortTypeMapping$instance extends RelationalTypeMapping {
|
|
|
1511
1511
|
|
|
1512
1512
|
export const ShortTypeMapping: {
|
|
1513
1513
|
new(storeType: string, dbType: Nullable<DbType>): ShortTypeMapping;
|
|
1514
|
-
readonly
|
|
1514
|
+
readonly default: ShortTypeMapping;
|
|
1515
1515
|
};
|
|
1516
1516
|
|
|
1517
1517
|
|
|
@@ -1523,7 +1523,7 @@ export interface StringTypeMapping$instance extends RelationalTypeMapping {
|
|
|
1523
1523
|
|
|
1524
1524
|
export const StringTypeMapping: {
|
|
1525
1525
|
new(storeType: string, dbType: Nullable<DbType>, unicode: boolean, size: Nullable<System_Internal.Int32>): StringTypeMapping;
|
|
1526
|
-
readonly
|
|
1526
|
+
readonly default: StringTypeMapping;
|
|
1527
1527
|
};
|
|
1528
1528
|
|
|
1529
1529
|
|
|
@@ -1535,7 +1535,7 @@ export interface TimeOnlyTypeMapping$instance extends RelationalTypeMapping {
|
|
|
1535
1535
|
|
|
1536
1536
|
export const TimeOnlyTypeMapping: {
|
|
1537
1537
|
new(storeType: string, dbType: Nullable<DbType>): TimeOnlyTypeMapping;
|
|
1538
|
-
readonly
|
|
1538
|
+
readonly default: TimeOnlyTypeMapping;
|
|
1539
1539
|
};
|
|
1540
1540
|
|
|
1541
1541
|
|
|
@@ -1547,7 +1547,7 @@ export interface TimeSpanTypeMapping$instance extends RelationalTypeMapping {
|
|
|
1547
1547
|
|
|
1548
1548
|
export const TimeSpanTypeMapping: {
|
|
1549
1549
|
new(storeType: string, dbType: Nullable<DbType>): TimeSpanTypeMapping;
|
|
1550
|
-
readonly
|
|
1550
|
+
readonly default: TimeSpanTypeMapping;
|
|
1551
1551
|
};
|
|
1552
1552
|
|
|
1553
1553
|
|
|
@@ -1556,8 +1556,8 @@ export type TimeSpanTypeMapping = TimeSpanTypeMapping$instance;
|
|
|
1556
1556
|
export interface TypeMappingSource$instance extends TypeMappingSourceBase$instance {
|
|
1557
1557
|
findMapping(property: IProperty): CoreTypeMapping | undefined;
|
|
1558
1558
|
findMapping(elementType: IElementType): CoreTypeMapping | undefined;
|
|
1559
|
-
findMapping(
|
|
1560
|
-
findMapping(
|
|
1559
|
+
findMapping(type: Type): CoreTypeMapping | undefined;
|
|
1560
|
+
findMapping(type: Type, model: IModel, elementMapping?: CoreTypeMapping): CoreTypeMapping | undefined;
|
|
1561
1561
|
findMapping(member: MemberInfo): CoreTypeMapping | undefined;
|
|
1562
1562
|
findMapping(member: MemberInfo, model: IModel, useAttributes: boolean): CoreTypeMapping | undefined;
|
|
1563
1563
|
}
|
|
@@ -1577,8 +1577,8 @@ export type TypeMappingSource = TypeMappingSource$instance & __TypeMappingSource
|
|
|
1577
1577
|
export interface TypeMappingSourceBase$instance {
|
|
1578
1578
|
findMapping(property: IProperty): CoreTypeMapping | undefined;
|
|
1579
1579
|
findMapping(elementType: IElementType): CoreTypeMapping | undefined;
|
|
1580
|
-
findMapping(
|
|
1581
|
-
findMapping(
|
|
1580
|
+
findMapping(type: Type): CoreTypeMapping | undefined;
|
|
1581
|
+
findMapping(type: Type, model: IModel, elementMapping?: CoreTypeMapping): CoreTypeMapping | undefined;
|
|
1582
1582
|
findMapping(member: MemberInfo): CoreTypeMapping | undefined;
|
|
1583
1583
|
findMapping(member: MemberInfo, model: IModel, useAttributes: boolean): CoreTypeMapping | undefined;
|
|
1584
1584
|
}
|
|
@@ -1638,7 +1638,7 @@ export interface UIntTypeMapping$instance extends RelationalTypeMapping {
|
|
|
1638
1638
|
|
|
1639
1639
|
export const UIntTypeMapping: {
|
|
1640
1640
|
new(storeType: string, dbType: Nullable<DbType>): UIntTypeMapping;
|
|
1641
|
-
readonly
|
|
1641
|
+
readonly default: UIntTypeMapping;
|
|
1642
1642
|
};
|
|
1643
1643
|
|
|
1644
1644
|
|
|
@@ -1650,7 +1650,7 @@ export interface ULongTypeMapping$instance extends RelationalTypeMapping {
|
|
|
1650
1650
|
|
|
1651
1651
|
export const ULongTypeMapping: {
|
|
1652
1652
|
new(storeType: string, dbType: Nullable<DbType>): ULongTypeMapping;
|
|
1653
|
-
readonly
|
|
1653
|
+
readonly default: ULongTypeMapping;
|
|
1654
1654
|
};
|
|
1655
1655
|
|
|
1656
1656
|
|
|
@@ -1662,7 +1662,7 @@ export interface UShortTypeMapping$instance extends RelationalTypeMapping {
|
|
|
1662
1662
|
|
|
1663
1663
|
export const UShortTypeMapping: {
|
|
1664
1664
|
new(storeType: string, dbType: Nullable<DbType>): UShortTypeMapping;
|
|
1665
|
-
readonly
|
|
1665
|
+
readonly default: UShortTypeMapping;
|
|
1666
1666
|
};
|
|
1667
1667
|
|
|
1668
1668
|
|
|
@@ -4048,7 +4048,7 @@
|
|
|
4048
4048
|
{
|
|
4049
4049
|
"stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Storage.BoolTypeMapping::Default:Microsoft.EntityFrameworkCore.Storage.BoolTypeMapping",
|
|
4050
4050
|
"clrName": "Default",
|
|
4051
|
-
"tsEmitName": "
|
|
4051
|
+
"tsEmitName": "default",
|
|
4052
4052
|
"normalizedSignature": "Default|:Microsoft.EntityFrameworkCore.Storage.BoolTypeMapping|static=true|accessor=get",
|
|
4053
4053
|
"provenance": "Original",
|
|
4054
4054
|
"emitScope": "ClassSurface",
|
|
@@ -4086,7 +4086,7 @@
|
|
|
4086
4086
|
{
|
|
4087
4087
|
"stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Storage.ByteArrayTypeMapping::Default:Microsoft.EntityFrameworkCore.Storage.ByteArrayTypeMapping",
|
|
4088
4088
|
"clrName": "Default",
|
|
4089
|
-
"tsEmitName": "
|
|
4089
|
+
"tsEmitName": "default",
|
|
4090
4090
|
"normalizedSignature": "Default|:Microsoft.EntityFrameworkCore.Storage.ByteArrayTypeMapping|static=true|accessor=get",
|
|
4091
4091
|
"provenance": "Original",
|
|
4092
4092
|
"emitScope": "ClassSurface",
|
|
@@ -4124,7 +4124,7 @@
|
|
|
4124
4124
|
{
|
|
4125
4125
|
"stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Storage.ByteTypeMapping::Default:Microsoft.EntityFrameworkCore.Storage.ByteTypeMapping",
|
|
4126
4126
|
"clrName": "Default",
|
|
4127
|
-
"tsEmitName": "
|
|
4127
|
+
"tsEmitName": "default",
|
|
4128
4128
|
"normalizedSignature": "Default|:Microsoft.EntityFrameworkCore.Storage.ByteTypeMapping|static=true|accessor=get",
|
|
4129
4129
|
"provenance": "Original",
|
|
4130
4130
|
"emitScope": "ClassSurface",
|
|
@@ -4162,7 +4162,7 @@
|
|
|
4162
4162
|
{
|
|
4163
4163
|
"stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Storage.CharTypeMapping::Default:Microsoft.EntityFrameworkCore.Storage.CharTypeMapping",
|
|
4164
4164
|
"clrName": "Default",
|
|
4165
|
-
"tsEmitName": "
|
|
4165
|
+
"tsEmitName": "default",
|
|
4166
4166
|
"normalizedSignature": "Default|:Microsoft.EntityFrameworkCore.Storage.CharTypeMapping|static=true|accessor=get",
|
|
4167
4167
|
"provenance": "Original",
|
|
4168
4168
|
"emitScope": "ClassSurface",
|
|
@@ -4912,7 +4912,7 @@
|
|
|
4912
4912
|
{
|
|
4913
4913
|
"stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Storage.DateOnlyTypeMapping::Default:Microsoft.EntityFrameworkCore.Storage.DateOnlyTypeMapping",
|
|
4914
4914
|
"clrName": "Default",
|
|
4915
|
-
"tsEmitName": "
|
|
4915
|
+
"tsEmitName": "default",
|
|
4916
4916
|
"normalizedSignature": "Default|:Microsoft.EntityFrameworkCore.Storage.DateOnlyTypeMapping|static=true|accessor=get",
|
|
4917
4917
|
"provenance": "Original",
|
|
4918
4918
|
"emitScope": "ClassSurface",
|
|
@@ -4950,7 +4950,7 @@
|
|
|
4950
4950
|
{
|
|
4951
4951
|
"stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Storage.DateTimeOffsetTypeMapping::Default:Microsoft.EntityFrameworkCore.Storage.DateTimeOffsetTypeMapping",
|
|
4952
4952
|
"clrName": "Default",
|
|
4953
|
-
"tsEmitName": "
|
|
4953
|
+
"tsEmitName": "default",
|
|
4954
4954
|
"normalizedSignature": "Default|:Microsoft.EntityFrameworkCore.Storage.DateTimeOffsetTypeMapping|static=true|accessor=get",
|
|
4955
4955
|
"provenance": "Original",
|
|
4956
4956
|
"emitScope": "ClassSurface",
|
|
@@ -4988,7 +4988,7 @@
|
|
|
4988
4988
|
{
|
|
4989
4989
|
"stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Storage.DateTimeTypeMapping::Default:Microsoft.EntityFrameworkCore.Storage.DateTimeTypeMapping",
|
|
4990
4990
|
"clrName": "Default",
|
|
4991
|
-
"tsEmitName": "
|
|
4991
|
+
"tsEmitName": "default",
|
|
4992
4992
|
"normalizedSignature": "Default|:Microsoft.EntityFrameworkCore.Storage.DateTimeTypeMapping|static=true|accessor=get",
|
|
4993
4993
|
"provenance": "Original",
|
|
4994
4994
|
"emitScope": "ClassSurface",
|
|
@@ -5026,7 +5026,7 @@
|
|
|
5026
5026
|
{
|
|
5027
5027
|
"stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Storage.DecimalTypeMapping::Default:Microsoft.EntityFrameworkCore.Storage.DecimalTypeMapping",
|
|
5028
5028
|
"clrName": "Default",
|
|
5029
|
-
"tsEmitName": "
|
|
5029
|
+
"tsEmitName": "default",
|
|
5030
5030
|
"normalizedSignature": "Default|:Microsoft.EntityFrameworkCore.Storage.DecimalTypeMapping|static=true|accessor=get",
|
|
5031
5031
|
"provenance": "Original",
|
|
5032
5032
|
"emitScope": "ClassSurface",
|
|
@@ -5064,7 +5064,7 @@
|
|
|
5064
5064
|
{
|
|
5065
5065
|
"stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Storage.DoubleTypeMapping::Default:Microsoft.EntityFrameworkCore.Storage.DoubleTypeMapping",
|
|
5066
5066
|
"clrName": "Default",
|
|
5067
|
-
"tsEmitName": "
|
|
5067
|
+
"tsEmitName": "default",
|
|
5068
5068
|
"normalizedSignature": "Default|:Microsoft.EntityFrameworkCore.Storage.DoubleTypeMapping|static=true|accessor=get",
|
|
5069
5069
|
"provenance": "Original",
|
|
5070
5070
|
"emitScope": "ClassSurface",
|
|
@@ -5480,7 +5480,7 @@
|
|
|
5480
5480
|
{
|
|
5481
5481
|
"stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Storage.FloatTypeMapping::Default:Microsoft.EntityFrameworkCore.Storage.FloatTypeMapping",
|
|
5482
5482
|
"clrName": "Default",
|
|
5483
|
-
"tsEmitName": "
|
|
5483
|
+
"tsEmitName": "default",
|
|
5484
5484
|
"normalizedSignature": "Default|:Microsoft.EntityFrameworkCore.Storage.FloatTypeMapping|static=true|accessor=get",
|
|
5485
5485
|
"provenance": "Original",
|
|
5486
5486
|
"emitScope": "ClassSurface",
|
|
@@ -5518,7 +5518,7 @@
|
|
|
5518
5518
|
{
|
|
5519
5519
|
"stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Storage.GuidTypeMapping::Default:Microsoft.EntityFrameworkCore.Storage.GuidTypeMapping",
|
|
5520
5520
|
"clrName": "Default",
|
|
5521
|
-
"tsEmitName": "
|
|
5521
|
+
"tsEmitName": "default",
|
|
5522
5522
|
"normalizedSignature": "Default|:Microsoft.EntityFrameworkCore.Storage.GuidTypeMapping|static=true|accessor=get",
|
|
5523
5523
|
"provenance": "Original",
|
|
5524
5524
|
"emitScope": "ClassSurface",
|
|
@@ -5556,7 +5556,7 @@
|
|
|
5556
5556
|
{
|
|
5557
5557
|
"stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Storage.IntTypeMapping::Default:Microsoft.EntityFrameworkCore.Storage.IntTypeMapping",
|
|
5558
5558
|
"clrName": "Default",
|
|
5559
|
-
"tsEmitName": "
|
|
5559
|
+
"tsEmitName": "default",
|
|
5560
5560
|
"normalizedSignature": "Default|:Microsoft.EntityFrameworkCore.Storage.IntTypeMapping|static=true|accessor=get",
|
|
5561
5561
|
"provenance": "Original",
|
|
5562
5562
|
"emitScope": "ClassSurface",
|
|
@@ -5626,7 +5626,7 @@
|
|
|
5626
5626
|
{
|
|
5627
5627
|
"stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Storage.LongTypeMapping::Default:Microsoft.EntityFrameworkCore.Storage.LongTypeMapping",
|
|
5628
5628
|
"clrName": "Default",
|
|
5629
|
-
"tsEmitName": "
|
|
5629
|
+
"tsEmitName": "default",
|
|
5630
5630
|
"normalizedSignature": "Default|:Microsoft.EntityFrameworkCore.Storage.LongTypeMapping|static=true|accessor=get",
|
|
5631
5631
|
"provenance": "Original",
|
|
5632
5632
|
"emitScope": "ClassSurface",
|
|
@@ -6090,7 +6090,7 @@
|
|
|
6090
6090
|
{
|
|
6091
6091
|
"stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Storage.ReaderColumn::Type:System.Type",
|
|
6092
6092
|
"clrName": "Type",
|
|
6093
|
-
"tsEmitName": "
|
|
6093
|
+
"tsEmitName": "type",
|
|
6094
6094
|
"normalizedSignature": "Type|:System.Type|static=false|accessor=get",
|
|
6095
6095
|
"provenance": "Original",
|
|
6096
6096
|
"emitScope": "ClassSurface",
|
|
@@ -8583,7 +8583,7 @@
|
|
|
8583
8583
|
{
|
|
8584
8584
|
"stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Storage.RelationalDatabaseCreator::Delete():System.Void",
|
|
8585
8585
|
"clrName": "Delete",
|
|
8586
|
-
"tsEmitName": "
|
|
8586
|
+
"tsEmitName": "delete",
|
|
8587
8587
|
"normalizedSignature": "Delete|():System.Void|static=false",
|
|
8588
8588
|
"provenance": "Original",
|
|
8589
8589
|
"emitScope": "ClassSurface",
|
|
@@ -11749,7 +11749,7 @@
|
|
|
11749
11749
|
{
|
|
11750
11750
|
"stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Storage.SByteTypeMapping::Default:Microsoft.EntityFrameworkCore.Storage.SByteTypeMapping",
|
|
11751
11751
|
"clrName": "Default",
|
|
11752
|
-
"tsEmitName": "
|
|
11752
|
+
"tsEmitName": "default",
|
|
11753
11753
|
"normalizedSignature": "Default|:Microsoft.EntityFrameworkCore.Storage.SByteTypeMapping|static=true|accessor=get",
|
|
11754
11754
|
"provenance": "Original",
|
|
11755
11755
|
"emitScope": "ClassSurface",
|
|
@@ -11787,7 +11787,7 @@
|
|
|
11787
11787
|
{
|
|
11788
11788
|
"stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Storage.ShortTypeMapping::Default:Microsoft.EntityFrameworkCore.Storage.ShortTypeMapping",
|
|
11789
11789
|
"clrName": "Default",
|
|
11790
|
-
"tsEmitName": "
|
|
11790
|
+
"tsEmitName": "default",
|
|
11791
11791
|
"normalizedSignature": "Default|:Microsoft.EntityFrameworkCore.Storage.ShortTypeMapping|static=true|accessor=get",
|
|
11792
11792
|
"provenance": "Original",
|
|
11793
11793
|
"emitScope": "ClassSurface",
|
|
@@ -11825,7 +11825,7 @@
|
|
|
11825
11825
|
{
|
|
11826
11826
|
"stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Storage.StringTypeMapping::Default:Microsoft.EntityFrameworkCore.Storage.StringTypeMapping",
|
|
11827
11827
|
"clrName": "Default",
|
|
11828
|
-
"tsEmitName": "
|
|
11828
|
+
"tsEmitName": "default",
|
|
11829
11829
|
"normalizedSignature": "Default|:Microsoft.EntityFrameworkCore.Storage.StringTypeMapping|static=true|accessor=get",
|
|
11830
11830
|
"provenance": "Original",
|
|
11831
11831
|
"emitScope": "ClassSurface",
|
|
@@ -11863,7 +11863,7 @@
|
|
|
11863
11863
|
{
|
|
11864
11864
|
"stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Storage.TimeOnlyTypeMapping::Default:Microsoft.EntityFrameworkCore.Storage.TimeOnlyTypeMapping",
|
|
11865
11865
|
"clrName": "Default",
|
|
11866
|
-
"tsEmitName": "
|
|
11866
|
+
"tsEmitName": "default",
|
|
11867
11867
|
"normalizedSignature": "Default|:Microsoft.EntityFrameworkCore.Storage.TimeOnlyTypeMapping|static=true|accessor=get",
|
|
11868
11868
|
"provenance": "Original",
|
|
11869
11869
|
"emitScope": "ClassSurface",
|
|
@@ -11901,7 +11901,7 @@
|
|
|
11901
11901
|
{
|
|
11902
11902
|
"stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Storage.TimeSpanTypeMapping::Default:Microsoft.EntityFrameworkCore.Storage.TimeSpanTypeMapping",
|
|
11903
11903
|
"clrName": "Default",
|
|
11904
|
-
"tsEmitName": "
|
|
11904
|
+
"tsEmitName": "default",
|
|
11905
11905
|
"normalizedSignature": "Default|:Microsoft.EntityFrameworkCore.Storage.TimeSpanTypeMapping|static=true|accessor=get",
|
|
11906
11906
|
"provenance": "Original",
|
|
11907
11907
|
"emitScope": "ClassSurface",
|
|
@@ -12649,7 +12649,7 @@
|
|
|
12649
12649
|
{
|
|
12650
12650
|
"stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Storage.UIntTypeMapping::Default:Microsoft.EntityFrameworkCore.Storage.UIntTypeMapping",
|
|
12651
12651
|
"clrName": "Default",
|
|
12652
|
-
"tsEmitName": "
|
|
12652
|
+
"tsEmitName": "default",
|
|
12653
12653
|
"normalizedSignature": "Default|:Microsoft.EntityFrameworkCore.Storage.UIntTypeMapping|static=true|accessor=get",
|
|
12654
12654
|
"provenance": "Original",
|
|
12655
12655
|
"emitScope": "ClassSurface",
|
|
@@ -12687,7 +12687,7 @@
|
|
|
12687
12687
|
{
|
|
12688
12688
|
"stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Storage.ULongTypeMapping::Default:Microsoft.EntityFrameworkCore.Storage.ULongTypeMapping",
|
|
12689
12689
|
"clrName": "Default",
|
|
12690
|
-
"tsEmitName": "
|
|
12690
|
+
"tsEmitName": "default",
|
|
12691
12691
|
"normalizedSignature": "Default|:Microsoft.EntityFrameworkCore.Storage.ULongTypeMapping|static=true|accessor=get",
|
|
12692
12692
|
"provenance": "Original",
|
|
12693
12693
|
"emitScope": "ClassSurface",
|
|
@@ -12725,7 +12725,7 @@
|
|
|
12725
12725
|
{
|
|
12726
12726
|
"stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Storage.UShortTypeMapping::Default:Microsoft.EntityFrameworkCore.Storage.UShortTypeMapping",
|
|
12727
12727
|
"clrName": "Default",
|
|
12728
|
-
"tsEmitName": "
|
|
12728
|
+
"tsEmitName": "default",
|
|
12729
12729
|
"normalizedSignature": "Default|:Microsoft.EntityFrameworkCore.Storage.UShortTypeMapping|static=true|accessor=get",
|
|
12730
12730
|
"provenance": "Original",
|
|
12731
12731
|
"emitScope": "ClassSurface",
|
|
@@ -1319,7 +1319,7 @@
|
|
|
1319
1319
|
{
|
|
1320
1320
|
"stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Storage.Internal.NullTypeMapping::Default:Microsoft.EntityFrameworkCore.Storage.Internal.NullTypeMapping",
|
|
1321
1321
|
"clrName": "Default",
|
|
1322
|
-
"tsEmitName": "
|
|
1322
|
+
"tsEmitName": "default",
|
|
1323
1323
|
"metadataToken": 385876404,
|
|
1324
1324
|
"canonicalSignature": ":Microsoft.EntityFrameworkCore.Storage.Internal.NullTypeMapping",
|
|
1325
1325
|
"normalizedSignature": "Default|:Microsoft.EntityFrameworkCore.Storage.Internal.NullTypeMapping|static=true|accessor=get",
|
|
@@ -1489,7 +1489,7 @@
|
|
|
1489
1489
|
],
|
|
1490
1490
|
"exposedProperties": [
|
|
1491
1491
|
{
|
|
1492
|
-
"tsName": "
|
|
1492
|
+
"tsName": "default",
|
|
1493
1493
|
"isStatic": true,
|
|
1494
1494
|
"tsSignatureId": "Default|:Microsoft.EntityFrameworkCore.Storage.Internal.NullTypeMapping|static=true|accessor=get",
|
|
1495
1495
|
"target": {
|
|
@@ -173,7 +173,7 @@ export interface NullTypeMapping$instance extends RelationalTypeMapping {
|
|
|
173
173
|
|
|
174
174
|
export const NullTypeMapping: {
|
|
175
175
|
new(storeType: string): NullTypeMapping;
|
|
176
|
-
readonly
|
|
176
|
+
readonly default: NullTypeMapping;
|
|
177
177
|
};
|
|
178
178
|
|
|
179
179
|
|
|
@@ -899,7 +899,7 @@
|
|
|
899
899
|
{
|
|
900
900
|
"stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Storage.Internal.NullTypeMapping::Default:Microsoft.EntityFrameworkCore.Storage.Internal.NullTypeMapping",
|
|
901
901
|
"clrName": "Default",
|
|
902
|
-
"tsEmitName": "
|
|
902
|
+
"tsEmitName": "default",
|
|
903
903
|
"normalizedSignature": "Default|:Microsoft.EntityFrameworkCore.Storage.Internal.NullTypeMapping|static=true|accessor=get",
|
|
904
904
|
"provenance": "Original",
|
|
905
905
|
"emitScope": "ClassSurface",
|
|
@@ -23,7 +23,7 @@ import type { Expression } from "@tsonic/dotnet/System.Linq.Expressions.js";
|
|
|
23
23
|
import type { JsonReaderState, JsonTokenType, Utf8JsonReader, Utf8JsonWriter } from "@tsonic/dotnet/System.Text.Json.js";
|
|
24
24
|
|
|
25
25
|
export interface IJsonValueReaderWriterSource$instance {
|
|
26
|
-
findReaderWriter(
|
|
26
|
+
findReaderWriter(type: Type): JsonValueReaderWriter | undefined;
|
|
27
27
|
}
|
|
28
28
|
|
|
29
29
|
|
|
@@ -551,7 +551,7 @@ export const JsonValueReaderWriter_1: {
|
|
|
551
551
|
export type JsonValueReaderWriter_1<TValue> = JsonValueReaderWriter_1$instance<TValue>;
|
|
552
552
|
|
|
553
553
|
export interface JsonValueReaderWriterSource$instance {
|
|
554
|
-
findReaderWriter(
|
|
554
|
+
findReaderWriter(type: Type): JsonValueReaderWriter | undefined;
|
|
555
555
|
}
|
|
556
556
|
|
|
557
557
|
|
|
@@ -1658,7 +1658,7 @@
|
|
|
1658
1658
|
{
|
|
1659
1659
|
"stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Storage.ValueConversion.ConverterMappingHints::With(Microsoft.EntityFrameworkCore.Storage.ValueConversion.ConverterMappingHints):Microsoft.EntityFrameworkCore.Storage.ValueConversion.ConverterMappingHints",
|
|
1660
1660
|
"clrName": "With",
|
|
1661
|
-
"tsEmitName": "
|
|
1661
|
+
"tsEmitName": "with",
|
|
1662
1662
|
"metadataToken": 100664710,
|
|
1663
1663
|
"canonicalSignature": "(Microsoft.EntityFrameworkCore.Storage.ValueConversion.ConverterMappingHints):Microsoft.EntityFrameworkCore.Storage.ValueConversion.ConverterMappingHints",
|
|
1664
1664
|
"normalizedSignature": "With|(Microsoft.EntityFrameworkCore.Storage.ValueConversion.ConverterMappingHints):Microsoft.EntityFrameworkCore.Storage.ValueConversion.ConverterMappingHints|static=false",
|
|
@@ -1772,7 +1772,7 @@
|
|
|
1772
1772
|
],
|
|
1773
1773
|
"exposedMethods": [
|
|
1774
1774
|
{
|
|
1775
|
-
"tsName": "
|
|
1775
|
+
"tsName": "with",
|
|
1776
1776
|
"isStatic": false,
|
|
1777
1777
|
"tsSignatureId": "With|(Microsoft.EntityFrameworkCore.Storage.ValueConversion.ConverterMappingHints):Microsoft.EntityFrameworkCore.Storage.ValueConversion.ConverterMappingHints|static=false",
|
|
1778
1778
|
"target": {
|
|
@@ -5892,7 +5892,7 @@
|
|
|
5892
5892
|
{
|
|
5893
5893
|
"stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Storage.ValueConversion.RelationalConverterMappingHints::With(Microsoft.EntityFrameworkCore.Storage.ValueConversion.ConverterMappingHints):Microsoft.EntityFrameworkCore.Storage.ValueConversion.ConverterMappingHints",
|
|
5894
5894
|
"clrName": "With",
|
|
5895
|
-
"tsEmitName": "
|
|
5895
|
+
"tsEmitName": "with",
|
|
5896
5896
|
"metadataToken": 100665803,
|
|
5897
5897
|
"canonicalSignature": "(Microsoft.EntityFrameworkCore.Storage.ValueConversion.ConverterMappingHints):Microsoft.EntityFrameworkCore.Storage.ValueConversion.ConverterMappingHints",
|
|
5898
5898
|
"normalizedSignature": "With|(Microsoft.EntityFrameworkCore.Storage.ValueConversion.ConverterMappingHints):Microsoft.EntityFrameworkCore.Storage.ValueConversion.ConverterMappingHints|static=false",
|
|
@@ -5974,7 +5974,7 @@
|
|
|
5974
5974
|
],
|
|
5975
5975
|
"exposedMethods": [
|
|
5976
5976
|
{
|
|
5977
|
-
"tsName": "
|
|
5977
|
+
"tsName": "with",
|
|
5978
5978
|
"isStatic": false,
|
|
5979
5979
|
"tsSignatureId": "With|(Microsoft.EntityFrameworkCore.Storage.ValueConversion.ConverterMappingHints):Microsoft.EntityFrameworkCore.Storage.ValueConversion.ConverterMappingHints|static=false",
|
|
5980
5980
|
"target": {
|