@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
|
@@ -90,8 +90,8 @@ export interface IConventionComplexTypeBuilder$instance extends IConventionTypeB
|
|
|
90
90
|
canRemoveProperty(property: IConventionProperty, fromDataAnnotation?: boolean): boolean;
|
|
91
91
|
canSetAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): boolean;
|
|
92
92
|
canSetChangeTrackingStrategy(changeTrackingStrategy: Nullable<ChangeTrackingStrategy>, fromDataAnnotation?: boolean): boolean;
|
|
93
|
-
canSetDiscriminator(name: string,
|
|
94
|
-
canSetDiscriminator(
|
|
93
|
+
canSetDiscriminator(name: string, type: Type, fromDataAnnotation?: boolean): boolean;
|
|
94
|
+
canSetDiscriminator(type: Type, fromDataAnnotation?: boolean): boolean;
|
|
95
95
|
complexProperty(memberInfo: MemberInfo, complexType?: Type, fromDataAnnotation?: boolean): IConventionComplexPropertyBuilder | undefined;
|
|
96
96
|
complexProperty(propertyType: Type, propertyName: string, complexType?: Type, fromDataAnnotation?: boolean): IConventionComplexPropertyBuilder | undefined;
|
|
97
97
|
getOrCreateProperties(memberInfos: IEnumerable<MemberInfo>, fromDataAnnotation?: boolean): IReadOnlyList<IConventionProperty> | undefined;
|
|
@@ -104,8 +104,8 @@ export interface IConventionComplexTypeBuilder$instance extends IConventionTypeB
|
|
|
104
104
|
hasDiscriminator(fromDataAnnotation?: boolean): IConventionComplexTypeDiscriminatorBuilder | undefined;
|
|
105
105
|
hasDiscriminator(memberInfo: MemberInfo, fromDataAnnotation?: boolean): IConventionComplexTypeDiscriminatorBuilder | undefined;
|
|
106
106
|
hasDiscriminator(name: string, fromDataAnnotation?: boolean): IConventionComplexTypeDiscriminatorBuilder | undefined;
|
|
107
|
-
hasDiscriminator(name: string,
|
|
108
|
-
hasDiscriminator(
|
|
107
|
+
hasDiscriminator(name: string, type: Type, fromDataAnnotation?: boolean): IConventionComplexTypeDiscriminatorBuilder | undefined;
|
|
108
|
+
hasDiscriminator(type: Type, fromDataAnnotation?: boolean): IConventionComplexTypeDiscriminatorBuilder | undefined;
|
|
109
109
|
hasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
|
|
110
110
|
hasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionComplexTypeBuilder | undefined;
|
|
111
111
|
hasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionTypeBaseBuilder | undefined;
|
|
@@ -218,7 +218,7 @@ export interface IConventionEntityTypeBuilder$instance extends IConventionTypeBa
|
|
|
218
218
|
readonly modelBuilder: IConventionModelBuilder;
|
|
219
219
|
canHaveComplexProperty(memberInfo: MemberInfo, complexType?: Type, fromDataAnnotation?: boolean): boolean;
|
|
220
220
|
canHaveComplexProperty(propertyType: Type, propertyName: string, complexType?: Type, fromDataAnnotation?: boolean): boolean;
|
|
221
|
-
canHaveNavigation(navigationName: string,
|
|
221
|
+
canHaveNavigation(navigationName: string, type: Type, fromDataAnnotation?: boolean): boolean;
|
|
222
222
|
canHaveProperty(propertyType: Type, propertyName: string, fromDataAnnotation?: boolean): boolean;
|
|
223
223
|
canHaveProperty(memberInfo: MemberInfo, fromDataAnnotation?: boolean): boolean;
|
|
224
224
|
canHaveServiceProperty(memberInfo: MemberInfo, fromDataAnnotation?: boolean): boolean;
|
|
@@ -235,8 +235,8 @@ export interface IConventionEntityTypeBuilder$instance extends IConventionTypeBa
|
|
|
235
235
|
canSetAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): boolean;
|
|
236
236
|
canSetBaseType(baseEntityType: IConventionEntityType, fromDataAnnotation?: boolean): boolean;
|
|
237
237
|
canSetChangeTrackingStrategy(changeTrackingStrategy: Nullable<ChangeTrackingStrategy>, fromDataAnnotation?: boolean): boolean;
|
|
238
|
-
canSetDiscriminator(
|
|
239
|
-
canSetDiscriminator(name: string,
|
|
238
|
+
canSetDiscriminator(type: Type, fromDataAnnotation?: boolean): boolean;
|
|
239
|
+
canSetDiscriminator(name: string, type: Type, fromDataAnnotation?: boolean): boolean;
|
|
240
240
|
canSetPrimaryKey(propertyNames: IReadOnlyList<System_Internal.String>, fromDataAnnotation?: boolean): boolean;
|
|
241
241
|
canSetQueryFilter(filter: LambdaExpression, fromDataAnnotation?: boolean): boolean;
|
|
242
242
|
canSetQueryFilter(filterKey: string, filter: LambdaExpression, fromDataAnnotation?: boolean): boolean;
|
|
@@ -254,8 +254,8 @@ export interface IConventionEntityTypeBuilder$instance extends IConventionTypeBa
|
|
|
254
254
|
hasDiscriminator(fromDataAnnotation?: boolean): IConventionDiscriminatorBuilder | undefined;
|
|
255
255
|
hasDiscriminator(memberInfo: MemberInfo, fromDataAnnotation?: boolean): IConventionDiscriminatorBuilder | undefined;
|
|
256
256
|
hasDiscriminator(name: string, fromDataAnnotation?: boolean): IConventionDiscriminatorBuilder | undefined;
|
|
257
|
-
hasDiscriminator(name: string,
|
|
258
|
-
hasDiscriminator(
|
|
257
|
+
hasDiscriminator(name: string, type: Type, fromDataAnnotation?: boolean): IConventionDiscriminatorBuilder | undefined;
|
|
258
|
+
hasDiscriminator(type: Type, fromDataAnnotation?: boolean): IConventionDiscriminatorBuilder | undefined;
|
|
259
259
|
hasIndex(propertyNames: IReadOnlyList<System_Internal.String>, fromDataAnnotation?: boolean): IConventionIndexBuilder | undefined;
|
|
260
260
|
hasIndex(propertyNames: IReadOnlyList<System_Internal.String>, name: string, fromDataAnnotation?: boolean): IConventionIndexBuilder | undefined;
|
|
261
261
|
hasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
|
|
@@ -389,15 +389,15 @@ export type IConventionKeyBuilder = IConventionKeyBuilder$instance;
|
|
|
389
389
|
export interface IConventionModelBuilder$instance extends IConventionAnnotatableBuilder {
|
|
390
390
|
readonly metadata: IConventionModel;
|
|
391
391
|
readonly modelBuilder: IConventionModelBuilder;
|
|
392
|
-
canHaveSharedTypeEntity(name: string,
|
|
392
|
+
canHaveSharedTypeEntity(name: string, type: Type, fromDataAnnotation?: boolean): boolean;
|
|
393
393
|
canRemoveEntity(entityType: IConventionEntityType, fromDataAnnotation?: boolean): boolean;
|
|
394
394
|
canSetAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): boolean;
|
|
395
395
|
canSetChangeTrackingStrategy(changeTrackingStrategy: Nullable<ChangeTrackingStrategy>, fromDataAnnotation?: boolean): boolean;
|
|
396
|
-
complexType(
|
|
396
|
+
complexType(type: Type, fromDataAnnotation?: boolean): IConventionModelBuilder | undefined;
|
|
397
397
|
entity(name: string, shouldBeOwned?: Nullable<System_Internal.Boolean>, fromDataAnnotation?: boolean): IConventionEntityTypeBuilder | undefined;
|
|
398
398
|
entity(name: string, definingNavigationName: string, definingEntityType: IConventionEntityType, fromDataAnnotation?: boolean): IConventionEntityTypeBuilder | undefined;
|
|
399
|
-
entity(
|
|
400
|
-
entity(
|
|
399
|
+
entity(type: Type, shouldBeOwned?: Nullable<System_Internal.Boolean>, fromDataAnnotation?: boolean): IConventionEntityTypeBuilder | undefined;
|
|
400
|
+
entity(type: Type, definingNavigationName: string, definingEntityType: IConventionEntityType, fromDataAnnotation?: boolean): IConventionEntityTypeBuilder | undefined;
|
|
401
401
|
hasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
|
|
402
402
|
hasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionModelBuilder | undefined;
|
|
403
403
|
hasChangeTrackingStrategy(changeTrackingStrategy: Nullable<ChangeTrackingStrategy>, fromDataAnnotation?: boolean): IConventionModelBuilder | undefined;
|
|
@@ -405,9 +405,9 @@ export interface IConventionModelBuilder$instance extends IConventionAnnotatable
|
|
|
405
405
|
hasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionModelBuilder | undefined;
|
|
406
406
|
hasNoEntityType(entityType: IConventionEntityType, fromDataAnnotation?: boolean): IConventionModelBuilder | undefined;
|
|
407
407
|
isIgnored(typeName: string, fromDataAnnotation?: boolean): boolean;
|
|
408
|
-
isIgnored(
|
|
409
|
-
owned(
|
|
410
|
-
sharedTypeEntity(name: string,
|
|
408
|
+
isIgnored(type: Type, fromDataAnnotation?: boolean): boolean;
|
|
409
|
+
owned(type: Type, fromDataAnnotation?: boolean): IConventionOwnedEntityTypeBuilder | undefined;
|
|
410
|
+
sharedTypeEntity(name: string, type: Type, shouldBeOwned?: Nullable<System_Internal.Boolean>, fromDataAnnotation?: boolean): IConventionEntityTypeBuilder | undefined;
|
|
411
411
|
canRemoveAnnotation(name: string, fromDataAnnotation?: boolean): boolean;
|
|
412
412
|
}
|
|
413
413
|
|
|
@@ -518,12 +518,12 @@ export interface IConventionSequenceBuilder$instance extends IConventionAnnotata
|
|
|
518
518
|
canRemoveAnnotation(name: string, fromDataAnnotation?: boolean): boolean;
|
|
519
519
|
canSetAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): boolean;
|
|
520
520
|
canSetIncrementsBy(increment: Nullable<System_Internal.Int32>, fromDataAnnotation?: boolean): boolean;
|
|
521
|
-
canSetType(
|
|
521
|
+
canSetType(type: Type, fromDataAnnotation?: boolean): boolean;
|
|
522
522
|
hasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
|
|
523
523
|
hasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionSequenceBuilder | undefined;
|
|
524
524
|
hasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
|
|
525
525
|
hasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionSequenceBuilder | undefined;
|
|
526
|
-
hasType(
|
|
526
|
+
hasType(type: Type, fromDataAnnotation?: boolean): IConventionSequenceBuilder | undefined;
|
|
527
527
|
incrementsBy(increment: Nullable<System_Internal.Int32>, fromDataAnnotation?: boolean): IConventionSequenceBuilder | undefined;
|
|
528
528
|
}
|
|
529
529
|
|
|
@@ -662,8 +662,8 @@ export interface IConventionTypeBaseBuilder$instance extends IConventionAnnotata
|
|
|
662
662
|
canRemoveProperty(property: IConventionProperty, fromDataAnnotation?: boolean): boolean;
|
|
663
663
|
canSetAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): boolean;
|
|
664
664
|
canSetChangeTrackingStrategy(changeTrackingStrategy: Nullable<ChangeTrackingStrategy>, fromDataAnnotation?: boolean): boolean;
|
|
665
|
-
canSetDiscriminator(name: string,
|
|
666
|
-
canSetDiscriminator(
|
|
665
|
+
canSetDiscriminator(name: string, type: Type, fromDataAnnotation?: boolean): boolean;
|
|
666
|
+
canSetDiscriminator(type: Type, fromDataAnnotation?: boolean): boolean;
|
|
667
667
|
complexProperty(memberInfo: MemberInfo, complexType?: Type, fromDataAnnotation?: boolean): IConventionComplexPropertyBuilder | undefined;
|
|
668
668
|
complexProperty(propertyType: Type, propertyName: string, complexType?: Type, fromDataAnnotation?: boolean): IConventionComplexPropertyBuilder | undefined;
|
|
669
669
|
getOrCreateProperties(memberInfos: IEnumerable<MemberInfo>, fromDataAnnotation?: boolean): IReadOnlyList<IConventionProperty> | undefined;
|
|
@@ -1128,7 +1128,7 @@ export interface ComplexPropertyBuilder$instance {
|
|
|
1128
1128
|
getHashCode(): int;
|
|
1129
1129
|
hasChangeTrackingStrategy(changeTrackingStrategy: ChangeTrackingStrategy): ComplexPropertyBuilder;
|
|
1130
1130
|
hasDiscriminator(): ComplexTypeDiscriminatorBuilder;
|
|
1131
|
-
hasDiscriminator(name: string,
|
|
1131
|
+
hasDiscriminator(name: string, type: Type): ComplexTypeDiscriminatorBuilder;
|
|
1132
1132
|
hasDiscriminator<TDiscriminator>(name: string): ComplexTypeDiscriminatorBuilder_1<TDiscriminator>;
|
|
1133
1133
|
hasField(fieldName: string): ComplexPropertyBuilder;
|
|
1134
1134
|
hasNoDiscriminator(): ComplexPropertyBuilder;
|
|
@@ -1189,7 +1189,7 @@ export interface ComplexPropertyBuilder_1$instance<TComplex> extends ComplexProp
|
|
|
1189
1189
|
complexProperty(propertyType: Type, propertyName: string, complexTypeName: string, buildAction: Action<ComplexPropertyBuilder>): ComplexPropertyBuilder;
|
|
1190
1190
|
hasChangeTrackingStrategy(changeTrackingStrategy: ChangeTrackingStrategy): ComplexPropertyBuilder;
|
|
1191
1191
|
hasDiscriminator(): ComplexTypeDiscriminatorBuilder;
|
|
1192
|
-
hasDiscriminator(name: string,
|
|
1192
|
+
hasDiscriminator(name: string, type: Type): ComplexTypeDiscriminatorBuilder;
|
|
1193
1193
|
hasDiscriminator<TDiscriminator>(name: string): ComplexTypeDiscriminatorBuilder_1<TDiscriminator>;
|
|
1194
1194
|
hasField(fieldName: string): ComplexPropertyBuilder;
|
|
1195
1195
|
hasNoDiscriminator(): ComplexPropertyBuilder;
|
|
@@ -1671,7 +1671,7 @@ export interface EntityTypeBuilder$instance {
|
|
|
1671
1671
|
hasData(...data: unknown[]): DataBuilder;
|
|
1672
1672
|
hasData(data: IEnumerable<unknown>): DataBuilder;
|
|
1673
1673
|
hasDiscriminator(): DiscriminatorBuilder;
|
|
1674
|
-
hasDiscriminator(name: string,
|
|
1674
|
+
hasDiscriminator(name: string, type: Type): DiscriminatorBuilder;
|
|
1675
1675
|
hasDiscriminator<TDiscriminator>(name: string): DiscriminatorBuilder_1<TDiscriminator>;
|
|
1676
1676
|
hasIndex(...propertyNames: string[]): IndexBuilder;
|
|
1677
1677
|
hasIndex(propertyNames: string[], name: string): IndexBuilder;
|
|
@@ -1764,7 +1764,7 @@ export interface EntityTypeBuilder_1$instance<TEntity> extends EntityTypeBuilder
|
|
|
1764
1764
|
hasData(...data: unknown[]): DataBuilder;
|
|
1765
1765
|
hasData(data: IEnumerable<unknown>): DataBuilder;
|
|
1766
1766
|
hasDiscriminator(): DiscriminatorBuilder;
|
|
1767
|
-
hasDiscriminator(name: string,
|
|
1767
|
+
hasDiscriminator(name: string, type: Type): DiscriminatorBuilder;
|
|
1768
1768
|
hasDiscriminator<TDiscriminator>(name: string): DiscriminatorBuilder_1<TDiscriminator>;
|
|
1769
1769
|
hasIndex(...propertyNames: string[]): IndexBuilder_1<TEntity>;
|
|
1770
1770
|
hasIndex(propertyNames: string[], name: string): IndexBuilder_1<TEntity>;
|
|
@@ -174,7 +174,7 @@ export interface IEntityTypeBaseTypeChangedConvention$instance extends IConventi
|
|
|
174
174
|
export type IEntityTypeBaseTypeChangedConvention = IEntityTypeBaseTypeChangedConvention$instance;
|
|
175
175
|
|
|
176
176
|
export interface IEntityTypeIgnoredConvention$instance extends IConvention {
|
|
177
|
-
processEntityTypeIgnored(modelBuilder: IConventionModelBuilder, name: string,
|
|
177
|
+
processEntityTypeIgnored(modelBuilder: IConventionModelBuilder, name: string, type: Type, context: IConventionContext_1<System_Internal.String>): void;
|
|
178
178
|
}
|
|
179
179
|
|
|
180
180
|
|
|
@@ -561,7 +561,7 @@ export interface ITriggerRemovedConvention$instance extends IConvention$instance
|
|
|
561
561
|
export type ITriggerRemovedConvention = ITriggerRemovedConvention$instance;
|
|
562
562
|
|
|
563
563
|
export interface ITypeIgnoredConvention$instance extends IConvention {
|
|
564
|
-
processTypeIgnored(modelBuilder: IConventionModelBuilder, name: string,
|
|
564
|
+
processTypeIgnored(modelBuilder: IConventionModelBuilder, name: string, type: Type, context: IConventionContext_1<System_Internal.String>): void;
|
|
565
565
|
}
|
|
566
566
|
|
|
567
567
|
|
|
@@ -1431,8 +1431,8 @@ export interface NavigationAttributeConventionBase_1$instance<TAttribute extends
|
|
|
1431
1431
|
processNavigationAdded(navigationBuilder: IConventionNavigationBuilder, attribute: TAttribute, context: IConventionContext_1<IConventionNavigationBuilder>): void;
|
|
1432
1432
|
processSkipNavigationAdded(skipNavigationBuilder: IConventionSkipNavigationBuilder, context: IConventionContext_1<IConventionSkipNavigationBuilder>): void;
|
|
1433
1433
|
processSkipNavigationAdded(skipNavigationBuilder: IConventionSkipNavigationBuilder, attribute: TAttribute, context: IConventionContext_1<IConventionSkipNavigationBuilder>): void;
|
|
1434
|
-
processTypeIgnored(modelBuilder: IConventionModelBuilder, name: string,
|
|
1435
|
-
processTypeIgnored(modelBuilder: IConventionModelBuilder,
|
|
1434
|
+
processTypeIgnored(modelBuilder: IConventionModelBuilder, name: string, type: Type, context: IConventionContext_1<System_Internal.String>): void;
|
|
1435
|
+
processTypeIgnored(modelBuilder: IConventionModelBuilder, type: Type, navigationMemberInfo: MemberInfo, targetClrType: Type, attribute: TAttribute, context: IConventionContext_1<System_Internal.String>): void;
|
|
1436
1436
|
}
|
|
1437
1437
|
|
|
1438
1438
|
|
|
@@ -1989,7 +1989,7 @@ export interface RelationshipDiscoveryConvention$instance extends IConvention {
|
|
|
1989
1989
|
processForeignKeyRemoved(entityTypeBuilder: IConventionEntityTypeBuilder, foreignKey: IConventionForeignKey, context: IConventionContext_1<IConventionForeignKey>): void;
|
|
1990
1990
|
processNavigationAdded(navigationBuilder: IConventionNavigationBuilder, context: IConventionContext_1<IConventionNavigationBuilder>): void;
|
|
1991
1991
|
processNavigationRemoved(sourceEntityTypeBuilder: IConventionEntityTypeBuilder, targetEntityTypeBuilder: IConventionEntityTypeBuilder, navigationName: string, memberInfo: MemberInfo, context: IConventionContext_1<System_Internal.String>): void;
|
|
1992
|
-
processTypeIgnored(modelBuilder: IConventionModelBuilder, name: string,
|
|
1992
|
+
processTypeIgnored(modelBuilder: IConventionModelBuilder, name: string, type: Type, context: IConventionContext_1<System_Internal.String>): void;
|
|
1993
1993
|
}
|
|
1994
1994
|
|
|
1995
1995
|
|
|
@@ -213,7 +213,7 @@
|
|
|
213
213
|
{
|
|
214
214
|
"stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.ProviderConventionSetBuilderDependencies::With(Microsoft.EntityFrameworkCore.Infrastructure.ICurrentDbContext):Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.ProviderConventionSetBuilderDependencies",
|
|
215
215
|
"clrName": "With",
|
|
216
|
-
"tsEmitName": "
|
|
216
|
+
"tsEmitName": "with",
|
|
217
217
|
"metadataToken": 100671411,
|
|
218
218
|
"canonicalSignature": "(Microsoft.EntityFrameworkCore.Infrastructure.ICurrentDbContext):Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.ProviderConventionSetBuilderDependencies",
|
|
219
219
|
"normalizedSignature": "With|(Microsoft.EntityFrameworkCore.Infrastructure.ICurrentDbContext):Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.ProviderConventionSetBuilderDependencies|static=false",
|
|
@@ -425,7 +425,7 @@
|
|
|
425
425
|
],
|
|
426
426
|
"exposedMethods": [
|
|
427
427
|
{
|
|
428
|
-
"tsName": "
|
|
428
|
+
"tsName": "with",
|
|
429
429
|
"isStatic": false,
|
|
430
430
|
"tsSignatureId": "With|(Microsoft.EntityFrameworkCore.Infrastructure.ICurrentDbContext):Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.ProviderConventionSetBuilderDependencies|static=false",
|
|
431
431
|
"target": {
|
package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure/internal/index.d.ts
CHANGED
|
@@ -71,7 +71,7 @@ export interface ProviderConventionSetBuilderDependencies$instance {
|
|
|
71
71
|
equals(other: ProviderConventionSetBuilderDependencies): boolean;
|
|
72
72
|
getHashCode(): int;
|
|
73
73
|
toString(): string;
|
|
74
|
-
|
|
74
|
+
with(currentContext: ICurrentDbContext): ProviderConventionSetBuilderDependencies;
|
|
75
75
|
}
|
|
76
76
|
|
|
77
77
|
|
package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure/internal/metadata.json
CHANGED
|
@@ -174,7 +174,7 @@
|
|
|
174
174
|
{
|
|
175
175
|
"stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.ProviderConventionSetBuilderDependencies::With(Microsoft.EntityFrameworkCore.Infrastructure.ICurrentDbContext):Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.ProviderConventionSetBuilderDependencies",
|
|
176
176
|
"clrName": "With",
|
|
177
|
-
"tsEmitName": "
|
|
177
|
+
"tsEmitName": "with",
|
|
178
178
|
"normalizedSignature": "With|(Microsoft.EntityFrameworkCore.Infrastructure.ICurrentDbContext):Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure.ProviderConventionSetBuilderDependencies|static=false",
|
|
179
179
|
"provenance": "Original",
|
|
180
180
|
"emitScope": "ClassSurface",
|
|
@@ -77,7 +77,7 @@ export interface ConventionDispatcher$instance {
|
|
|
77
77
|
onEntityTypeAnnotationChanged(entityTypeBuilder: IConventionEntityTypeBuilder, name: string, annotation: IConventionAnnotation, oldAnnotation: IConventionAnnotation): IConventionAnnotation | undefined;
|
|
78
78
|
onEntityTypeBaseTypeChanged(entityTypeBuilder: IConventionEntityTypeBuilder, newBaseType: IConventionEntityType, previousBaseType: IConventionEntityType): IConventionEntityType | undefined;
|
|
79
79
|
onEntityTypeMemberIgnored(entityTypeBuilder: IConventionEntityTypeBuilder, name: string): string | undefined;
|
|
80
|
-
onEntityTypeRemoved(modelBuilder: IConventionModelBuilder,
|
|
80
|
+
onEntityTypeRemoved(modelBuilder: IConventionModelBuilder, type: IConventionEntityType): IConventionEntityType | undefined;
|
|
81
81
|
onForeignKeyAdded(relationshipBuilder: IConventionForeignKeyBuilder): IConventionForeignKeyBuilder | undefined;
|
|
82
82
|
onForeignKeyAnnotationChanged(relationshipBuilder: IConventionForeignKeyBuilder, name: string, annotation: IConventionAnnotation, oldAnnotation: IConventionAnnotation): IConventionAnnotation | undefined;
|
|
83
83
|
onForeignKeyDependentRequirednessChanged(relationshipBuilder: IConventionForeignKeyBuilder): Nullable<System_Internal.Boolean>;
|
|
@@ -116,7 +116,7 @@ export interface ConventionDispatcher$instance {
|
|
|
116
116
|
onSkipNavigationRemoved(entityTypeBuilder: IConventionEntityTypeBuilder, navigation: IConventionSkipNavigation): IConventionSkipNavigation | undefined;
|
|
117
117
|
onTriggerAdded(triggerBuilder: IConventionTriggerBuilder): IConventionTriggerBuilder | undefined;
|
|
118
118
|
onTriggerRemoved(entityTypeBuilder: IConventionEntityTypeBuilder, trigger: IConventionTrigger): IConventionTrigger | undefined;
|
|
119
|
-
onTypeIgnored(modelBuilder: IConventionModelBuilder, name: string,
|
|
119
|
+
onTypeIgnored(modelBuilder: IConventionModelBuilder, name: string, type: Type): string | undefined;
|
|
120
120
|
track<T>(func: Func<T>, foreignKey: IConventionForeignKey): T;
|
|
121
121
|
}
|
|
122
122
|
|
|
@@ -3356,7 +3356,7 @@
|
|
|
3356
3356
|
{
|
|
3357
3357
|
"stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Metadata.IDbFunctionParameter::Function:Microsoft.EntityFrameworkCore.Metadata.IDbFunction",
|
|
3358
3358
|
"clrName": "Function",
|
|
3359
|
-
"tsEmitName": "
|
|
3359
|
+
"tsEmitName": "function",
|
|
3360
3360
|
"metadataToken": 385877094,
|
|
3361
3361
|
"canonicalSignature": ":Microsoft.EntityFrameworkCore.Metadata.IDbFunction",
|
|
3362
3362
|
"normalizedSignature": "Function|:Microsoft.EntityFrameworkCore.Metadata.IDbFunction|static=false|accessor=get",
|
|
@@ -3535,7 +3535,7 @@
|
|
|
3535
3535
|
}
|
|
3536
3536
|
},
|
|
3537
3537
|
{
|
|
3538
|
-
"tsName": "
|
|
3538
|
+
"tsName": "function",
|
|
3539
3539
|
"isStatic": false,
|
|
3540
3540
|
"tsSignatureId": "Function|:Microsoft.EntityFrameworkCore.Metadata.IDbFunction|static=false|accessor=get",
|
|
3541
3541
|
"target": {
|
|
@@ -15772,7 +15772,7 @@
|
|
|
15772
15772
|
{
|
|
15773
15773
|
"stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Metadata.Internal.TypeIdentity::Type:System.Type",
|
|
15774
15774
|
"clrName": "Type",
|
|
15775
|
-
"tsEmitName": "
|
|
15775
|
+
"tsEmitName": "type",
|
|
15776
15776
|
"metadataToken": 385877430,
|
|
15777
15777
|
"canonicalSignature": ":System.Type",
|
|
15778
15778
|
"normalizedSignature": "Type|:System.Type|static=false|accessor=get",
|
|
@@ -15876,7 +15876,7 @@
|
|
|
15876
15876
|
}
|
|
15877
15877
|
},
|
|
15878
15878
|
{
|
|
15879
|
-
"tsName": "
|
|
15879
|
+
"tsName": "type",
|
|
15880
15880
|
"isStatic": false,
|
|
15881
15881
|
"tsSignatureId": "Type|:System.Type|static=false|accessor=get",
|
|
15882
15882
|
"target": {
|
|
@@ -18676,7 +18676,7 @@
|
|
|
18676
18676
|
{
|
|
18677
18677
|
"stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Metadata.Internal.ClrIndexedCollectionAccessor\u00603::Get(System.Object,System.Int32):System.Object",
|
|
18678
18678
|
"clrName": "Get",
|
|
18679
|
-
"tsEmitName": "
|
|
18679
|
+
"tsEmitName": "get",
|
|
18680
18680
|
"metadataToken": 100668263,
|
|
18681
18681
|
"canonicalSignature": "(System.Object,System.Int32):System.Object",
|
|
18682
18682
|
"normalizedSignature": "Get|(System.Object,System.Int32):System.Object|static=false",
|
|
@@ -18690,7 +18690,7 @@
|
|
|
18690
18690
|
{
|
|
18691
18691
|
"stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Metadata.Internal.ClrIndexedCollectionAccessor\u00603::Get(TStructural,System.Int32):TElement",
|
|
18692
18692
|
"clrName": "Get",
|
|
18693
|
-
"tsEmitName": "
|
|
18693
|
+
"tsEmitName": "get",
|
|
18694
18694
|
"metadataToken": 100668264,
|
|
18695
18695
|
"canonicalSignature": "(TStructural,System.Int32):TElement",
|
|
18696
18696
|
"normalizedSignature": "Get|(TStructural,System.Int32):TElement|static=false",
|
|
@@ -18704,7 +18704,7 @@
|
|
|
18704
18704
|
{
|
|
18705
18705
|
"stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Metadata.Internal.ClrIndexedCollectionAccessor\u00603::Set(System.Object,System.Int32,System.Object,System.Boolean):System.Void",
|
|
18706
18706
|
"clrName": "Set",
|
|
18707
|
-
"tsEmitName": "
|
|
18707
|
+
"tsEmitName": "set",
|
|
18708
18708
|
"metadataToken": 100668265,
|
|
18709
18709
|
"canonicalSignature": "(System.Object,System.Int32,System.Object,System.Boolean):System.Void",
|
|
18710
18710
|
"normalizedSignature": "Set|(System.Object,System.Int32,System.Object,System.Boolean):System.Void|static=false",
|
|
@@ -18718,7 +18718,7 @@
|
|
|
18718
18718
|
{
|
|
18719
18719
|
"stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Metadata.Internal.ClrIndexedCollectionAccessor\u00603::Set(TStructural,System.Int32,TElement,System.Boolean):System.Void",
|
|
18720
18720
|
"clrName": "Set",
|
|
18721
|
-
"tsEmitName": "
|
|
18721
|
+
"tsEmitName": "set",
|
|
18722
18722
|
"metadataToken": 100668266,
|
|
18723
18723
|
"canonicalSignature": "(TStructural,System.Int32,TElement,System.Boolean):System.Void",
|
|
18724
18724
|
"normalizedSignature": "Set|(TStructural,System.Int32,TElement,System.Boolean):System.Void|static=false",
|
|
@@ -18803,7 +18803,7 @@
|
|
|
18803
18803
|
],
|
|
18804
18804
|
"exposedMethods": [
|
|
18805
18805
|
{
|
|
18806
|
-
"tsName": "
|
|
18806
|
+
"tsName": "get",
|
|
18807
18807
|
"isStatic": false,
|
|
18808
18808
|
"tsSignatureId": "Get|(System.Object,System.Int32):System.Object|static=false",
|
|
18809
18809
|
"target": {
|
|
@@ -18813,7 +18813,7 @@
|
|
|
18813
18813
|
}
|
|
18814
18814
|
},
|
|
18815
18815
|
{
|
|
18816
|
-
"tsName": "
|
|
18816
|
+
"tsName": "get",
|
|
18817
18817
|
"isStatic": false,
|
|
18818
18818
|
"tsSignatureId": "Get|(TStructural,System.Int32):TElement|static=false",
|
|
18819
18819
|
"target": {
|
|
@@ -18823,7 +18823,7 @@
|
|
|
18823
18823
|
}
|
|
18824
18824
|
},
|
|
18825
18825
|
{
|
|
18826
|
-
"tsName": "
|
|
18826
|
+
"tsName": "set",
|
|
18827
18827
|
"isStatic": false,
|
|
18828
18828
|
"tsSignatureId": "Set|(System.Object,System.Int32,System.Object,System.Boolean):System.Void|static=false",
|
|
18829
18829
|
"target": {
|
|
@@ -18833,7 +18833,7 @@
|
|
|
18833
18833
|
}
|
|
18834
18834
|
},
|
|
18835
18835
|
{
|
|
18836
|
-
"tsName": "
|
|
18836
|
+
"tsName": "set",
|
|
18837
18837
|
"isStatic": false,
|
|
18838
18838
|
"tsSignatureId": "Set|(TStructural,System.Int32,TElement,System.Boolean):System.Void|static=false",
|
|
18839
18839
|
"target": {
|
|
@@ -41432,7 +41432,7 @@
|
|
|
41432
41432
|
{
|
|
41433
41433
|
"stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Metadata.Internal.DbFunctionParameter::Function:Microsoft.EntityFrameworkCore.Metadata.Internal.DbFunction",
|
|
41434
41434
|
"clrName": "Function",
|
|
41435
|
-
"tsEmitName": "
|
|
41435
|
+
"tsEmitName": "function",
|
|
41436
41436
|
"metadataToken": 385877470,
|
|
41437
41437
|
"canonicalSignature": ":Microsoft.EntityFrameworkCore.Metadata.Internal.DbFunction",
|
|
41438
41438
|
"normalizedSignature": "Function|:Microsoft.EntityFrameworkCore.Metadata.Internal.DbFunction|static=false|accessor=get",
|
|
@@ -42430,7 +42430,7 @@
|
|
|
42430
42430
|
}
|
|
42431
42431
|
},
|
|
42432
42432
|
{
|
|
42433
|
-
"tsName": "
|
|
42433
|
+
"tsName": "function",
|
|
42434
42434
|
"isStatic": false,
|
|
42435
42435
|
"tsSignatureId": "Function|:Microsoft.EntityFrameworkCore.Metadata.Internal.DbFunction|static=false|accessor=get",
|
|
42436
42436
|
"target": {
|
|
@@ -59138,7 +59138,7 @@
|
|
|
59138
59138
|
{
|
|
59139
59139
|
"stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Metadata.Internal.EntityTypeMappingFragment::Get(Microsoft.EntityFrameworkCore.Metadata.IReadOnlyEntityType):System.Collections.Generic.IEnumerable_1[[Microsoft.EntityFrameworkCore.Metadata.IReadOnlyEntityTypeMappingFragment,Microsoft.EntityFrameworkCore.Relational,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]",
|
|
59140
59140
|
"clrName": "Get",
|
|
59141
|
-
"tsEmitName": "
|
|
59141
|
+
"tsEmitName": "get",
|
|
59142
59142
|
"metadataToken": 100669687,
|
|
59143
59143
|
"canonicalSignature": "(Microsoft.EntityFrameworkCore.Metadata.IReadOnlyEntityType):System.Collections.Generic.IEnumerable_1[[Microsoft.EntityFrameworkCore.Metadata.IReadOnlyEntityTypeMappingFragment,Microsoft.EntityFrameworkCore.Relational,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]",
|
|
59144
59144
|
"normalizedSignature": "Get|(Microsoft.EntityFrameworkCore.Metadata.IReadOnlyEntityType):System.Collections.Generic.IEnumerable_1[[Microsoft.EntityFrameworkCore.Metadata.IReadOnlyEntityTypeMappingFragment,Microsoft.EntityFrameworkCore.Relational,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]|static=true",
|
|
@@ -60162,7 +60162,7 @@
|
|
|
60162
60162
|
}
|
|
60163
60163
|
},
|
|
60164
60164
|
{
|
|
60165
|
-
"tsName": "
|
|
60165
|
+
"tsName": "get",
|
|
60166
60166
|
"isStatic": true,
|
|
60167
60167
|
"tsSignatureId": "Get|(Microsoft.EntityFrameworkCore.Metadata.IReadOnlyEntityType):System.Collections.Generic.IEnumerable_1[[Microsoft.EntityFrameworkCore.Metadata.IReadOnlyEntityTypeMappingFragment,Microsoft.EntityFrameworkCore.Relational,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]|static=true",
|
|
60168
60168
|
"target": {
|
|
@@ -67213,7 +67213,7 @@
|
|
|
67213
67213
|
{
|
|
67214
67214
|
"stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Metadata.Internal.FunctionColumn::Function:Microsoft.EntityFrameworkCore.Metadata.Internal.StoreFunction",
|
|
67215
67215
|
"clrName": "Function",
|
|
67216
|
-
"tsEmitName": "
|
|
67216
|
+
"tsEmitName": "function",
|
|
67217
67217
|
"metadataToken": 385877511,
|
|
67218
67218
|
"canonicalSignature": ":Microsoft.EntityFrameworkCore.Metadata.Internal.StoreFunction",
|
|
67219
67219
|
"normalizedSignature": "Function|:Microsoft.EntityFrameworkCore.Metadata.Internal.StoreFunction|static=false|accessor=get",
|
|
@@ -67833,7 +67833,7 @@
|
|
|
67833
67833
|
],
|
|
67834
67834
|
"exposedProperties": [
|
|
67835
67835
|
{
|
|
67836
|
-
"tsName": "
|
|
67836
|
+
"tsName": "function",
|
|
67837
67837
|
"isStatic": false,
|
|
67838
67838
|
"tsSignatureId": "Function|:Microsoft.EntityFrameworkCore.Metadata.Internal.StoreFunction|static=false|accessor=get",
|
|
67839
67839
|
"target": {
|
|
@@ -132041,7 +132041,7 @@
|
|
|
132041
132041
|
{
|
|
132042
132042
|
"stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Metadata.Internal.QueryFilterCollection::Set(Microsoft.EntityFrameworkCore.Metadata.IQueryFilter):Microsoft.EntityFrameworkCore.Metadata.IQueryFilter",
|
|
132043
132043
|
"clrName": "Set",
|
|
132044
|
-
"tsEmitName": "
|
|
132044
|
+
"tsEmitName": "set",
|
|
132045
132045
|
"metadataToken": 100670424,
|
|
132046
132046
|
"canonicalSignature": "(Microsoft.EntityFrameworkCore.Metadata.IQueryFilter):Microsoft.EntityFrameworkCore.Metadata.IQueryFilter",
|
|
132047
132047
|
"normalizedSignature": "Set|(Microsoft.EntityFrameworkCore.Metadata.IQueryFilter):Microsoft.EntityFrameworkCore.Metadata.IQueryFilter|static=false",
|
|
@@ -132133,7 +132133,7 @@
|
|
|
132133
132133
|
}
|
|
132134
132134
|
},
|
|
132135
132135
|
{
|
|
132136
|
-
"tsName": "
|
|
132136
|
+
"tsName": "set",
|
|
132137
132137
|
"isStatic": false,
|
|
132138
132138
|
"tsSignatureId": "Set|(Microsoft.EntityFrameworkCore.Metadata.IQueryFilter):Microsoft.EntityFrameworkCore.Metadata.IQueryFilter|static=false",
|
|
132139
132139
|
"target": {
|
|
@@ -132236,7 +132236,7 @@
|
|
|
132236
132236
|
{
|
|
132237
132237
|
"stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Metadata.Internal.Reference\u00601::Object:T",
|
|
132238
132238
|
"clrName": "Object",
|
|
132239
|
-
"tsEmitName": "
|
|
132239
|
+
"tsEmitName": "object",
|
|
132240
132240
|
"metadataToken": 385877348,
|
|
132241
132241
|
"canonicalSignature": ":T",
|
|
132242
132242
|
"normalizedSignature": "Object|:T|static=false|accessor=getset",
|
|
@@ -132310,7 +132310,7 @@
|
|
|
132310
132310
|
],
|
|
132311
132311
|
"exposedProperties": [
|
|
132312
132312
|
{
|
|
132313
|
-
"tsName": "
|
|
132313
|
+
"tsName": "object",
|
|
132314
132314
|
"isStatic": false,
|
|
132315
132315
|
"tsSignatureId": "Object|:T|static=false|accessor=getset",
|
|
132316
132316
|
"target": {
|
|
@@ -134475,7 +134475,7 @@
|
|
|
134475
134475
|
{
|
|
134476
134476
|
"stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Metadata.Internal.RelationalPropertyOverrides::Get(Microsoft.EntityFrameworkCore.Metadata.IReadOnlyProperty):System.Collections.Generic.IEnumerable_1[[Microsoft.EntityFrameworkCore.Metadata.IReadOnlyRelationalPropertyOverrides,Microsoft.EntityFrameworkCore.Relational,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]",
|
|
134477
134477
|
"clrName": "Get",
|
|
134478
|
-
"tsEmitName": "
|
|
134478
|
+
"tsEmitName": "get",
|
|
134479
134479
|
"metadataToken": 100670043,
|
|
134480
134480
|
"canonicalSignature": "(Microsoft.EntityFrameworkCore.Metadata.IReadOnlyProperty):System.Collections.Generic.IEnumerable_1[[Microsoft.EntityFrameworkCore.Metadata.IReadOnlyRelationalPropertyOverrides,Microsoft.EntityFrameworkCore.Relational,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]",
|
|
134481
134481
|
"normalizedSignature": "Get|(Microsoft.EntityFrameworkCore.Metadata.IReadOnlyProperty):System.Collections.Generic.IEnumerable_1[[Microsoft.EntityFrameworkCore.Metadata.IReadOnlyRelationalPropertyOverrides,Microsoft.EntityFrameworkCore.Relational,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]|static=true",
|
|
@@ -135565,7 +135565,7 @@
|
|
|
135565
135565
|
}
|
|
135566
135566
|
},
|
|
135567
135567
|
{
|
|
135568
|
-
"tsName": "
|
|
135568
|
+
"tsName": "get",
|
|
135569
135569
|
"isStatic": true,
|
|
135570
135570
|
"tsSignatureId": "Get|(Microsoft.EntityFrameworkCore.Metadata.IReadOnlyProperty):System.Collections.Generic.IEnumerable_1[[Microsoft.EntityFrameworkCore.Metadata.IReadOnlyRelationalPropertyOverrides,Microsoft.EntityFrameworkCore.Relational,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]|static=true",
|
|
135571
135571
|
"target": {
|
|
@@ -139574,7 +139574,7 @@
|
|
|
139574
139574
|
{
|
|
139575
139575
|
"stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Metadata.Internal.Sequence::Type:System.Type",
|
|
139576
139576
|
"clrName": "Type",
|
|
139577
|
-
"tsEmitName": "
|
|
139577
|
+
"tsEmitName": "type",
|
|
139578
139578
|
"metadataToken": 385877585,
|
|
139579
139579
|
"canonicalSignature": ":System.Type",
|
|
139580
139580
|
"normalizedSignature": "Type|:System.Type|static=false|accessor=getset",
|
|
@@ -140873,7 +140873,7 @@
|
|
|
140873
140873
|
}
|
|
140874
140874
|
},
|
|
140875
140875
|
{
|
|
140876
|
-
"tsName": "
|
|
140876
|
+
"tsName": "type",
|
|
140877
140877
|
"isStatic": false,
|
|
140878
140878
|
"tsSignatureId": "Type|:System.Type|static=false|accessor=getset",
|
|
140879
140879
|
"target": {
|
|
@@ -166546,7 +166546,7 @@
|
|
|
166546
166546
|
{
|
|
166547
166547
|
"stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Metadata.Internal.StoreFunctionParameter::Function:Microsoft.EntityFrameworkCore.Metadata.Internal.StoreFunction",
|
|
166548
166548
|
"clrName": "Function",
|
|
166549
|
-
"tsEmitName": "
|
|
166549
|
+
"tsEmitName": "function",
|
|
166550
166550
|
"metadataToken": 385877681,
|
|
166551
166551
|
"canonicalSignature": ":Microsoft.EntityFrameworkCore.Metadata.Internal.StoreFunction",
|
|
166552
166552
|
"normalizedSignature": "Function|:Microsoft.EntityFrameworkCore.Metadata.Internal.StoreFunction|static=false|accessor=get",
|
|
@@ -166644,7 +166644,7 @@
|
|
|
166644
166644
|
{
|
|
166645
166645
|
"stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Metadata.IStoreFunctionParameter::Type:System.String",
|
|
166646
166646
|
"clrName": "Type",
|
|
166647
|
-
"tsEmitName": "
|
|
166647
|
+
"tsEmitName": "type",
|
|
166648
166648
|
"metadataToken": 385877257,
|
|
166649
166649
|
"canonicalSignature": ":System.String",
|
|
166650
166650
|
"normalizedSignature": "Type|:System.String|static=false|accessor=get",
|
|
@@ -167082,7 +167082,7 @@
|
|
|
167082
167082
|
],
|
|
167083
167083
|
"exposedProperties": [
|
|
167084
167084
|
{
|
|
167085
|
-
"tsName": "
|
|
167085
|
+
"tsName": "function",
|
|
167086
167086
|
"isStatic": false,
|
|
167087
167087
|
"tsSignatureId": "Function|:Microsoft.EntityFrameworkCore.Metadata.Internal.StoreFunction|static=false|accessor=get",
|
|
167088
167088
|
"target": {
|
|
@@ -167152,7 +167152,7 @@
|
|
|
167152
167152
|
}
|
|
167153
167153
|
},
|
|
167154
167154
|
{
|
|
167155
|
-
"tsName": "
|
|
167155
|
+
"tsName": "type",
|
|
167156
167156
|
"isStatic": false,
|
|
167157
167157
|
"tsSignatureId": "Type|:System.String|static=false|accessor=get",
|
|
167158
167158
|
"target": {
|