@tsonic/efcore 10.0.2 → 10.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Microsoft.EntityFrameworkCore/internal/index.d.ts +18 -35
- package/Microsoft.EntityFrameworkCore.ChangeTracking/internal/index.d.ts +28 -69
- package/Microsoft.EntityFrameworkCore.ChangeTracking.Internal/internal/index.d.ts +153 -261
- package/Microsoft.EntityFrameworkCore.Design/internal/index.d.ts +43 -55
- package/Microsoft.EntityFrameworkCore.Design.Internal/internal/index.d.ts +8 -16
- package/Microsoft.EntityFrameworkCore.Diagnostics/internal/index.d.ts +24 -46
- package/Microsoft.EntityFrameworkCore.Diagnostics.Internal/internal/index.d.ts +8 -50
- package/Microsoft.EntityFrameworkCore.Infrastructure/internal/index.d.ts +160 -247
- package/Microsoft.EntityFrameworkCore.Infrastructure.Internal/internal/index.d.ts +5 -9
- package/Microsoft.EntityFrameworkCore.Internal/internal/index.d.ts +0 -3
- package/Microsoft.EntityFrameworkCore.Metadata/internal/index.d.ts +304 -407
- package/Microsoft.EntityFrameworkCore.Metadata.Builders/internal/index.d.ts +130 -268
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions/internal/index.d.ts +266 -598
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure/internal/index.d.ts +6 -15
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Internal/internal/index.d.ts +1 -1
- package/Microsoft.EntityFrameworkCore.Metadata.Internal/internal/index.d.ts +436 -763
- package/Microsoft.EntityFrameworkCore.Migrations/internal/index.d.ts +95 -116
- package/Microsoft.EntityFrameworkCore.Migrations.Internal/internal/index.d.ts +56 -64
- package/Microsoft.EntityFrameworkCore.Migrations.Operations/internal/index.d.ts +229 -347
- package/Microsoft.EntityFrameworkCore.Migrations.Operations.Builders/internal/index.d.ts +2 -6
- package/Microsoft.EntityFrameworkCore.Query/internal/index.d.ts +468 -719
- package/Microsoft.EntityFrameworkCore.Query.Internal/internal/index.d.ts +151 -301
- package/Microsoft.EntityFrameworkCore.Query.SqlExpressions/internal/index.d.ts +144 -335
- package/Microsoft.EntityFrameworkCore.Scaffolding/internal/index.d.ts +4 -10
- package/Microsoft.EntityFrameworkCore.Scaffolding.Metadata/internal/index.d.ts +73 -102
- package/Microsoft.EntityFrameworkCore.Storage/internal/index.d.ts +244 -452
- package/Microsoft.EntityFrameworkCore.Storage.Internal/internal/index.d.ts +19 -47
- package/Microsoft.EntityFrameworkCore.Storage.Json/internal/index.d.ts +3 -32
- package/Microsoft.EntityFrameworkCore.Storage.ValueConversion/internal/index.d.ts +3 -9
- package/Microsoft.EntityFrameworkCore.Update/internal/index.d.ts +114 -133
- package/Microsoft.EntityFrameworkCore.Update.Internal/internal/index.d.ts +21 -43
- package/Microsoft.EntityFrameworkCore.ValueGeneration/internal/index.d.ts +21 -49
- package/Microsoft.EntityFrameworkCore.ValueGeneration.Internal/internal/index.d.ts +5 -14
- package/package.json +1 -1
|
@@ -571,18 +571,12 @@ export interface ITypeIgnoredConvention$instance extends IConvention$instance {}
|
|
|
571
571
|
|
|
572
572
|
export type ITypeIgnoredConvention = ITypeIgnoredConvention$instance;
|
|
573
573
|
|
|
574
|
-
export
|
|
575
|
-
protected ProcessPropertyAdded4(propertyBuilder: IConventionPropertyBuilder, attribute: BackingFieldAttribute, clrMember: MemberInfo, context: IConventionContext): void;
|
|
576
|
-
protected ProcessPropertyAdded4(propertyBuilder: IConventionComplexPropertyBuilder, attribute: BackingFieldAttribute, clrMember: MemberInfo, context: IConventionContext): void;
|
|
577
|
-
protected abstract ProcessPropertyAdded2(propertyBuilder: IConventionPropertyBuilder, attribute: unknown, clrMember: MemberInfo, context: IConventionContext): void;
|
|
578
|
-
protected ProcessPropertyAdded3(propertyBuilder: IConventionComplexPropertyBuilder, attribute: unknown, clrMember: MemberInfo, context: IConventionContext): void;
|
|
579
|
-
}
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
export interface BackingFieldAttributeConvention$instance extends BackingFieldAttributeConvention$protected, PropertyAttributeConventionBase_1$instance<BackingFieldAttribute>, IConvention {
|
|
574
|
+
export interface BackingFieldAttributeConvention$instance extends PropertyAttributeConventionBase_1$instance<BackingFieldAttribute>, IConvention {
|
|
583
575
|
ProcessComplexPropertyAdded(propertyBuilder: IConventionComplexPropertyBuilder, context: IConventionContext_1<IConventionComplexPropertyBuilder>): void;
|
|
584
576
|
ProcessComplexPropertyFieldChanged(propertyBuilder: IConventionComplexPropertyBuilder, newFieldInfo: FieldInfo, oldFieldInfo: FieldInfo, context: IConventionContext_1<FieldInfo>): void;
|
|
577
|
+
ProcessPropertyAdded(propertyBuilder: IConventionPropertyBuilder, attribute: BackingFieldAttribute, clrMember: MemberInfo, context: IConventionContext): void;
|
|
585
578
|
ProcessPropertyAdded(propertyBuilder: IConventionPropertyBuilder, context: IConventionContext_1<IConventionPropertyBuilder>): void;
|
|
579
|
+
ProcessPropertyAdded(propertyBuilder: IConventionComplexPropertyBuilder, attribute: BackingFieldAttribute, clrMember: MemberInfo, context: IConventionContext): void;
|
|
586
580
|
ProcessPropertyFieldChanged(propertyBuilder: IConventionPropertyBuilder, newFieldInfo: FieldInfo, oldFieldInfo: FieldInfo, context: IConventionContext_1<FieldInfo>): void;
|
|
587
581
|
}
|
|
588
582
|
|
|
@@ -602,12 +596,8 @@ export interface __BackingFieldAttributeConvention$views {
|
|
|
602
596
|
export type BackingFieldAttributeConvention = BackingFieldAttributeConvention$instance & __BackingFieldAttributeConvention$views;
|
|
603
597
|
|
|
604
598
|
|
|
605
|
-
export
|
|
606
|
-
|
|
607
|
-
}
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
export interface BackingFieldConvention$instance extends BackingFieldConvention$protected, IConvention {
|
|
599
|
+
export interface BackingFieldConvention$instance extends IConvention {
|
|
600
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
611
601
|
ProcessComplexPropertyAdded(propertyBuilder: IConventionComplexPropertyBuilder, context: IConventionContext_1<IConventionComplexPropertyBuilder>): void;
|
|
612
602
|
ProcessModelFinalizing(modelBuilder: IConventionModelBuilder, context: IConventionContext_1<IConventionModelBuilder>): void;
|
|
613
603
|
ProcessNavigationAdded(navigationBuilder: IConventionNavigationBuilder, context: IConventionContext_1<IConventionNavigationBuilder>): void;
|
|
@@ -634,12 +624,8 @@ export interface BackingFieldConvention$instance extends IComplexPropertyAddedCo
|
|
|
634
624
|
export type BackingFieldConvention = BackingFieldConvention$instance & __BackingFieldConvention$views;
|
|
635
625
|
|
|
636
626
|
|
|
637
|
-
export
|
|
638
|
-
|
|
639
|
-
}
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
export interface BaseTypeDiscoveryConvention$instance extends BaseTypeDiscoveryConvention$protected, IConvention {
|
|
627
|
+
export interface BaseTypeDiscoveryConvention$instance extends IConvention {
|
|
628
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
643
629
|
ProcessEntityTypeAdded(entityTypeBuilder: IConventionEntityTypeBuilder, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
644
630
|
ProcessForeignKeyRemoved(entityTypeBuilder: IConventionEntityTypeBuilder, foreignKey: IConventionForeignKey, context: IConventionContext_1<IConventionForeignKey>): void;
|
|
645
631
|
}
|
|
@@ -660,13 +646,9 @@ export interface BaseTypeDiscoveryConvention$instance extends IEntityTypeAddedCo
|
|
|
660
646
|
export type BaseTypeDiscoveryConvention = BaseTypeDiscoveryConvention$instance & __BaseTypeDiscoveryConvention$views;
|
|
661
647
|
|
|
662
648
|
|
|
663
|
-
export
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
}
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
export interface CascadeDeleteConvention$instance extends CascadeDeleteConvention$protected, IConvention {
|
|
649
|
+
export interface CascadeDeleteConvention$instance extends IConvention {
|
|
650
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
651
|
+
GetTargetDeleteBehavior(foreignKey: IConventionForeignKey): DeleteBehavior;
|
|
670
652
|
ProcessForeignKeyAdded(relationshipBuilder: IConventionForeignKeyBuilder, context: IConventionContext_1<IConventionForeignKeyBuilder>): void;
|
|
671
653
|
ProcessForeignKeyRequirednessChanged(relationshipBuilder: IConventionForeignKeyBuilder, context: IConventionContext_1<Nullable<System_Internal.Boolean>>): void;
|
|
672
654
|
}
|
|
@@ -687,12 +669,8 @@ export interface CascadeDeleteConvention$instance extends IForeignKeyAddedConven
|
|
|
687
669
|
export type CascadeDeleteConvention = CascadeDeleteConvention$instance & __CascadeDeleteConvention$views;
|
|
688
670
|
|
|
689
671
|
|
|
690
|
-
export
|
|
691
|
-
|
|
692
|
-
}
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
export interface ChangeTrackingStrategyConvention$instance extends ChangeTrackingStrategyConvention$protected, IConvention {
|
|
672
|
+
export interface ChangeTrackingStrategyConvention$instance extends IConvention {
|
|
673
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
696
674
|
ProcessModelFinalizing(modelBuilder: IConventionModelBuilder, context: IConventionContext_1<IConventionModelBuilder>): void;
|
|
697
675
|
}
|
|
698
676
|
|
|
@@ -711,13 +689,9 @@ export interface ChangeTrackingStrategyConvention$instance extends IModelFinaliz
|
|
|
711
689
|
export type ChangeTrackingStrategyConvention = ChangeTrackingStrategyConvention$instance & __ChangeTrackingStrategyConvention$views;
|
|
712
690
|
|
|
713
691
|
|
|
714
|
-
export
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
}
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
export interface CheckConstraintConvention$instance extends CheckConstraintConvention$protected, IConvention {
|
|
692
|
+
export interface CheckConstraintConvention$instance extends IConvention {
|
|
693
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
694
|
+
readonly RelationalDependencies: RelationalConventionSetBuilderDependencies;
|
|
721
695
|
ProcessEntityTypeAdded(entityTypeBuilder: IConventionEntityTypeBuilder, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
722
696
|
ProcessEntityTypeBaseTypeChanged(entityTypeBuilder: IConventionEntityTypeBuilder, newBaseType: IConventionEntityType, oldBaseType: IConventionEntityType, context: IConventionContext_1<IConventionEntityType>): void;
|
|
723
697
|
}
|
|
@@ -738,16 +712,12 @@ export interface CheckConstraintConvention$instance extends IEntityTypeAddedConv
|
|
|
738
712
|
export type CheckConstraintConvention = CheckConstraintConvention$instance & __CheckConstraintConvention$views;
|
|
739
713
|
|
|
740
714
|
|
|
741
|
-
export
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
}
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
export interface ComplexPropertyDiscoveryConvention$instance extends ComplexPropertyDiscoveryConvention$protected, IConvention {
|
|
715
|
+
export interface ComplexPropertyDiscoveryConvention$instance extends IConvention {
|
|
716
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
717
|
+
readonly UseAttributes: boolean;
|
|
718
|
+
DiscoverComplexProperties(structuralTypeBuilder: IConventionTypeBaseBuilder, context: IConventionContext): void;
|
|
719
|
+
GetMembers(structuralType: IConventionTypeBase): IEnumerable<MemberInfo>;
|
|
720
|
+
IsCandidateComplexProperty(memberInfo: MemberInfo, structuralType: IConventionTypeBase, targetClrType: Type, isCollection: boolean): boolean;
|
|
751
721
|
ProcessComplexPropertyAdded(propertyBuilder: IConventionComplexPropertyBuilder, context: IConventionContext_1<IConventionComplexPropertyBuilder>): void;
|
|
752
722
|
ProcessEntityTypeAdded(entityTypeBuilder: IConventionEntityTypeBuilder, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
753
723
|
ProcessEntityTypeBaseTypeChanged(entityTypeBuilder: IConventionEntityTypeBuilder, newBaseType: IConventionEntityType, oldBaseType: IConventionEntityType, context: IConventionContext_1<IConventionEntityType>): void;
|
|
@@ -786,13 +756,7 @@ export interface ComplexPropertyDiscoveryConvention$instance extends IComplexPro
|
|
|
786
756
|
export type ComplexPropertyDiscoveryConvention = ComplexPropertyDiscoveryConvention$instance & __ComplexPropertyDiscoveryConvention$views;
|
|
787
757
|
|
|
788
758
|
|
|
789
|
-
export
|
|
790
|
-
protected ProcessEntityTypeAdded3(entityTypeBuilder: IConventionEntityTypeBuilder, attribute: ComplexTypeAttribute, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
791
|
-
protected abstract ProcessEntityTypeAdded2(entityTypeBuilder: IConventionEntityTypeBuilder, attribute: unknown, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
792
|
-
}
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
export interface ComplexTypeAttributeConvention$instance extends ComplexTypeAttributeConvention$protected, TypeAttributeConventionBase_1$instance<ComplexTypeAttribute>, IConvention {
|
|
759
|
+
export interface ComplexTypeAttributeConvention$instance extends TypeAttributeConventionBase_1$instance<ComplexTypeAttribute>, IConvention {
|
|
796
760
|
ProcessComplexPropertyAdded(propertyBuilder: IConventionComplexPropertyBuilder, context: IConventionContext_1<IConventionComplexPropertyBuilder>): void;
|
|
797
761
|
ProcessComplexPropertyAdded(propertyBuilder: IConventionComplexPropertyBuilder, context: IConventionContext_1<IConventionComplexPropertyBuilder>): void;
|
|
798
762
|
ProcessEntityTypeAdded(entityTypeBuilder: IConventionEntityTypeBuilder, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
@@ -812,15 +776,9 @@ export interface __ComplexTypeAttributeConvention$views {
|
|
|
812
776
|
export type ComplexTypeAttributeConvention = ComplexTypeAttributeConvention$instance & __ComplexTypeAttributeConvention$views;
|
|
813
777
|
|
|
814
778
|
|
|
815
|
-
export
|
|
816
|
-
protected ProcessPropertyAdded4(propertyBuilder: IConventionPropertyBuilder, attribute: ConcurrencyCheckAttribute, clrMember: MemberInfo, context: IConventionContext): void;
|
|
817
|
-
protected abstract ProcessPropertyAdded2(propertyBuilder: IConventionPropertyBuilder, attribute: unknown, clrMember: MemberInfo, context: IConventionContext): void;
|
|
818
|
-
protected ProcessPropertyAdded3(propertyBuilder: IConventionComplexPropertyBuilder, attribute: unknown, clrMember: MemberInfo, context: IConventionContext): void;
|
|
819
|
-
}
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
export interface ConcurrencyCheckAttributeConvention$instance extends ConcurrencyCheckAttributeConvention$protected, PropertyAttributeConventionBase_1$instance<ConcurrencyCheckAttribute>, IConvention {
|
|
779
|
+
export interface ConcurrencyCheckAttributeConvention$instance extends PropertyAttributeConventionBase_1$instance<ConcurrencyCheckAttribute>, IConvention {
|
|
823
780
|
ProcessPropertyAdded(propertyBuilder: IConventionPropertyBuilder, context: IConventionContext_1<IConventionPropertyBuilder>): void;
|
|
781
|
+
ProcessPropertyAdded(propertyBuilder: IConventionComplexPropertyBuilder, attribute: ConcurrencyCheckAttribute, clrMember: MemberInfo, context: IConventionContext): void;
|
|
824
782
|
ProcessPropertyFieldChanged(propertyBuilder: IConventionPropertyBuilder, newFieldInfo: FieldInfo, oldFieldInfo: FieldInfo, context: IConventionContext_1<FieldInfo>): void;
|
|
825
783
|
}
|
|
826
784
|
|
|
@@ -838,12 +796,8 @@ export interface __ConcurrencyCheckAttributeConvention$views {
|
|
|
838
796
|
export type ConcurrencyCheckAttributeConvention = ConcurrencyCheckAttributeConvention$instance & __ConcurrencyCheckAttributeConvention$views;
|
|
839
797
|
|
|
840
798
|
|
|
841
|
-
export
|
|
842
|
-
|
|
843
|
-
}
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
export interface ConstructorBindingConvention$instance extends ConstructorBindingConvention$protected, IConvention {
|
|
799
|
+
export interface ConstructorBindingConvention$instance extends IConvention {
|
|
800
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
847
801
|
ProcessModelFinalizing(modelBuilder: IConventionModelBuilder, context: IConventionContext_1<IConventionModelBuilder>): void;
|
|
848
802
|
}
|
|
849
803
|
|
|
@@ -937,15 +891,9 @@ export const ConventionSet: {
|
|
|
937
891
|
|
|
938
892
|
export type ConventionSet = ConventionSet$instance;
|
|
939
893
|
|
|
940
|
-
export
|
|
941
|
-
protected ProcessPropertyAdded4(propertyBuilder: IConventionPropertyBuilder, attribute: DatabaseGeneratedAttribute, clrMember: MemberInfo, context: IConventionContext): void;
|
|
942
|
-
protected abstract ProcessPropertyAdded2(propertyBuilder: IConventionPropertyBuilder, attribute: unknown, clrMember: MemberInfo, context: IConventionContext): void;
|
|
943
|
-
protected ProcessPropertyAdded3(propertyBuilder: IConventionComplexPropertyBuilder, attribute: unknown, clrMember: MemberInfo, context: IConventionContext): void;
|
|
944
|
-
}
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
export interface DatabaseGeneratedAttributeConvention$instance extends DatabaseGeneratedAttributeConvention$protected, PropertyAttributeConventionBase_1$instance<DatabaseGeneratedAttribute>, IConvention {
|
|
894
|
+
export interface DatabaseGeneratedAttributeConvention$instance extends PropertyAttributeConventionBase_1$instance<DatabaseGeneratedAttribute>, IConvention {
|
|
948
895
|
ProcessPropertyAdded(propertyBuilder: IConventionPropertyBuilder, context: IConventionContext_1<IConventionPropertyBuilder>): void;
|
|
896
|
+
ProcessPropertyAdded(propertyBuilder: IConventionComplexPropertyBuilder, attribute: DatabaseGeneratedAttribute, clrMember: MemberInfo, context: IConventionContext): void;
|
|
949
897
|
ProcessPropertyFieldChanged(propertyBuilder: IConventionPropertyBuilder, newFieldInfo: FieldInfo, oldFieldInfo: FieldInfo, context: IConventionContext_1<FieldInfo>): void;
|
|
950
898
|
}
|
|
951
899
|
|
|
@@ -963,12 +911,8 @@ export interface __DatabaseGeneratedAttributeConvention$views {
|
|
|
963
911
|
export type DatabaseGeneratedAttributeConvention = DatabaseGeneratedAttributeConvention$instance & __DatabaseGeneratedAttributeConvention$views;
|
|
964
912
|
|
|
965
913
|
|
|
966
|
-
export
|
|
967
|
-
|
|
968
|
-
}
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
export interface DbSetFindingConvention$instance extends DbSetFindingConvention$protected, IConvention {
|
|
914
|
+
export interface DbSetFindingConvention$instance extends IConvention {
|
|
915
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
972
916
|
ProcessModelInitialized(modelBuilder: IConventionModelBuilder, context: IConventionContext_1<IConventionModelBuilder>): void;
|
|
973
917
|
}
|
|
974
918
|
|
|
@@ -987,20 +931,14 @@ export interface DbSetFindingConvention$instance extends IModelInitializedConven
|
|
|
987
931
|
export type DbSetFindingConvention = DbSetFindingConvention$instance & __DbSetFindingConvention$views;
|
|
988
932
|
|
|
989
933
|
|
|
990
|
-
export
|
|
991
|
-
protected ProcessPropertyAdded4(propertyBuilder: IConventionPropertyBuilder, attribute: DeleteBehaviorAttribute, clrMember: MemberInfo, context: IConventionContext): void;
|
|
992
|
-
protected ProcessPropertyAdded4(propertyBuilder: IConventionComplexPropertyBuilder, attribute: DeleteBehaviorAttribute, clrMember: MemberInfo, context: IConventionContext): void;
|
|
993
|
-
protected abstract ProcessPropertyAdded2(propertyBuilder: IConventionPropertyBuilder, attribute: unknown, clrMember: MemberInfo, context: IConventionContext): void;
|
|
994
|
-
protected ProcessPropertyAdded3(propertyBuilder: IConventionComplexPropertyBuilder, attribute: unknown, clrMember: MemberInfo, context: IConventionContext): void;
|
|
995
|
-
}
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
export interface DeleteBehaviorAttributeConvention$instance extends DeleteBehaviorAttributeConvention$protected, PropertyAttributeConventionBase_1$instance<DeleteBehaviorAttribute>, IConvention {
|
|
934
|
+
export interface DeleteBehaviorAttributeConvention$instance extends PropertyAttributeConventionBase_1$instance<DeleteBehaviorAttribute>, IConvention {
|
|
999
935
|
ProcessComplexPropertyAdded(propertyBuilder: IConventionComplexPropertyBuilder, context: IConventionContext_1<IConventionComplexPropertyBuilder>): void;
|
|
1000
936
|
ProcessForeignKeyPrincipalEndChanged(relationshipBuilder: IConventionForeignKeyBuilder, context: IConventionContext_1<IConventionForeignKeyBuilder>): void;
|
|
1001
937
|
ProcessModelFinalizing(modelBuilder: IConventionModelBuilder, context: IConventionContext_1<IConventionModelBuilder>): void;
|
|
1002
938
|
ProcessNavigationAdded(navigationBuilder: IConventionNavigationBuilder, context: IConventionContext_1<IConventionNavigationBuilder>): void;
|
|
939
|
+
ProcessPropertyAdded(propertyBuilder: IConventionPropertyBuilder, attribute: DeleteBehaviorAttribute, clrMember: MemberInfo, context: IConventionContext): void;
|
|
1003
940
|
ProcessPropertyAdded(propertyBuilder: IConventionPropertyBuilder, context: IConventionContext_1<IConventionPropertyBuilder>): void;
|
|
941
|
+
ProcessPropertyAdded(propertyBuilder: IConventionComplexPropertyBuilder, attribute: DeleteBehaviorAttribute, clrMember: MemberInfo, context: IConventionContext): void;
|
|
1004
942
|
ProcessPropertyFieldChanged(propertyBuilder: IConventionPropertyBuilder, newFieldInfo: FieldInfo, oldFieldInfo: FieldInfo, context: IConventionContext_1<FieldInfo>): void;
|
|
1005
943
|
}
|
|
1006
944
|
|
|
@@ -1024,17 +962,13 @@ export interface DeleteBehaviorAttributeConvention$instance extends IForeignKeyP
|
|
|
1024
962
|
export type DeleteBehaviorAttributeConvention = DeleteBehaviorAttributeConvention$instance & __DeleteBehaviorAttributeConvention$views;
|
|
1025
963
|
|
|
1026
964
|
|
|
1027
|
-
export
|
|
1028
|
-
|
|
1029
|
-
protected SetDefaultDiscriminatorValue(complexType: IConventionComplexType, discriminatorBuilder: IConventionComplexTypeDiscriminatorBuilder): void;
|
|
1030
|
-
protected SetDefaultDiscriminatorValues(entityTypes: IEnumerable<IConventionEntityType>, discriminatorBuilder: IConventionDiscriminatorBuilder): void;
|
|
1031
|
-
}
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
export interface DiscriminatorConvention$instance extends DiscriminatorConvention$protected, IConvention {
|
|
965
|
+
export interface DiscriminatorConvention$instance extends IConvention {
|
|
966
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
1035
967
|
ProcessDiscriminatorPropertySet(structuralTypeBuilder: IConventionTypeBaseBuilder, name: string, context: IConventionContext_1<System_Internal.String>): void;
|
|
1036
968
|
ProcessEntityTypeBaseTypeChanged(entityTypeBuilder: IConventionEntityTypeBuilder, newBaseType: IConventionEntityType, oldBaseType: IConventionEntityType, context: IConventionContext_1<IConventionEntityType>): void;
|
|
1037
969
|
ProcessEntityTypeRemoved(modelBuilder: IConventionModelBuilder, entityType: IConventionEntityType, context: IConventionContext_1<IConventionEntityType>): void;
|
|
970
|
+
SetDefaultDiscriminatorValue(complexType: IConventionComplexType, discriminatorBuilder: IConventionComplexTypeDiscriminatorBuilder): void;
|
|
971
|
+
SetDefaultDiscriminatorValues(entityTypes: IEnumerable<IConventionEntityType>, discriminatorBuilder: IConventionDiscriminatorBuilder): void;
|
|
1038
972
|
}
|
|
1039
973
|
|
|
1040
974
|
|
|
@@ -1054,13 +988,9 @@ export interface DiscriminatorConvention$instance extends IDiscriminatorProperty
|
|
|
1054
988
|
export type DiscriminatorConvention = DiscriminatorConvention$instance & __DiscriminatorConvention$views;
|
|
1055
989
|
|
|
1056
990
|
|
|
1057
|
-
export
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
}
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
export interface DiscriminatorLengthConvention$instance extends DiscriminatorLengthConvention$protected, IConvention {
|
|
991
|
+
export interface DiscriminatorLengthConvention$instance extends IConvention {
|
|
992
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
993
|
+
readonly RelationalDependencies: RelationalConventionSetBuilderDependencies;
|
|
1064
994
|
ProcessModelFinalizing(modelBuilder: IConventionModelBuilder, context: IConventionContext_1<IConventionModelBuilder>): void;
|
|
1065
995
|
}
|
|
1066
996
|
|
|
@@ -1079,12 +1009,8 @@ export interface DiscriminatorLengthConvention$instance extends IModelFinalizing
|
|
|
1079
1009
|
export type DiscriminatorLengthConvention = DiscriminatorLengthConvention$instance & __DiscriminatorLengthConvention$views;
|
|
1080
1010
|
|
|
1081
1011
|
|
|
1082
|
-
export
|
|
1083
|
-
|
|
1084
|
-
}
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
export interface ElementMappingConvention$instance extends ElementMappingConvention$protected, IConvention {
|
|
1012
|
+
export interface ElementMappingConvention$instance extends IConvention {
|
|
1013
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
1088
1014
|
ProcessModelFinalizing(modelBuilder: IConventionModelBuilder, context: IConventionContext_1<IConventionModelBuilder>): void;
|
|
1089
1015
|
}
|
|
1090
1016
|
|
|
@@ -1103,12 +1029,8 @@ export interface ElementMappingConvention$instance extends IModelFinalizingConve
|
|
|
1103
1029
|
export type ElementMappingConvention = ElementMappingConvention$instance & __ElementMappingConvention$views;
|
|
1104
1030
|
|
|
1105
1031
|
|
|
1106
|
-
export
|
|
1107
|
-
|
|
1108
|
-
}
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
export interface ElementTypeChangedConvention$instance extends ElementTypeChangedConvention$protected, IConvention {
|
|
1032
|
+
export interface ElementTypeChangedConvention$instance extends IConvention {
|
|
1033
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
1112
1034
|
ProcessForeignKeyAdded(foreignKeyBuilder: IConventionForeignKeyBuilder, context: IConventionContext_1<IConventionForeignKeyBuilder>): void;
|
|
1113
1035
|
ProcessForeignKeyPropertiesChanged(relationshipBuilder: IConventionForeignKeyBuilder, oldDependentProperties: IReadOnlyList<IConventionProperty>, oldPrincipalKey: IConventionKey, context: IConventionContext_1<IReadOnlyList<IConventionProperty>>): void;
|
|
1114
1036
|
ProcessPropertyElementTypeChanged(propertyBuilder: IConventionPropertyBuilder, newElementType: IElementType, oldElementType: IElementType, context: IConventionContext_1<IElementType>): void;
|
|
@@ -1131,13 +1053,9 @@ export interface ElementTypeChangedConvention$instance extends IForeignKeyAddedC
|
|
|
1131
1053
|
export type ElementTypeChangedConvention = ElementTypeChangedConvention$instance & __ElementTypeChangedConvention$views;
|
|
1132
1054
|
|
|
1133
1055
|
|
|
1134
|
-
export
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
}
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
export interface EntitySplittingConvention$instance extends EntitySplittingConvention$protected, IConvention {
|
|
1056
|
+
export interface EntitySplittingConvention$instance extends IConvention {
|
|
1057
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
1058
|
+
readonly RelationalDependencies: RelationalConventionSetBuilderDependencies;
|
|
1141
1059
|
ProcessEntityTypeAdded(entityTypeBuilder: IConventionEntityTypeBuilder, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
1142
1060
|
ProcessModelFinalizing(modelBuilder: IConventionModelBuilder, context: IConventionContext_1<IConventionModelBuilder>): void;
|
|
1143
1061
|
}
|
|
@@ -1158,16 +1076,9 @@ export interface EntitySplittingConvention$instance extends IEntityTypeAddedConv
|
|
|
1158
1076
|
export type EntitySplittingConvention = EntitySplittingConvention$instance & __EntitySplittingConvention$views;
|
|
1159
1077
|
|
|
1160
1078
|
|
|
1161
|
-
export
|
|
1162
|
-
protected ProcessComplexTypeAdded2(complexTypeBuilder: IConventionComplexTypeBuilder, attribute: EntityTypeConfigurationAttribute, context: IConventionContext): void;
|
|
1163
|
-
protected ProcessComplexTypeAdded(complexTypeBuilder: IConventionComplexTypeBuilder, attribute: unknown, context: IConventionContext): void;
|
|
1164
|
-
protected ProcessEntityTypeAdded3(entityTypeBuilder: IConventionEntityTypeBuilder, attribute: EntityTypeConfigurationAttribute, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
1165
|
-
protected abstract ProcessEntityTypeAdded2(entityTypeBuilder: IConventionEntityTypeBuilder, attribute: unknown, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
1166
|
-
}
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
export interface EntityTypeConfigurationAttributeConvention$instance extends EntityTypeConfigurationAttributeConvention$protected, TypeAttributeConventionBase_1$instance<EntityTypeConfigurationAttribute>, IConvention {
|
|
1079
|
+
export interface EntityTypeConfigurationAttributeConvention$instance extends TypeAttributeConventionBase_1$instance<EntityTypeConfigurationAttribute>, IConvention {
|
|
1170
1080
|
ProcessComplexPropertyAdded(propertyBuilder: IConventionComplexPropertyBuilder, context: IConventionContext_1<IConventionComplexPropertyBuilder>): void;
|
|
1081
|
+
ProcessComplexTypeAdded(complexTypeBuilder: IConventionComplexTypeBuilder, attribute: EntityTypeConfigurationAttribute, context: IConventionContext): void;
|
|
1171
1082
|
ProcessEntityTypeAdded(entityTypeBuilder: IConventionEntityTypeBuilder, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
1172
1083
|
}
|
|
1173
1084
|
|
|
@@ -1185,13 +1096,9 @@ export interface __EntityTypeConfigurationAttributeConvention$views {
|
|
|
1185
1096
|
export type EntityTypeConfigurationAttributeConvention = EntityTypeConfigurationAttributeConvention$instance & __EntityTypeConfigurationAttributeConvention$views;
|
|
1186
1097
|
|
|
1187
1098
|
|
|
1188
|
-
export
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
}
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
export interface EntityTypeHierarchyMappingConvention$instance extends EntityTypeHierarchyMappingConvention$protected, IConvention {
|
|
1099
|
+
export interface EntityTypeHierarchyMappingConvention$instance extends IConvention {
|
|
1100
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
1101
|
+
readonly RelationalDependencies: RelationalConventionSetBuilderDependencies;
|
|
1195
1102
|
ProcessModelFinalizing(modelBuilder: IConventionModelBuilder, context: IConventionContext_1<IConventionModelBuilder>): void;
|
|
1196
1103
|
}
|
|
1197
1104
|
|
|
@@ -1210,12 +1117,8 @@ export interface EntityTypeHierarchyMappingConvention$instance extends IModelFin
|
|
|
1210
1117
|
export type EntityTypeHierarchyMappingConvention = EntityTypeHierarchyMappingConvention$instance & __EntityTypeHierarchyMappingConvention$views;
|
|
1211
1118
|
|
|
1212
1119
|
|
|
1213
|
-
export
|
|
1214
|
-
|
|
1215
|
-
}
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
export interface ForeignKeyAttributeConvention$instance extends ForeignKeyAttributeConvention$protected, IConvention {
|
|
1120
|
+
export interface ForeignKeyAttributeConvention$instance extends IConvention {
|
|
1121
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
1219
1122
|
ProcessComplexPropertyAdded(propertyBuilder: IConventionComplexPropertyBuilder, context: IConventionContext_1<IConventionComplexPropertyBuilder>): void;
|
|
1220
1123
|
ProcessEntityTypeAdded(entityTypeBuilder: IConventionEntityTypeBuilder, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
1221
1124
|
ProcessForeignKeyAdded(relationshipBuilder: IConventionForeignKeyBuilder, context: IConventionContext_1<IConventionForeignKeyBuilder>): void;
|
|
@@ -1246,14 +1149,10 @@ export interface ForeignKeyAttributeConvention$instance extends IComplexProperty
|
|
|
1246
1149
|
export type ForeignKeyAttributeConvention = ForeignKeyAttributeConvention$instance & __ForeignKeyAttributeConvention$views;
|
|
1247
1150
|
|
|
1248
1151
|
|
|
1249
|
-
export
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
}
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
export interface ForeignKeyIndexConvention$instance extends ForeignKeyIndexConvention$protected, IConvention {
|
|
1152
|
+
export interface ForeignKeyIndexConvention$instance extends IConvention {
|
|
1153
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
1154
|
+
AreIndexedBy(properties: IReadOnlyList<IConventionProperty>, unique: boolean, coveringIndexProperties: IReadOnlyList<IConventionProperty>, coveringIndexUnique: boolean): boolean;
|
|
1155
|
+
CreateIndex(properties: IReadOnlyList<IConventionProperty>, unique: boolean, entityTypeBuilder: IConventionEntityTypeBuilder): IConventionIndex | undefined;
|
|
1257
1156
|
ProcessEntityTypeBaseTypeChanged(entityTypeBuilder: IConventionEntityTypeBuilder, newBaseType: IConventionEntityType, oldBaseType: IConventionEntityType, context: IConventionContext_1<IConventionEntityType>): void;
|
|
1258
1157
|
ProcessForeignKeyAdded(relationshipBuilder: IConventionForeignKeyBuilder, context: IConventionContext_1<IConventionForeignKeyBuilder>): void;
|
|
1259
1158
|
ProcessForeignKeyPropertiesChanged(relationshipBuilder: IConventionForeignKeyBuilder, oldDependentProperties: IReadOnlyList<IConventionProperty>, oldPrincipalKey: IConventionKey, context: IConventionContext_1<IReadOnlyList<IConventionProperty>>): void;
|
|
@@ -1292,12 +1191,8 @@ export interface ForeignKeyIndexConvention$instance extends IEntityTypeBaseTypeC
|
|
|
1292
1191
|
export type ForeignKeyIndexConvention = ForeignKeyIndexConvention$instance & __ForeignKeyIndexConvention$views;
|
|
1293
1192
|
|
|
1294
1193
|
|
|
1295
|
-
export
|
|
1296
|
-
|
|
1297
|
-
}
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
export interface ForeignKeyPropertyDiscoveryConvention$instance extends ForeignKeyPropertyDiscoveryConvention$protected, IConvention {
|
|
1194
|
+
export interface ForeignKeyPropertyDiscoveryConvention$instance extends IConvention {
|
|
1195
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
1301
1196
|
ProcessEntityTypeMemberIgnored(entityTypeBuilder: IConventionEntityTypeBuilder, name: string, context: IConventionContext_1<System_Internal.String>): void;
|
|
1302
1197
|
ProcessEntityTypePrimaryKeyChanged(entityTypeBuilder: IConventionEntityTypeBuilder, newPrimaryKey: IConventionKey, previousPrimaryKey: IConventionKey, context: IConventionContext_1<IConventionKey>): void;
|
|
1303
1198
|
ProcessForeignKeyAdded(relationshipBuilder: IConventionForeignKeyBuilder, context: IConventionContext_1<IConventionForeignKeyBuilder>): void;
|
|
@@ -1347,12 +1242,8 @@ export interface ForeignKeyPropertyDiscoveryConvention$instance extends IEntityT
|
|
|
1347
1242
|
export type ForeignKeyPropertyDiscoveryConvention = ForeignKeyPropertyDiscoveryConvention$instance & __ForeignKeyPropertyDiscoveryConvention$views;
|
|
1348
1243
|
|
|
1349
1244
|
|
|
1350
|
-
export
|
|
1351
|
-
|
|
1352
|
-
}
|
|
1353
|
-
|
|
1354
|
-
|
|
1355
|
-
export interface IndexAttributeConvention$instance extends IndexAttributeConvention$protected, IConvention {
|
|
1245
|
+
export interface IndexAttributeConvention$instance extends IConvention {
|
|
1246
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
1356
1247
|
ProcessEntityTypeAdded(entityTypeBuilder: IConventionEntityTypeBuilder, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
1357
1248
|
ProcessEntityTypeBaseTypeChanged(entityTypeBuilder: IConventionEntityTypeBuilder, newBaseType: IConventionEntityType, oldBaseType: IConventionEntityType, context: IConventionContext_1<IConventionEntityType>): void;
|
|
1358
1249
|
ProcessModelFinalizing(modelBuilder: IConventionModelBuilder, context: IConventionContext_1<IConventionModelBuilder>): void;
|
|
@@ -1375,12 +1266,7 @@ export interface IndexAttributeConvention$instance extends IEntityTypeAddedConve
|
|
|
1375
1266
|
export type IndexAttributeConvention = IndexAttributeConvention$instance & __IndexAttributeConvention$views;
|
|
1376
1267
|
|
|
1377
1268
|
|
|
1378
|
-
export
|
|
1379
|
-
protected TryGetTargetEntityTypeBuilder(entityTypeBuilder: IConventionEntityTypeBuilder, targetClrType: Type, navigationMemberInfo: MemberInfo, shouldCreate?: boolean): IConventionEntityTypeBuilder | undefined;
|
|
1380
|
-
}
|
|
1381
|
-
|
|
1382
|
-
|
|
1383
|
-
export interface InversePropertyAttributeConvention$instance extends InversePropertyAttributeConvention$protected, NavigationAttributeConventionBase_1<InversePropertyAttribute>, IConvention {
|
|
1269
|
+
export interface InversePropertyAttributeConvention$instance extends NavigationAttributeConventionBase_1<InversePropertyAttribute>, IConvention {
|
|
1384
1270
|
ProcessEntityTypeAdded(entityTypeBuilder: IConventionEntityTypeBuilder, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
1385
1271
|
ProcessEntityTypeAdded(entityTypeBuilder: IConventionEntityTypeBuilder, navigationMemberInfo: MemberInfo, targetClrType: Type, attribute: InversePropertyAttribute, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
1386
1272
|
ProcessEntityTypeBaseTypeChanged(entityTypeBuilder: IConventionEntityTypeBuilder, newBaseType: IConventionEntityType, oldBaseType: IConventionEntityType, context: IConventionContext_1<IConventionEntityType>): void;
|
|
@@ -1394,6 +1280,7 @@ export interface InversePropertyAttributeConvention$instance extends InverseProp
|
|
|
1394
1280
|
ProcessModelFinalizing(modelBuilder: IConventionModelBuilder, context: IConventionContext_1<IConventionModelBuilder>): void;
|
|
1395
1281
|
ProcessNavigationAdded(navigationBuilder: IConventionNavigationBuilder, context: IConventionContext_1<IConventionNavigationBuilder>): void;
|
|
1396
1282
|
ProcessNavigationAdded(navigationBuilder: IConventionNavigationBuilder, attribute: InversePropertyAttribute, context: IConventionContext_1<IConventionNavigationBuilder>): void;
|
|
1283
|
+
TryGetTargetEntityTypeBuilder(entityTypeBuilder: IConventionEntityTypeBuilder, targetClrType: Type, navigationMemberInfo: MemberInfo, shouldCreate?: boolean): IConventionEntityTypeBuilder | undefined;
|
|
1397
1284
|
}
|
|
1398
1285
|
|
|
1399
1286
|
|
|
@@ -1417,20 +1304,14 @@ export interface InversePropertyAttributeConvention$instance extends IModelFinal
|
|
|
1417
1304
|
export type InversePropertyAttributeConvention = InversePropertyAttributeConvention$instance & __InversePropertyAttributeConvention$views;
|
|
1418
1305
|
|
|
1419
1306
|
|
|
1420
|
-
export
|
|
1421
|
-
protected ProcessPropertyAdded4(propertyBuilder: IConventionPropertyBuilder, attribute: KeyAttribute, clrMember: MemberInfo, context: IConventionContext): void;
|
|
1422
|
-
protected ProcessPropertyAdded4(propertyBuilder: IConventionComplexPropertyBuilder, attribute: KeyAttribute, clrMember: MemberInfo, context: IConventionContext): void;
|
|
1423
|
-
protected abstract ProcessPropertyAdded2(propertyBuilder: IConventionPropertyBuilder, attribute: unknown, clrMember: MemberInfo, context: IConventionContext): void;
|
|
1424
|
-
protected ProcessPropertyAdded3(propertyBuilder: IConventionComplexPropertyBuilder, attribute: unknown, clrMember: MemberInfo, context: IConventionContext): void;
|
|
1425
|
-
}
|
|
1426
|
-
|
|
1427
|
-
|
|
1428
|
-
export interface KeyAttributeConvention$instance extends KeyAttributeConvention$protected, PropertyAttributeConventionBase_1$instance<KeyAttribute>, IConvention {
|
|
1307
|
+
export interface KeyAttributeConvention$instance extends PropertyAttributeConventionBase_1$instance<KeyAttribute>, IConvention {
|
|
1429
1308
|
ProcessComplexPropertyAdded(propertyBuilder: IConventionComplexPropertyBuilder, context: IConventionContext_1<IConventionComplexPropertyBuilder>): void;
|
|
1430
1309
|
ProcessEntityTypeAdded(entityTypeBuilder: IConventionEntityTypeBuilder, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
1431
1310
|
ProcessEntityTypeBaseTypeChanged(entityTypeBuilder: IConventionEntityTypeBuilder, newBaseType: IConventionEntityType, oldBaseType: IConventionEntityType, context: IConventionContext_1<IConventionEntityType>): void;
|
|
1432
1311
|
ProcessModelFinalizing(modelBuilder: IConventionModelBuilder, context: IConventionContext_1<IConventionModelBuilder>): void;
|
|
1312
|
+
ProcessPropertyAdded(propertyBuilder: IConventionPropertyBuilder, attribute: KeyAttribute, clrMember: MemberInfo, context: IConventionContext): void;
|
|
1433
1313
|
ProcessPropertyAdded(propertyBuilder: IConventionPropertyBuilder, context: IConventionContext_1<IConventionPropertyBuilder>): void;
|
|
1314
|
+
ProcessPropertyAdded(propertyBuilder: IConventionComplexPropertyBuilder, attribute: KeyAttribute, clrMember: MemberInfo, context: IConventionContext): void;
|
|
1434
1315
|
ProcessPropertyFieldChanged(propertyBuilder: IConventionPropertyBuilder, newFieldInfo: FieldInfo, oldFieldInfo: FieldInfo, context: IConventionContext_1<FieldInfo>): void;
|
|
1435
1316
|
}
|
|
1436
1317
|
|
|
@@ -1454,16 +1335,9 @@ export interface KeyAttributeConvention$instance extends IEntityTypeAddedConvent
|
|
|
1454
1335
|
export type KeyAttributeConvention = KeyAttributeConvention$instance & __KeyAttributeConvention$views;
|
|
1455
1336
|
|
|
1456
1337
|
|
|
1457
|
-
export
|
|
1458
|
-
|
|
1459
|
-
|
|
1460
|
-
protected ProcessKeyProperties(keyProperties: IList<IConventionProperty>, entityType: IConventionEntityType): void;
|
|
1461
|
-
protected ShouldDiscoverKeyProperties(entityType: IConventionEntityType): boolean;
|
|
1462
|
-
protected TryConfigurePrimaryKey(entityTypeBuilder: IConventionEntityTypeBuilder): void;
|
|
1463
|
-
}
|
|
1464
|
-
|
|
1465
|
-
|
|
1466
|
-
export interface KeyDiscoveryConvention$instance extends KeyDiscoveryConvention$protected, IConvention {
|
|
1338
|
+
export interface KeyDiscoveryConvention$instance extends IConvention {
|
|
1339
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
1340
|
+
DiscoverKeyProperties(entityType: IConventionEntityType): List<IConventionProperty> | undefined;
|
|
1467
1341
|
ProcessEntityTypeAdded(entityTypeBuilder: IConventionEntityTypeBuilder, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
1468
1342
|
ProcessEntityTypeBaseTypeChanged(entityTypeBuilder: IConventionEntityTypeBuilder, newBaseType: IConventionEntityType, oldBaseType: IConventionEntityType, context: IConventionContext_1<IConventionEntityType>): void;
|
|
1469
1343
|
ProcessEntityTypeMemberIgnored(entityTypeBuilder: IConventionEntityTypeBuilder, name: string, context: IConventionContext_1<System_Internal.String>): void;
|
|
@@ -1472,9 +1346,12 @@ export interface KeyDiscoveryConvention$instance extends KeyDiscoveryConvention$
|
|
|
1472
1346
|
ProcessForeignKeyPropertiesChanged(relationshipBuilder: IConventionForeignKeyBuilder, oldDependentProperties: IReadOnlyList<IConventionProperty>, oldPrincipalKey: IConventionKey, context: IConventionContext_1<IReadOnlyList<IConventionProperty>>): void;
|
|
1473
1347
|
ProcessForeignKeyRemoved(entityTypeBuilder: IConventionEntityTypeBuilder, foreignKey: IConventionForeignKey, context: IConventionContext_1<IConventionForeignKey>): void;
|
|
1474
1348
|
ProcessForeignKeyUniquenessChanged(relationshipBuilder: IConventionForeignKeyBuilder, context: IConventionContext_1<Nullable<System_Internal.Boolean>>): void;
|
|
1349
|
+
ProcessKeyProperties(keyProperties: IList<IConventionProperty>, entityType: IConventionEntityType): void;
|
|
1475
1350
|
ProcessKeyRemoved(entityTypeBuilder: IConventionEntityTypeBuilder, key: IConventionKey, context: IConventionContext_1<IConventionKey>): void;
|
|
1476
1351
|
ProcessPropertyAdded(propertyBuilder: IConventionPropertyBuilder, context: IConventionContext_1<IConventionPropertyBuilder>): void;
|
|
1477
1352
|
ProcessSkipNavigationForeignKeyChanged(skipNavigationBuilder: IConventionSkipNavigationBuilder, foreignKey: IConventionForeignKey, oldForeignKey: IConventionForeignKey, context: IConventionContext_1<IConventionForeignKey>): void;
|
|
1353
|
+
ShouldDiscoverKeyProperties(entityType: IConventionEntityType): boolean;
|
|
1354
|
+
TryConfigurePrimaryKey(entityTypeBuilder: IConventionEntityTypeBuilder): void;
|
|
1478
1355
|
}
|
|
1479
1356
|
|
|
1480
1357
|
|
|
@@ -1503,13 +1380,7 @@ export interface KeyDiscoveryConvention$instance extends IEntityTypeAddedConvent
|
|
|
1503
1380
|
export type KeyDiscoveryConvention = KeyDiscoveryConvention$instance & __KeyDiscoveryConvention$views;
|
|
1504
1381
|
|
|
1505
1382
|
|
|
1506
|
-
export
|
|
1507
|
-
protected ProcessEntityTypeAdded3(entityTypeBuilder: IConventionEntityTypeBuilder, attribute: KeylessAttribute, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
1508
|
-
protected abstract ProcessEntityTypeAdded2(entityTypeBuilder: IConventionEntityTypeBuilder, attribute: unknown, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
1509
|
-
}
|
|
1510
|
-
|
|
1511
|
-
|
|
1512
|
-
export interface KeylessAttributeConvention$instance extends KeylessAttributeConvention$protected, TypeAttributeConventionBase_1$instance<KeylessAttribute>, IConvention {
|
|
1383
|
+
export interface KeylessAttributeConvention$instance extends TypeAttributeConventionBase_1$instance<KeylessAttribute>, IConvention {
|
|
1513
1384
|
ProcessEntityTypeAdded(entityTypeBuilder: IConventionEntityTypeBuilder, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
1514
1385
|
}
|
|
1515
1386
|
|
|
@@ -1526,20 +1397,16 @@ export interface __KeylessAttributeConvention$views {
|
|
|
1526
1397
|
export type KeylessAttributeConvention = KeylessAttributeConvention$instance & __KeylessAttributeConvention$views;
|
|
1527
1398
|
|
|
1528
1399
|
|
|
1529
|
-
export
|
|
1530
|
-
|
|
1531
|
-
|
|
1532
|
-
|
|
1533
|
-
|
|
1534
|
-
protected ShouldCreateJoinType(skipNavigation: IConventionSkipNavigation): boolean;
|
|
1535
|
-
}
|
|
1536
|
-
|
|
1537
|
-
|
|
1538
|
-
export interface ManyToManyJoinEntityTypeConvention$instance extends ManyToManyJoinEntityTypeConvention$protected, IConvention {
|
|
1400
|
+
export interface ManyToManyJoinEntityTypeConvention$instance extends IConvention {
|
|
1401
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
1402
|
+
CreateJoinEntityType(joinEntityTypeName: string, skipNavigation: IConventionSkipNavigation): void;
|
|
1403
|
+
CreateSkipNavigationForeignKey(skipNavigation: IConventionSkipNavigation, joinEntityTypeBuilder: IConventionEntityTypeBuilder): IConventionForeignKey;
|
|
1404
|
+
GenerateJoinTypeName(skipNavigation: IConventionSkipNavigation): string;
|
|
1539
1405
|
ProcessSkipNavigationAdded(skipNavigationBuilder: IConventionSkipNavigationBuilder, context: IConventionContext_1<IConventionSkipNavigationBuilder>): void;
|
|
1540
1406
|
ProcessSkipNavigationForeignKeyChanged(skipNavigationBuilder: IConventionSkipNavigationBuilder, foreignKey: IConventionForeignKey, oldForeignKey: IConventionForeignKey, context: IConventionContext_1<IConventionForeignKey>): void;
|
|
1541
1407
|
ProcessSkipNavigationInverseChanged(skipNavigationBuilder: IConventionSkipNavigationBuilder, inverse: IConventionSkipNavigation, oldInverse: IConventionSkipNavigation, context: IConventionContext_1<IConventionSkipNavigation>): void;
|
|
1542
1408
|
ProcessSkipNavigationRemoved(entityTypeBuilder: IConventionEntityTypeBuilder, navigation: IConventionSkipNavigation, context: IConventionContext_1<IConventionSkipNavigation>): void;
|
|
1409
|
+
ShouldCreateJoinType(skipNavigation: IConventionSkipNavigation): boolean;
|
|
1543
1410
|
}
|
|
1544
1411
|
|
|
1545
1412
|
|
|
@@ -1560,17 +1427,11 @@ export interface ManyToManyJoinEntityTypeConvention$instance extends ISkipNaviga
|
|
|
1560
1427
|
export type ManyToManyJoinEntityTypeConvention = ManyToManyJoinEntityTypeConvention$instance & __ManyToManyJoinEntityTypeConvention$views;
|
|
1561
1428
|
|
|
1562
1429
|
|
|
1563
|
-
export
|
|
1564
|
-
protected ProcessPropertyAdded4(propertyBuilder: IConventionPropertyBuilder, attribute: MaxLengthAttribute, clrMember: MemberInfo, context: IConventionContext): void;
|
|
1565
|
-
protected ProcessPropertyAdded4(propertyBuilder: IConventionComplexPropertyBuilder, attribute: MaxLengthAttribute, clrMember: MemberInfo, context: IConventionContext): void;
|
|
1566
|
-
protected abstract ProcessPropertyAdded2(propertyBuilder: IConventionPropertyBuilder, attribute: unknown, clrMember: MemberInfo, context: IConventionContext): void;
|
|
1567
|
-
protected ProcessPropertyAdded3(propertyBuilder: IConventionComplexPropertyBuilder, attribute: unknown, clrMember: MemberInfo, context: IConventionContext): void;
|
|
1568
|
-
}
|
|
1569
|
-
|
|
1570
|
-
|
|
1571
|
-
export interface MaxLengthAttributeConvention$instance extends MaxLengthAttributeConvention$protected, PropertyAttributeConventionBase_1$instance<MaxLengthAttribute>, IConvention {
|
|
1430
|
+
export interface MaxLengthAttributeConvention$instance extends PropertyAttributeConventionBase_1$instance<MaxLengthAttribute>, IConvention {
|
|
1572
1431
|
ProcessComplexPropertyAdded(propertyBuilder: IConventionComplexPropertyBuilder, context: IConventionContext_1<IConventionComplexPropertyBuilder>): void;
|
|
1432
|
+
ProcessPropertyAdded(propertyBuilder: IConventionPropertyBuilder, attribute: MaxLengthAttribute, clrMember: MemberInfo, context: IConventionContext): void;
|
|
1573
1433
|
ProcessPropertyAdded(propertyBuilder: IConventionPropertyBuilder, context: IConventionContext_1<IConventionPropertyBuilder>): void;
|
|
1434
|
+
ProcessPropertyAdded(propertyBuilder: IConventionComplexPropertyBuilder, attribute: MaxLengthAttribute, clrMember: MemberInfo, context: IConventionContext): void;
|
|
1574
1435
|
ProcessPropertyFieldChanged(propertyBuilder: IConventionPropertyBuilder, newFieldInfo: FieldInfo, oldFieldInfo: FieldInfo, context: IConventionContext_1<FieldInfo>): void;
|
|
1575
1436
|
}
|
|
1576
1437
|
|
|
@@ -1589,12 +1450,8 @@ export interface __MaxLengthAttributeConvention$views {
|
|
|
1589
1450
|
export type MaxLengthAttributeConvention = MaxLengthAttributeConvention$instance & __MaxLengthAttributeConvention$views;
|
|
1590
1451
|
|
|
1591
1452
|
|
|
1592
|
-
export
|
|
1593
|
-
|
|
1594
|
-
}
|
|
1595
|
-
|
|
1596
|
-
|
|
1597
|
-
export interface ModelCleanupConvention$instance extends ModelCleanupConvention$protected, IConvention {
|
|
1453
|
+
export interface ModelCleanupConvention$instance extends IConvention {
|
|
1454
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
1598
1455
|
ProcessForeignKeyRemoved(entityTypeBuilder: IConventionEntityTypeBuilder, foreignKey: IConventionForeignKey, context: IConventionContext_1<IConventionForeignKey>): void;
|
|
1599
1456
|
ProcessModelFinalizing(modelBuilder: IConventionModelBuilder, context: IConventionContext_1<IConventionModelBuilder>): void;
|
|
1600
1457
|
}
|
|
@@ -1615,12 +1472,8 @@ export interface ModelCleanupConvention$instance extends IForeignKeyRemovedConve
|
|
|
1615
1472
|
export type ModelCleanupConvention = ModelCleanupConvention$instance & __ModelCleanupConvention$views;
|
|
1616
1473
|
|
|
1617
1474
|
|
|
1618
|
-
export
|
|
1619
|
-
|
|
1620
|
-
}
|
|
1621
|
-
|
|
1622
|
-
|
|
1623
|
-
export interface NavigationAttributeConventionBase_1$instance<TAttribute extends Attribute> extends NavigationAttributeConventionBase_1$protected<TAttribute> {
|
|
1475
|
+
export interface NavigationAttributeConventionBase_1$instance<TAttribute extends Attribute> {
|
|
1476
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
1624
1477
|
ProcessEntityTypeAdded(entityTypeBuilder: IConventionEntityTypeBuilder, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
1625
1478
|
ProcessEntityTypeAdded(entityTypeBuilder: IConventionEntityTypeBuilder, navigationMemberInfo: MemberInfo, targetClrType: Type, attribute: TAttribute, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
1626
1479
|
ProcessEntityTypeBaseTypeChanged(entityTypeBuilder: IConventionEntityTypeBuilder, newBaseType: IConventionEntityType, oldBaseType: IConventionEntityType, context: IConventionContext_1<IConventionEntityType>): void;
|
|
@@ -1640,8 +1493,7 @@ export interface NavigationAttributeConventionBase_1$instance<TAttribute extends
|
|
|
1640
1493
|
}
|
|
1641
1494
|
|
|
1642
1495
|
|
|
1643
|
-
export const NavigationAttributeConventionBase_1: {
|
|
1644
|
-
new<TAttribute extends Attribute>(dependencies: ProviderConventionSetBuilderDependencies): NavigationAttributeConventionBase_1<TAttribute>;
|
|
1496
|
+
export const NavigationAttributeConventionBase_1: (abstract new<TAttribute extends Attribute>(dependencies: ProviderConventionSetBuilderDependencies) => NavigationAttributeConventionBase_1<TAttribute>) & {
|
|
1645
1497
|
GetAttributes<TAttribute extends Attribute, TCustomAttribute extends Attribute>(entityType: IConventionEntityType, navigation: IConventionNavigation): IEnumerable<TCustomAttribute>;
|
|
1646
1498
|
GetAttributes<TAttribute extends Attribute, TCustomAttribute extends Attribute>(entityType: IConventionEntityType, skipNavigation: IConventionSkipNavigation): IEnumerable<TCustomAttribute>;
|
|
1647
1499
|
};
|
|
@@ -1670,12 +1522,8 @@ export interface __NavigationBackingFieldAttributeConvention$views {
|
|
|
1670
1522
|
export type NavigationBackingFieldAttributeConvention = NavigationBackingFieldAttributeConvention$instance & __NavigationBackingFieldAttributeConvention$views;
|
|
1671
1523
|
|
|
1672
1524
|
|
|
1673
|
-
export
|
|
1674
|
-
|
|
1675
|
-
}
|
|
1676
|
-
|
|
1677
|
-
|
|
1678
|
-
export interface NavigationEagerLoadingConvention$instance extends NavigationEagerLoadingConvention$protected, IConvention {
|
|
1525
|
+
export interface NavigationEagerLoadingConvention$instance extends IConvention {
|
|
1526
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
1679
1527
|
ProcessForeignKeyOwnershipChanged(relationshipBuilder: IConventionForeignKeyBuilder, context: IConventionContext_1<Nullable<System_Internal.Boolean>>): void;
|
|
1680
1528
|
}
|
|
1681
1529
|
|
|
@@ -1694,18 +1542,13 @@ export interface NavigationEagerLoadingConvention$instance extends IForeignKeyOw
|
|
|
1694
1542
|
export type NavigationEagerLoadingConvention = NavigationEagerLoadingConvention$instance & __NavigationEagerLoadingConvention$views;
|
|
1695
1543
|
|
|
1696
1544
|
|
|
1697
|
-
export
|
|
1698
|
-
|
|
1699
|
-
|
|
1700
|
-
}
|
|
1701
|
-
|
|
1702
|
-
|
|
1703
|
-
export interface NonNullableConventionBase$instance extends NonNullableConventionBase$protected {
|
|
1545
|
+
export interface NonNullableConventionBase$instance {
|
|
1546
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
1547
|
+
TryGetNullabilityInfo(modelBuilder: IConventionModelBuilder, memberInfo: MemberInfo, nullabilityInfo: NullabilityInfo): boolean;
|
|
1704
1548
|
}
|
|
1705
1549
|
|
|
1706
1550
|
|
|
1707
|
-
export const NonNullableConventionBase: {
|
|
1708
|
-
new(dependencies: ProviderConventionSetBuilderDependencies): NonNullableConventionBase;
|
|
1551
|
+
export const NonNullableConventionBase: (abstract new(dependencies: ProviderConventionSetBuilderDependencies) => NonNullableConventionBase) & {
|
|
1709
1552
|
};
|
|
1710
1553
|
|
|
1711
1554
|
|
|
@@ -1759,15 +1602,11 @@ export interface NonNullableReferencePropertyConvention$instance extends IComple
|
|
|
1759
1602
|
export type NonNullableReferencePropertyConvention = NonNullableReferencePropertyConvention$instance & __NonNullableReferencePropertyConvention$views;
|
|
1760
1603
|
|
|
1761
1604
|
|
|
1762
|
-
export
|
|
1763
|
-
|
|
1764
|
-
protected ShouldIgnore(memberInfo: MemberInfo): boolean;
|
|
1765
|
-
}
|
|
1766
|
-
|
|
1767
|
-
|
|
1768
|
-
export interface NotMappedMemberAttributeConvention$instance extends NotMappedMemberAttributeConvention$protected, IConvention {
|
|
1605
|
+
export interface NotMappedMemberAttributeConvention$instance extends IConvention {
|
|
1606
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
1769
1607
|
ProcessComplexPropertyAdded(propertyBuilder: IConventionComplexPropertyBuilder, context: IConventionContext_1<IConventionComplexPropertyBuilder>): void;
|
|
1770
1608
|
ProcessEntityTypeAdded(entityTypeBuilder: IConventionEntityTypeBuilder, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
1609
|
+
ShouldIgnore(memberInfo: MemberInfo): boolean;
|
|
1771
1610
|
}
|
|
1772
1611
|
|
|
1773
1612
|
|
|
@@ -1786,13 +1625,7 @@ export interface NotMappedMemberAttributeConvention$instance extends IComplexPro
|
|
|
1786
1625
|
export type NotMappedMemberAttributeConvention = NotMappedMemberAttributeConvention$instance & __NotMappedMemberAttributeConvention$views;
|
|
1787
1626
|
|
|
1788
1627
|
|
|
1789
|
-
export
|
|
1790
|
-
protected ProcessEntityTypeAdded3(entityTypeBuilder: IConventionEntityTypeBuilder, attribute: NotMappedAttribute, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
1791
|
-
protected abstract ProcessEntityTypeAdded2(entityTypeBuilder: IConventionEntityTypeBuilder, attribute: unknown, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
1792
|
-
}
|
|
1793
|
-
|
|
1794
|
-
|
|
1795
|
-
export interface NotMappedTypeAttributeConvention$instance extends NotMappedTypeAttributeConvention$protected, TypeAttributeConventionBase_1$instance<NotMappedAttribute>, IConvention {
|
|
1628
|
+
export interface NotMappedTypeAttributeConvention$instance extends TypeAttributeConventionBase_1$instance<NotMappedAttribute>, IConvention {
|
|
1796
1629
|
ProcessEntityTypeAdded(entityTypeBuilder: IConventionEntityTypeBuilder, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
1797
1630
|
}
|
|
1798
1631
|
|
|
@@ -1809,16 +1642,9 @@ export interface __NotMappedTypeAttributeConvention$views {
|
|
|
1809
1642
|
export type NotMappedTypeAttributeConvention = NotMappedTypeAttributeConvention$instance & __NotMappedTypeAttributeConvention$views;
|
|
1810
1643
|
|
|
1811
1644
|
|
|
1812
|
-
export
|
|
1813
|
-
protected ProcessComplexTypeAdded2(complexTypeBuilder: IConventionComplexTypeBuilder, attribute: OwnedAttribute, context: IConventionContext): void;
|
|
1814
|
-
protected ProcessComplexTypeAdded(complexTypeBuilder: IConventionComplexTypeBuilder, attribute: unknown, context: IConventionContext): void;
|
|
1815
|
-
protected ProcessEntityTypeAdded3(entityTypeBuilder: IConventionEntityTypeBuilder, attribute: OwnedAttribute, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
1816
|
-
protected abstract ProcessEntityTypeAdded2(entityTypeBuilder: IConventionEntityTypeBuilder, attribute: unknown, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
1817
|
-
}
|
|
1818
|
-
|
|
1819
|
-
|
|
1820
|
-
export interface OwnedAttributeConvention$instance extends OwnedAttributeConvention$protected, TypeAttributeConventionBase_1$instance<OwnedAttribute>, IConvention {
|
|
1645
|
+
export interface OwnedAttributeConvention$instance extends TypeAttributeConventionBase_1$instance<OwnedAttribute>, IConvention {
|
|
1821
1646
|
ProcessComplexPropertyAdded(propertyBuilder: IConventionComplexPropertyBuilder, context: IConventionContext_1<IConventionComplexPropertyBuilder>): void;
|
|
1647
|
+
ProcessComplexTypeAdded(complexTypeBuilder: IConventionComplexTypeBuilder, attribute: OwnedAttribute, context: IConventionContext): void;
|
|
1822
1648
|
ProcessEntityTypeAdded(entityTypeBuilder: IConventionEntityTypeBuilder, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
1823
1649
|
}
|
|
1824
1650
|
|
|
@@ -1836,16 +1662,10 @@ export interface __OwnedAttributeConvention$views {
|
|
|
1836
1662
|
export type OwnedAttributeConvention = OwnedAttributeConvention$instance & __OwnedAttributeConvention$views;
|
|
1837
1663
|
|
|
1838
1664
|
|
|
1839
|
-
export
|
|
1840
|
-
|
|
1841
|
-
protected ProcessPropertyAdded4(propertyBuilder: IConventionComplexPropertyBuilder, attribute: PrecisionAttribute, clrMember: MemberInfo, context: IConventionContext): void;
|
|
1842
|
-
protected abstract ProcessPropertyAdded2(propertyBuilder: IConventionPropertyBuilder, attribute: unknown, clrMember: MemberInfo, context: IConventionContext): void;
|
|
1843
|
-
protected ProcessPropertyAdded3(propertyBuilder: IConventionComplexPropertyBuilder, attribute: unknown, clrMember: MemberInfo, context: IConventionContext): void;
|
|
1844
|
-
}
|
|
1845
|
-
|
|
1846
|
-
|
|
1847
|
-
export interface PrecisionAttributeConvention$instance extends PrecisionAttributeConvention$protected, PropertyAttributeConventionBase_1$instance<PrecisionAttribute>, IConvention {
|
|
1665
|
+
export interface PrecisionAttributeConvention$instance extends PropertyAttributeConventionBase_1$instance<PrecisionAttribute>, IConvention {
|
|
1666
|
+
ProcessPropertyAdded(propertyBuilder: IConventionPropertyBuilder, attribute: PrecisionAttribute, clrMember: MemberInfo, context: IConventionContext): void;
|
|
1848
1667
|
ProcessPropertyAdded(propertyBuilder: IConventionPropertyBuilder, context: IConventionContext_1<IConventionPropertyBuilder>): void;
|
|
1668
|
+
ProcessPropertyAdded(propertyBuilder: IConventionComplexPropertyBuilder, attribute: PrecisionAttribute, clrMember: MemberInfo, context: IConventionContext): void;
|
|
1849
1669
|
ProcessPropertyFieldChanged(propertyBuilder: IConventionPropertyBuilder, newFieldInfo: FieldInfo, oldFieldInfo: FieldInfo, context: IConventionContext_1<FieldInfo>): void;
|
|
1850
1670
|
}
|
|
1851
1671
|
|
|
@@ -1863,23 +1683,18 @@ export interface __PrecisionAttributeConvention$views {
|
|
|
1863
1683
|
export type PrecisionAttributeConvention = PrecisionAttributeConvention$instance & __PrecisionAttributeConvention$views;
|
|
1864
1684
|
|
|
1865
1685
|
|
|
1866
|
-
export
|
|
1867
|
-
|
|
1868
|
-
protected abstract ProcessPropertyAdded(propertyBuilder: IConventionPropertyBuilder, attribute: TAttribute, clrMember: MemberInfo, context: IConventionContext): void;
|
|
1869
|
-
protected ProcessPropertyAdded(propertyBuilder: IConventionComplexPropertyBuilder, attribute: TAttribute, clrMember: MemberInfo, context: IConventionContext): void;
|
|
1870
|
-
}
|
|
1871
|
-
|
|
1872
|
-
|
|
1873
|
-
export interface PropertyAttributeConventionBase_1$instance<TAttribute extends Attribute> extends PropertyAttributeConventionBase_1$protected<TAttribute>, IConvention {
|
|
1686
|
+
export interface PropertyAttributeConventionBase_1$instance<TAttribute extends Attribute> extends IConvention {
|
|
1687
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
1874
1688
|
ProcessComplexPropertyAdded(propertyBuilder: IConventionComplexPropertyBuilder, context: IConventionContext_1<IConventionComplexPropertyBuilder>): void;
|
|
1875
1689
|
ProcessComplexPropertyFieldChanged(propertyBuilder: IConventionComplexPropertyBuilder, newFieldInfo: FieldInfo, oldFieldInfo: FieldInfo, context: IConventionContext_1<FieldInfo>): void;
|
|
1876
1690
|
ProcessPropertyAdded(propertyBuilder: IConventionPropertyBuilder, context: IConventionContext_1<IConventionPropertyBuilder>): void;
|
|
1691
|
+
ProcessPropertyAdded(propertyBuilder: IConventionPropertyBuilder, attribute: TAttribute, clrMember: MemberInfo, context: IConventionContext): void;
|
|
1692
|
+
ProcessPropertyAdded(propertyBuilder: IConventionComplexPropertyBuilder, attribute: TAttribute, clrMember: MemberInfo, context: IConventionContext): void;
|
|
1877
1693
|
ProcessPropertyFieldChanged(propertyBuilder: IConventionPropertyBuilder, newFieldInfo: FieldInfo, oldFieldInfo: FieldInfo, context: IConventionContext_1<FieldInfo>): void;
|
|
1878
1694
|
}
|
|
1879
1695
|
|
|
1880
1696
|
|
|
1881
|
-
export const PropertyAttributeConventionBase_1: {
|
|
1882
|
-
new<TAttribute extends Attribute>(dependencies: ProviderConventionSetBuilderDependencies): PropertyAttributeConventionBase_1<TAttribute>;
|
|
1697
|
+
export const PropertyAttributeConventionBase_1: (abstract new<TAttribute extends Attribute>(dependencies: ProviderConventionSetBuilderDependencies) => PropertyAttributeConventionBase_1<TAttribute>) & {
|
|
1883
1698
|
};
|
|
1884
1699
|
|
|
1885
1700
|
|
|
@@ -1893,16 +1708,12 @@ export interface PropertyAttributeConventionBase_1$instance<TAttribute extends A
|
|
|
1893
1708
|
export type PropertyAttributeConventionBase_1<TAttribute extends Attribute> = PropertyAttributeConventionBase_1$instance<TAttribute> & __PropertyAttributeConventionBase_1$views<TAttribute>;
|
|
1894
1709
|
|
|
1895
1710
|
|
|
1896
|
-
export
|
|
1897
|
-
|
|
1898
|
-
|
|
1899
|
-
|
|
1900
|
-
|
|
1901
|
-
|
|
1902
|
-
}
|
|
1903
|
-
|
|
1904
|
-
|
|
1905
|
-
export interface PropertyDiscoveryConvention$instance extends PropertyDiscoveryConvention$protected, IConvention {
|
|
1711
|
+
export interface PropertyDiscoveryConvention$instance extends IConvention {
|
|
1712
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
1713
|
+
readonly UseAttributes: boolean;
|
|
1714
|
+
DiscoverPrimitiveProperties(structuralTypeBuilder: IConventionTypeBaseBuilder, context: IConventionContext): void;
|
|
1715
|
+
GetMembers(structuralType: IConventionTypeBase): IEnumerable<MemberInfo>;
|
|
1716
|
+
IsCandidatePrimitiveProperty(memberInfo: MemberInfo, structuralType: IConventionTypeBase, mapping: CoreTypeMapping): boolean;
|
|
1906
1717
|
ProcessComplexPropertyAdded(propertyBuilder: IConventionComplexPropertyBuilder, context: IConventionContext_1<IConventionComplexPropertyBuilder>): void;
|
|
1907
1718
|
ProcessEntityTypeAdded(entityTypeBuilder: IConventionEntityTypeBuilder, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
1908
1719
|
ProcessEntityTypeBaseTypeChanged(entityTypeBuilder: IConventionEntityTypeBuilder, newBaseType: IConventionEntityType, oldBaseType: IConventionEntityType, context: IConventionContext_1<IConventionEntityType>): void;
|
|
@@ -1925,13 +1736,9 @@ export interface PropertyDiscoveryConvention$instance extends IComplexPropertyAd
|
|
|
1925
1736
|
export type PropertyDiscoveryConvention = PropertyDiscoveryConvention$instance & __PropertyDiscoveryConvention$views;
|
|
1926
1737
|
|
|
1927
1738
|
|
|
1928
|
-
export
|
|
1929
|
-
|
|
1930
|
-
|
|
1931
|
-
}
|
|
1932
|
-
|
|
1933
|
-
|
|
1934
|
-
export interface PropertyOverridesConvention$instance extends PropertyOverridesConvention$protected, IConvention {
|
|
1739
|
+
export interface PropertyOverridesConvention$instance extends IConvention {
|
|
1740
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
1741
|
+
readonly RelationalDependencies: RelationalConventionSetBuilderDependencies;
|
|
1935
1742
|
ProcessPropertyAdded(propertyBuilder: IConventionPropertyBuilder, context: IConventionContext_1<IConventionPropertyBuilder>): void;
|
|
1936
1743
|
}
|
|
1937
1744
|
|
|
@@ -1950,13 +1757,9 @@ export interface PropertyOverridesConvention$instance extends IPropertyAddedConv
|
|
|
1950
1757
|
export type PropertyOverridesConvention = PropertyOverridesConvention$instance & __PropertyOverridesConvention$views;
|
|
1951
1758
|
|
|
1952
1759
|
|
|
1953
|
-
export
|
|
1954
|
-
|
|
1955
|
-
|
|
1956
|
-
}
|
|
1957
|
-
|
|
1958
|
-
|
|
1959
|
-
export interface QueryFilterRewritingConvention$instance extends QueryFilterRewritingConvention$protected, IConvention {
|
|
1760
|
+
export interface QueryFilterRewritingConvention$instance extends IConvention {
|
|
1761
|
+
DbSetAccessRewriter: unknown;
|
|
1762
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
1960
1763
|
ProcessModelFinalizing(modelBuilder: IConventionModelBuilder, context: IConventionContext_1<IConventionModelBuilder>): void;
|
|
1961
1764
|
}
|
|
1962
1765
|
|
|
@@ -1975,16 +1778,10 @@ export interface QueryFilterRewritingConvention$instance extends IModelFinalizin
|
|
|
1975
1778
|
export type QueryFilterRewritingConvention = QueryFilterRewritingConvention$instance & __QueryFilterRewritingConvention$views;
|
|
1976
1779
|
|
|
1977
1780
|
|
|
1978
|
-
export
|
|
1979
|
-
|
|
1980
|
-
protected ProcessPropertyAdded4(propertyBuilder: IConventionPropertyBuilder, attribute: ColumnAttribute, clrMember: MemberInfo, context: IConventionContext): void;
|
|
1981
|
-
protected abstract ProcessPropertyAdded2(propertyBuilder: IConventionPropertyBuilder, attribute: unknown, clrMember: MemberInfo, context: IConventionContext): void;
|
|
1982
|
-
protected ProcessPropertyAdded3(propertyBuilder: IConventionComplexPropertyBuilder, attribute: unknown, clrMember: MemberInfo, context: IConventionContext): void;
|
|
1983
|
-
}
|
|
1984
|
-
|
|
1985
|
-
|
|
1986
|
-
export interface RelationalColumnAttributeConvention$instance extends RelationalColumnAttributeConvention$protected, PropertyAttributeConventionBase_1$instance<ColumnAttribute>, IConvention {
|
|
1781
|
+
export interface RelationalColumnAttributeConvention$instance extends PropertyAttributeConventionBase_1$instance<ColumnAttribute>, IConvention {
|
|
1782
|
+
readonly RelationalDependencies: RelationalConventionSetBuilderDependencies;
|
|
1987
1783
|
ProcessPropertyAdded(propertyBuilder: IConventionPropertyBuilder, context: IConventionContext_1<IConventionPropertyBuilder>): void;
|
|
1784
|
+
ProcessPropertyAdded(propertyBuilder: IConventionComplexPropertyBuilder, attribute: ColumnAttribute, clrMember: MemberInfo, context: IConventionContext): void;
|
|
1988
1785
|
ProcessPropertyFieldChanged(propertyBuilder: IConventionPropertyBuilder, newFieldInfo: FieldInfo, oldFieldInfo: FieldInfo, context: IConventionContext_1<FieldInfo>): void;
|
|
1989
1786
|
}
|
|
1990
1787
|
|
|
@@ -2002,16 +1799,10 @@ export interface __RelationalColumnAttributeConvention$views {
|
|
|
2002
1799
|
export type RelationalColumnAttributeConvention = RelationalColumnAttributeConvention$instance & __RelationalColumnAttributeConvention$views;
|
|
2003
1800
|
|
|
2004
1801
|
|
|
2005
|
-
export
|
|
2006
|
-
|
|
2007
|
-
protected ProcessPropertyAdded4(propertyBuilder: IConventionPropertyBuilder, attribute: CommentAttribute, clrMember: MemberInfo, context: IConventionContext): void;
|
|
2008
|
-
protected abstract ProcessPropertyAdded2(propertyBuilder: IConventionPropertyBuilder, attribute: unknown, clrMember: MemberInfo, context: IConventionContext): void;
|
|
2009
|
-
protected ProcessPropertyAdded3(propertyBuilder: IConventionComplexPropertyBuilder, attribute: unknown, clrMember: MemberInfo, context: IConventionContext): void;
|
|
2010
|
-
}
|
|
2011
|
-
|
|
2012
|
-
|
|
2013
|
-
export interface RelationalColumnCommentAttributeConvention$instance extends RelationalColumnCommentAttributeConvention$protected, PropertyAttributeConventionBase_1$instance<CommentAttribute>, IConvention {
|
|
1802
|
+
export interface RelationalColumnCommentAttributeConvention$instance extends PropertyAttributeConventionBase_1$instance<CommentAttribute>, IConvention {
|
|
1803
|
+
readonly RelationalDependencies: RelationalConventionSetBuilderDependencies;
|
|
2014
1804
|
ProcessPropertyAdded(propertyBuilder: IConventionPropertyBuilder, context: IConventionContext_1<IConventionPropertyBuilder>): void;
|
|
1805
|
+
ProcessPropertyAdded(propertyBuilder: IConventionComplexPropertyBuilder, attribute: CommentAttribute, clrMember: MemberInfo, context: IConventionContext): void;
|
|
2015
1806
|
ProcessPropertyFieldChanged(propertyBuilder: IConventionPropertyBuilder, newFieldInfo: FieldInfo, oldFieldInfo: FieldInfo, context: IConventionContext_1<FieldInfo>): void;
|
|
2016
1807
|
}
|
|
2017
1808
|
|
|
@@ -2029,14 +1820,10 @@ export interface __RelationalColumnCommentAttributeConvention$views {
|
|
|
2029
1820
|
export type RelationalColumnCommentAttributeConvention = RelationalColumnCommentAttributeConvention$instance & __RelationalColumnCommentAttributeConvention$views;
|
|
2030
1821
|
|
|
2031
1822
|
|
|
2032
|
-
export
|
|
2033
|
-
|
|
2034
|
-
|
|
2035
|
-
|
|
2036
|
-
}
|
|
2037
|
-
|
|
2038
|
-
|
|
2039
|
-
export interface RelationalDbFunctionAttributeConvention$instance extends RelationalDbFunctionAttributeConvention$protected, IConvention {
|
|
1823
|
+
export interface RelationalDbFunctionAttributeConvention$instance extends IConvention {
|
|
1824
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
1825
|
+
readonly RelationalDependencies: RelationalConventionSetBuilderDependencies;
|
|
1826
|
+
ProcessDbFunctionAdded(dbFunctionBuilder: IConventionDbFunctionBuilder, context: IConventionContext): void;
|
|
2040
1827
|
ProcessModelFinalizing(modelBuilder: IConventionModelBuilder, context: IConventionContext_1<IConventionModelBuilder>): void;
|
|
2041
1828
|
ProcessModelInitialized(modelBuilder: IConventionModelBuilder, context: IConventionContext_1<IConventionModelBuilder>): void;
|
|
2042
1829
|
}
|
|
@@ -2057,16 +1844,10 @@ export interface RelationalDbFunctionAttributeConvention$instance extends IModel
|
|
|
2057
1844
|
export type RelationalDbFunctionAttributeConvention = RelationalDbFunctionAttributeConvention$instance & __RelationalDbFunctionAttributeConvention$views;
|
|
2058
1845
|
|
|
2059
1846
|
|
|
2060
|
-
export
|
|
2061
|
-
|
|
2062
|
-
|
|
2063
|
-
|
|
2064
|
-
protected ProcessKeyProperties2(keyProperties: IList<IConventionProperty>, entityType: IConventionEntityType): void;
|
|
2065
|
-
protected ProcessKeyProperties(keyProperties: IList<IConventionProperty>, entityType: IConventionEntityType): void;
|
|
2066
|
-
}
|
|
2067
|
-
|
|
2068
|
-
|
|
2069
|
-
export interface RelationalKeyDiscoveryConvention$instance extends RelationalKeyDiscoveryConvention$protected, KeyDiscoveryConvention$instance, IConvention {
|
|
1847
|
+
export interface RelationalKeyDiscoveryConvention$instance extends KeyDiscoveryConvention$instance, IConvention {
|
|
1848
|
+
readonly RelationalDependencies: RelationalConventionSetBuilderDependencies;
|
|
1849
|
+
DiscoverKeyProperties(entityType: IConventionEntityType): List<IConventionProperty> | undefined;
|
|
1850
|
+
DiscoverKeyProperties(entityType: IConventionEntityType): List<IConventionProperty> | undefined;
|
|
2070
1851
|
ProcessEntityTypeAdded(entityTypeBuilder: IConventionEntityTypeBuilder, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
2071
1852
|
ProcessEntityTypeAnnotationChanged(entityTypeBuilder: IConventionEntityTypeBuilder, name: string, annotation: IConventionAnnotation, oldAnnotation: IConventionAnnotation, context: IConventionContext_1<IConventionAnnotation>): void;
|
|
2072
1853
|
ProcessEntityTypeBaseTypeChanged(entityTypeBuilder: IConventionEntityTypeBuilder, newBaseType: IConventionEntityType, oldBaseType: IConventionEntityType, context: IConventionContext_1<IConventionEntityType>): void;
|
|
@@ -2076,6 +1857,8 @@ export interface RelationalKeyDiscoveryConvention$instance extends RelationalKey
|
|
|
2076
1857
|
ProcessForeignKeyPropertiesChanged(relationshipBuilder: IConventionForeignKeyBuilder, oldDependentProperties: IReadOnlyList<IConventionProperty>, oldPrincipalKey: IConventionKey, context: IConventionContext_1<IReadOnlyList<IConventionProperty>>): void;
|
|
2077
1858
|
ProcessForeignKeyRemoved(entityTypeBuilder: IConventionEntityTypeBuilder, foreignKey: IConventionForeignKey, context: IConventionContext_1<IConventionForeignKey>): void;
|
|
2078
1859
|
ProcessForeignKeyUniquenessChanged(relationshipBuilder: IConventionForeignKeyBuilder, context: IConventionContext_1<Nullable<System_Internal.Boolean>>): void;
|
|
1860
|
+
ProcessKeyProperties(keyProperties: IList<IConventionProperty>, entityType: IConventionEntityType): void;
|
|
1861
|
+
ProcessKeyProperties(keyProperties: IList<IConventionProperty>, entityType: IConventionEntityType): void;
|
|
2079
1862
|
ProcessKeyRemoved(entityTypeBuilder: IConventionEntityTypeBuilder, key: IConventionKey, context: IConventionContext_1<IConventionKey>): void;
|
|
2080
1863
|
ProcessPropertyAdded(propertyBuilder: IConventionPropertyBuilder, context: IConventionContext_1<IConventionPropertyBuilder>): void;
|
|
2081
1864
|
ProcessPropertyAdded(propertyBuilder: IConventionPropertyBuilder, context: IConventionContext_1<IConventionPropertyBuilder>): void;
|
|
@@ -2109,13 +1892,9 @@ export interface RelationalKeyDiscoveryConvention$instance extends IEntityTypeAn
|
|
|
2109
1892
|
export type RelationalKeyDiscoveryConvention = RelationalKeyDiscoveryConvention$instance & __RelationalKeyDiscoveryConvention$views;
|
|
2110
1893
|
|
|
2111
1894
|
|
|
2112
|
-
export
|
|
2113
|
-
|
|
2114
|
-
|
|
2115
|
-
}
|
|
2116
|
-
|
|
2117
|
-
|
|
2118
|
-
export interface RelationalMapToJsonConvention$instance extends RelationalMapToJsonConvention$protected, IConvention {
|
|
1895
|
+
export interface RelationalMapToJsonConvention$instance extends IConvention {
|
|
1896
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
1897
|
+
readonly RelationalDependencies: RelationalConventionSetBuilderDependencies;
|
|
2119
1898
|
ProcessEntityTypeAnnotationChanged(entityTypeBuilder: IConventionEntityTypeBuilder, name: string, annotation: IConventionAnnotation, oldAnnotation: IConventionAnnotation, context: IConventionContext_1<IConventionAnnotation>): void;
|
|
2120
1899
|
ProcessModelFinalizing(modelBuilder: IConventionModelBuilder, context: IConventionContext_1<IConventionModelBuilder>): void;
|
|
2121
1900
|
}
|
|
@@ -2136,14 +1915,10 @@ export interface RelationalMapToJsonConvention$instance extends IEntityTypeAnnot
|
|
|
2136
1915
|
export type RelationalMapToJsonConvention = RelationalMapToJsonConvention$instance & __RelationalMapToJsonConvention$views;
|
|
2137
1916
|
|
|
2138
1917
|
|
|
2139
|
-
export
|
|
2140
|
-
|
|
2141
|
-
protected readonly RelationalDependencies: RelationalConventionSetBuilderDependencies;
|
|
2142
|
-
}
|
|
2143
|
-
|
|
2144
|
-
|
|
2145
|
-
export interface RelationalMaxIdentifierLengthConvention$instance extends RelationalMaxIdentifierLengthConvention$protected, IConvention {
|
|
1918
|
+
export interface RelationalMaxIdentifierLengthConvention$instance extends IConvention {
|
|
1919
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
2146
1920
|
readonly MaxIdentifierLength: int;
|
|
1921
|
+
readonly RelationalDependencies: RelationalConventionSetBuilderDependencies;
|
|
2147
1922
|
ProcessModelInitialized(modelBuilder: IConventionModelBuilder, context: IConventionContext_1<IConventionModelBuilder>): void;
|
|
2148
1923
|
}
|
|
2149
1924
|
|
|
@@ -2162,12 +1937,8 @@ export interface RelationalMaxIdentifierLengthConvention$instance extends IModel
|
|
|
2162
1937
|
export type RelationalMaxIdentifierLengthConvention = RelationalMaxIdentifierLengthConvention$instance & __RelationalMaxIdentifierLengthConvention$views;
|
|
2163
1938
|
|
|
2164
1939
|
|
|
2165
|
-
export
|
|
2166
|
-
|
|
2167
|
-
}
|
|
2168
|
-
|
|
2169
|
-
|
|
2170
|
-
export interface RelationalNavigationJsonPropertyNameAttributeConvention$instance extends RelationalNavigationJsonPropertyNameAttributeConvention$protected, NavigationAttributeConventionBase_1<JsonPropertyNameAttribute>, IConvention {
|
|
1940
|
+
export interface RelationalNavigationJsonPropertyNameAttributeConvention$instance extends NavigationAttributeConventionBase_1<JsonPropertyNameAttribute>, IConvention {
|
|
1941
|
+
readonly RelationalDependencies: RelationalConventionSetBuilderDependencies;
|
|
2171
1942
|
ProcessNavigationAdded(navigationBuilder: IConventionNavigationBuilder, context: IConventionContext_1<IConventionNavigationBuilder>): void;
|
|
2172
1943
|
ProcessNavigationAdded(navigationBuilder: IConventionNavigationBuilder, attribute: JsonPropertyNameAttribute, context: IConventionContext_1<IConventionNavigationBuilder>): void;
|
|
2173
1944
|
}
|
|
@@ -2185,16 +1956,10 @@ export interface __RelationalNavigationJsonPropertyNameAttributeConvention$views
|
|
|
2185
1956
|
export type RelationalNavigationJsonPropertyNameAttributeConvention = RelationalNavigationJsonPropertyNameAttributeConvention$instance & __RelationalNavigationJsonPropertyNameAttributeConvention$views;
|
|
2186
1957
|
|
|
2187
1958
|
|
|
2188
|
-
export
|
|
2189
|
-
|
|
2190
|
-
protected ProcessPropertyAdded4(propertyBuilder: IConventionPropertyBuilder, attribute: JsonPropertyNameAttribute, clrMember: MemberInfo, context: IConventionContext): void;
|
|
2191
|
-
protected abstract ProcessPropertyAdded2(propertyBuilder: IConventionPropertyBuilder, attribute: unknown, clrMember: MemberInfo, context: IConventionContext): void;
|
|
2192
|
-
protected ProcessPropertyAdded3(propertyBuilder: IConventionComplexPropertyBuilder, attribute: unknown, clrMember: MemberInfo, context: IConventionContext): void;
|
|
2193
|
-
}
|
|
2194
|
-
|
|
2195
|
-
|
|
2196
|
-
export interface RelationalPropertyJsonPropertyNameAttributeConvention$instance extends RelationalPropertyJsonPropertyNameAttributeConvention$protected, PropertyAttributeConventionBase_1$instance<JsonPropertyNameAttribute>, IConvention {
|
|
1959
|
+
export interface RelationalPropertyJsonPropertyNameAttributeConvention$instance extends PropertyAttributeConventionBase_1$instance<JsonPropertyNameAttribute>, IConvention {
|
|
1960
|
+
readonly RelationalDependencies: RelationalConventionSetBuilderDependencies;
|
|
2197
1961
|
ProcessPropertyAdded(propertyBuilder: IConventionPropertyBuilder, context: IConventionContext_1<IConventionPropertyBuilder>): void;
|
|
1962
|
+
ProcessPropertyAdded(propertyBuilder: IConventionComplexPropertyBuilder, attribute: JsonPropertyNameAttribute, clrMember: MemberInfo, context: IConventionContext): void;
|
|
2198
1963
|
ProcessPropertyFieldChanged(propertyBuilder: IConventionPropertyBuilder, newFieldInfo: FieldInfo, oldFieldInfo: FieldInfo, context: IConventionContext_1<FieldInfo>): void;
|
|
2199
1964
|
}
|
|
2200
1965
|
|
|
@@ -2212,12 +1977,8 @@ export interface __RelationalPropertyJsonPropertyNameAttributeConvention$views {
|
|
|
2212
1977
|
export type RelationalPropertyJsonPropertyNameAttributeConvention = RelationalPropertyJsonPropertyNameAttributeConvention$instance & __RelationalPropertyJsonPropertyNameAttributeConvention$views;
|
|
2213
1978
|
|
|
2214
1979
|
|
|
2215
|
-
export
|
|
2216
|
-
|
|
2217
|
-
}
|
|
2218
|
-
|
|
2219
|
-
|
|
2220
|
-
export interface RelationalQueryFilterRewritingConvention$instance extends RelationalQueryFilterRewritingConvention$protected, QueryFilterRewritingConvention$instance, IConvention {
|
|
1980
|
+
export interface RelationalQueryFilterRewritingConvention$instance extends QueryFilterRewritingConvention$instance, IConvention {
|
|
1981
|
+
readonly RelationalDependencies: RelationalConventionSetBuilderDependencies;
|
|
2221
1982
|
ProcessModelFinalizing(modelBuilder: IConventionModelBuilder, context: IConventionContext_1<IConventionModelBuilder>): void;
|
|
2222
1983
|
}
|
|
2223
1984
|
|
|
@@ -2234,35 +1995,31 @@ export interface __RelationalQueryFilterRewritingConvention$views {
|
|
|
2234
1995
|
export type RelationalQueryFilterRewritingConvention = RelationalQueryFilterRewritingConvention$instance & __RelationalQueryFilterRewritingConvention$views;
|
|
2235
1996
|
|
|
2236
1997
|
|
|
2237
|
-
export
|
|
2238
|
-
|
|
2239
|
-
|
|
2240
|
-
|
|
2241
|
-
|
|
2242
|
-
|
|
2243
|
-
|
|
2244
|
-
|
|
2245
|
-
|
|
2246
|
-
|
|
2247
|
-
|
|
2248
|
-
|
|
2249
|
-
|
|
2250
|
-
|
|
2251
|
-
|
|
2252
|
-
|
|
2253
|
-
|
|
2254
|
-
protected ProcessPropertyAnnotations2(annotations: Dictionary<System_Internal.String, unknown>, property: IProperty, runtimeProperty: RuntimeProperty, runtime: boolean): void;
|
|
2255
|
-
protected ProcessPropertyAnnotations(annotations: Dictionary<System_Internal.String, unknown>, property: IProperty, runtimeProperty: RuntimeProperty, runtime: boolean): void;
|
|
2256
|
-
protected ProcessPropertyOverridesAnnotations(annotations: Dictionary<System_Internal.String, unknown>, propertyOverrides: IRelationalPropertyOverrides, runtimePropertyOverrides: RuntimeRelationalPropertyOverrides, runtime: boolean): void;
|
|
2257
|
-
protected ProcessSequenceAnnotations(annotations: Dictionary<System_Internal.String, unknown>, sequence: ISequence, runtimeSequence: RuntimeSequence, runtime: boolean): void;
|
|
2258
|
-
protected ProcessStoredProcedureAnnotations(annotations: Dictionary<System_Internal.String, unknown>, storedProcedure: IStoredProcedure, runtimeStoredProcedure: RuntimeStoredProcedure, runtime: boolean): void;
|
|
2259
|
-
protected ProcessStoredProcedureParameterAnnotations(annotations: Dictionary<System_Internal.String, unknown>, parameter: IStoredProcedureParameter, runtimeParameter: RuntimeStoredProcedureParameter, runtime: boolean): void;
|
|
2260
|
-
protected ProcessStoredProcedureResultColumnAnnotations(annotations: Dictionary<System_Internal.String, unknown>, resultColumn: IStoredProcedureResultColumn, runtimeResultColumn: RuntimeStoredProcedureResultColumn, runtime: boolean): void;
|
|
2261
|
-
}
|
|
2262
|
-
|
|
2263
|
-
|
|
2264
|
-
export interface RelationalRuntimeModelConvention$instance extends RelationalRuntimeModelConvention$protected, RuntimeModelConvention$instance, IConvention {
|
|
1998
|
+
export interface RelationalRuntimeModelConvention$instance extends RuntimeModelConvention$instance, IConvention {
|
|
1999
|
+
readonly RelationalDependencies: RelationalConventionSetBuilderDependencies;
|
|
2000
|
+
ProcessComplexTypeAnnotations(annotations: Dictionary<System_Internal.String, unknown>, complexType: IComplexType, runtimeComplexType: RuntimeComplexType, runtime: boolean): void;
|
|
2001
|
+
ProcessComplexTypeAnnotations(annotations: Dictionary<System_Internal.String, unknown>, complexType: IComplexType, runtimeComplexType: RuntimeComplexType, runtime: boolean): void;
|
|
2002
|
+
ProcessEntityTypeAnnotations(annotations: Dictionary<System_Internal.String, unknown>, entityType: IEntityType, runtimeEntityType: RuntimeEntityType, runtime: boolean): void;
|
|
2003
|
+
ProcessEntityTypeAnnotations(annotations: Dictionary<System_Internal.String, unknown>, entityType: IEntityType, runtimeEntityType: RuntimeEntityType, runtime: boolean): void;
|
|
2004
|
+
ProcessEntityTypeMappingFragmentAnnotations(annotations: Dictionary<System_Internal.String, unknown>, entityTypeMappingFragment: IEntityTypeMappingFragment, runtimeEntityTypeMappingFragment: RuntimeEntityTypeMappingFragment, runtime: boolean): void;
|
|
2005
|
+
ProcessForeignKeyAnnotations(annotations: Dictionary<System_Internal.String, unknown>, foreignKey: IForeignKey, runtimeForeignKey: RuntimeForeignKey, runtime: boolean): void;
|
|
2006
|
+
ProcessForeignKeyAnnotations(annotations: Dictionary<System_Internal.String, unknown>, foreignKey: IForeignKey, runtimeForeignKey: RuntimeForeignKey, runtime: boolean): void;
|
|
2007
|
+
ProcessFunctionAnnotations(annotations: Dictionary<System_Internal.String, unknown>, function_: IDbFunction, runtimeFunction: RuntimeDbFunction, runtime: boolean): void;
|
|
2008
|
+
ProcessFunctionParameterAnnotations(annotations: Dictionary<System_Internal.String, unknown>, parameter: IDbFunctionParameter, runtimeParameter: RuntimeDbFunctionParameter, runtime: boolean): void;
|
|
2009
|
+
ProcessIndexAnnotations(annotations: Dictionary<System_Internal.String, unknown>, index: IIndex, runtimeIndex: RuntimeIndex, runtime: boolean): void;
|
|
2010
|
+
ProcessIndexAnnotations(annotations: Dictionary<System_Internal.String, unknown>, index: IIndex, runtimeIndex: RuntimeIndex, runtime: boolean): void;
|
|
2011
|
+
ProcessKeyAnnotations(annotations: Dictionary<System_Internal.String, unknown>, key: IKey, runtimeKey: RuntimeKey, runtime: boolean): void;
|
|
2012
|
+
ProcessKeyAnnotations(annotations: Dictionary<System_Internal.String, unknown>, key: IKey, runtimeKey: RuntimeKey, runtime: boolean): void;
|
|
2013
|
+
ProcessModelAnnotations(annotations: Dictionary<System_Internal.String, unknown>, model: IModel, runtimeModel: RuntimeModel, runtime: boolean): void;
|
|
2014
|
+
ProcessModelAnnotations(annotations: Dictionary<System_Internal.String, unknown>, model: IModel, runtimeModel: RuntimeModel, runtime: boolean): void;
|
|
2265
2015
|
ProcessModelFinalized(model: IModel): IModel;
|
|
2016
|
+
ProcessPropertyAnnotations(annotations: Dictionary<System_Internal.String, unknown>, property: IProperty, runtimeProperty: RuntimeProperty, runtime: boolean): void;
|
|
2017
|
+
ProcessPropertyAnnotations(annotations: Dictionary<System_Internal.String, unknown>, property: IProperty, runtimeProperty: RuntimeProperty, runtime: boolean): void;
|
|
2018
|
+
ProcessPropertyOverridesAnnotations(annotations: Dictionary<System_Internal.String, unknown>, propertyOverrides: IRelationalPropertyOverrides, runtimePropertyOverrides: RuntimeRelationalPropertyOverrides, runtime: boolean): void;
|
|
2019
|
+
ProcessSequenceAnnotations(annotations: Dictionary<System_Internal.String, unknown>, sequence: ISequence, runtimeSequence: RuntimeSequence, runtime: boolean): void;
|
|
2020
|
+
ProcessStoredProcedureAnnotations(annotations: Dictionary<System_Internal.String, unknown>, storedProcedure: IStoredProcedure, runtimeStoredProcedure: RuntimeStoredProcedure, runtime: boolean): void;
|
|
2021
|
+
ProcessStoredProcedureParameterAnnotations(annotations: Dictionary<System_Internal.String, unknown>, parameter: IStoredProcedureParameter, runtimeParameter: RuntimeStoredProcedureParameter, runtime: boolean): void;
|
|
2022
|
+
ProcessStoredProcedureResultColumnAnnotations(annotations: Dictionary<System_Internal.String, unknown>, resultColumn: IStoredProcedureResultColumn, runtimeResultColumn: RuntimeStoredProcedureResultColumn, runtime: boolean): void;
|
|
2266
2023
|
}
|
|
2267
2024
|
|
|
2268
2025
|
|
|
@@ -2278,14 +2035,8 @@ export interface __RelationalRuntimeModelConvention$views {
|
|
|
2278
2035
|
export type RelationalRuntimeModelConvention = RelationalRuntimeModelConvention$instance & __RelationalRuntimeModelConvention$views;
|
|
2279
2036
|
|
|
2280
2037
|
|
|
2281
|
-
export
|
|
2282
|
-
|
|
2283
|
-
protected ProcessEntityTypeAdded3(entityTypeBuilder: IConventionEntityTypeBuilder, attribute: TableAttribute, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
2284
|
-
protected abstract ProcessEntityTypeAdded2(entityTypeBuilder: IConventionEntityTypeBuilder, attribute: unknown, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
2285
|
-
}
|
|
2286
|
-
|
|
2287
|
-
|
|
2288
|
-
export interface RelationalTableAttributeConvention$instance extends RelationalTableAttributeConvention$protected, TypeAttributeConventionBase_1$instance<TableAttribute>, IConvention {
|
|
2038
|
+
export interface RelationalTableAttributeConvention$instance extends TypeAttributeConventionBase_1$instance<TableAttribute>, IConvention {
|
|
2039
|
+
readonly RelationalDependencies: RelationalConventionSetBuilderDependencies;
|
|
2289
2040
|
ProcessEntityTypeAdded(entityTypeBuilder: IConventionEntityTypeBuilder, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
2290
2041
|
}
|
|
2291
2042
|
|
|
@@ -2302,14 +2053,8 @@ export interface __RelationalTableAttributeConvention$views {
|
|
|
2302
2053
|
export type RelationalTableAttributeConvention = RelationalTableAttributeConvention$instance & __RelationalTableAttributeConvention$views;
|
|
2303
2054
|
|
|
2304
2055
|
|
|
2305
|
-
export
|
|
2306
|
-
|
|
2307
|
-
protected ProcessEntityTypeAdded3(entityTypeBuilder: IConventionEntityTypeBuilder, attribute: CommentAttribute, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
2308
|
-
protected abstract ProcessEntityTypeAdded2(entityTypeBuilder: IConventionEntityTypeBuilder, attribute: unknown, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
2309
|
-
}
|
|
2310
|
-
|
|
2311
|
-
|
|
2312
|
-
export interface RelationalTableCommentAttributeConvention$instance extends RelationalTableCommentAttributeConvention$protected, TypeAttributeConventionBase_1$instance<CommentAttribute>, IConvention {
|
|
2056
|
+
export interface RelationalTableCommentAttributeConvention$instance extends TypeAttributeConventionBase_1$instance<CommentAttribute>, IConvention {
|
|
2057
|
+
readonly RelationalDependencies: RelationalConventionSetBuilderDependencies;
|
|
2313
2058
|
ProcessEntityTypeAdded(entityTypeBuilder: IConventionEntityTypeBuilder, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
2314
2059
|
}
|
|
2315
2060
|
|
|
@@ -2326,15 +2071,11 @@ export interface __RelationalTableCommentAttributeConvention$views {
|
|
|
2326
2071
|
export type RelationalTableCommentAttributeConvention = RelationalTableCommentAttributeConvention$instance & __RelationalTableCommentAttributeConvention$views;
|
|
2327
2072
|
|
|
2328
2073
|
|
|
2329
|
-
export
|
|
2330
|
-
|
|
2331
|
-
|
|
2332
|
-
|
|
2333
|
-
|
|
2334
|
-
}
|
|
2335
|
-
|
|
2336
|
-
|
|
2337
|
-
export interface RelationalValueGenerationConvention$instance extends RelationalValueGenerationConvention$protected, ValueGenerationConvention$instance, IConvention {
|
|
2074
|
+
export interface RelationalValueGenerationConvention$instance extends ValueGenerationConvention$instance, IConvention {
|
|
2075
|
+
readonly RelationalDependencies: RelationalConventionSetBuilderDependencies;
|
|
2076
|
+
GetValueGenerated(property: IConventionProperty): Nullable<ValueGenerated>;
|
|
2077
|
+
GetValueGenerated(property: IConventionProperty): Nullable<ValueGenerated>;
|
|
2078
|
+
MappingStrategyAllowsValueGeneration(property: IConventionProperty, mappingStrategy: string): boolean;
|
|
2338
2079
|
ProcessEntityTypeAnnotationChanged(entityTypeBuilder: IConventionEntityTypeBuilder, name: string, annotation: IConventionAnnotation, oldAnnotation: IConventionAnnotation, context: IConventionContext_1<IConventionAnnotation>): void;
|
|
2339
2080
|
ProcessEntityTypeBaseTypeChanged(entityTypeBuilder: IConventionEntityTypeBuilder, newBaseType: IConventionEntityType, oldBaseType: IConventionEntityType, context: IConventionContext_1<IConventionEntityType>): void;
|
|
2340
2081
|
ProcessEntityTypePrimaryKeyChanged(entityTypeBuilder: IConventionEntityTypeBuilder, newPrimaryKey: IConventionKey, previousPrimaryKey: IConventionKey, context: IConventionContext_1<IConventionKey>): void;
|
|
@@ -2367,16 +2108,10 @@ export interface RelationalValueGenerationConvention$instance extends IEntityTyp
|
|
|
2367
2108
|
export type RelationalValueGenerationConvention = RelationalValueGenerationConvention$instance & __RelationalValueGenerationConvention$views;
|
|
2368
2109
|
|
|
2369
2110
|
|
|
2370
|
-
export
|
|
2371
|
-
|
|
2372
|
-
|
|
2373
|
-
|
|
2374
|
-
protected ShouldBeOwned(targetType: Type, model: IConventionModel): Nullable<System_Internal.Boolean>;
|
|
2375
|
-
protected TryGetTargetEntityTypeBuilder(entityTypeBuilder: IConventionEntityTypeBuilder, targetClrType: Type, navigationMemberInfo: MemberInfo, shouldBeOwned?: Nullable<System_Internal.Boolean>, shouldCreate?: boolean): IConventionEntityTypeBuilder | undefined;
|
|
2376
|
-
}
|
|
2377
|
-
|
|
2378
|
-
|
|
2379
|
-
export interface RelationshipDiscoveryConvention$instance extends RelationshipDiscoveryConvention$protected, IConvention {
|
|
2111
|
+
export interface RelationshipDiscoveryConvention$instance extends IConvention {
|
|
2112
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
2113
|
+
readonly UseAttributes: boolean;
|
|
2114
|
+
DiscoverRelationships(entityTypeBuilder: IConventionEntityTypeBuilder, context: IConventionContext, discoverUnmatchedInverses?: boolean): void;
|
|
2380
2115
|
ProcessEntityTypeAdded(entityTypeBuilder: IConventionEntityTypeBuilder, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
2381
2116
|
ProcessEntityTypeBaseTypeChanged(entityTypeBuilder: IConventionEntityTypeBuilder, newBaseType: IConventionEntityType, oldBaseType: IConventionEntityType, context: IConventionContext_1<IConventionEntityType>): void;
|
|
2382
2117
|
ProcessEntityTypeMemberIgnored(entityTypeBuilder: IConventionEntityTypeBuilder, name: string, context: IConventionContext_1<System_Internal.String>): void;
|
|
@@ -2386,6 +2121,8 @@ export interface RelationshipDiscoveryConvention$instance extends RelationshipDi
|
|
|
2386
2121
|
ProcessNavigationAdded(navigationBuilder: IConventionNavigationBuilder, context: IConventionContext_1<IConventionNavigationBuilder>): void;
|
|
2387
2122
|
ProcessNavigationRemoved(sourceEntityTypeBuilder: IConventionEntityTypeBuilder, targetEntityTypeBuilder: IConventionEntityTypeBuilder, navigationName: string, memberInfo: MemberInfo, context: IConventionContext_1<System_Internal.String>): void;
|
|
2388
2123
|
ProcessTypeIgnored(modelBuilder: IConventionModelBuilder, name: string, type: Type, context: IConventionContext_1<System_Internal.String>): void;
|
|
2124
|
+
ShouldBeOwned(targetType: Type, model: IConventionModel): Nullable<System_Internal.Boolean>;
|
|
2125
|
+
TryGetTargetEntityTypeBuilder(entityTypeBuilder: IConventionEntityTypeBuilder, targetClrType: Type, navigationMemberInfo: MemberInfo, shouldBeOwned?: Nullable<System_Internal.Boolean>, shouldCreate?: boolean): IConventionEntityTypeBuilder | undefined;
|
|
2389
2126
|
}
|
|
2390
2127
|
|
|
2391
2128
|
|
|
@@ -2435,18 +2172,12 @@ export interface __RequiredNavigationAttributeConvention$views {
|
|
|
2435
2172
|
export type RequiredNavigationAttributeConvention = RequiredNavigationAttributeConvention$instance & __RequiredNavigationAttributeConvention$views;
|
|
2436
2173
|
|
|
2437
2174
|
|
|
2438
|
-
export
|
|
2439
|
-
protected ProcessPropertyAdded4(propertyBuilder: IConventionPropertyBuilder, attribute: RequiredAttribute, clrMember: MemberInfo, context: IConventionContext): void;
|
|
2440
|
-
protected ProcessPropertyAdded4(propertyBuilder: IConventionComplexPropertyBuilder, attribute: RequiredAttribute, clrMember: MemberInfo, context: IConventionContext): void;
|
|
2441
|
-
protected abstract ProcessPropertyAdded2(propertyBuilder: IConventionPropertyBuilder, attribute: unknown, clrMember: MemberInfo, context: IConventionContext): void;
|
|
2442
|
-
protected ProcessPropertyAdded3(propertyBuilder: IConventionComplexPropertyBuilder, attribute: unknown, clrMember: MemberInfo, context: IConventionContext): void;
|
|
2443
|
-
}
|
|
2444
|
-
|
|
2445
|
-
|
|
2446
|
-
export interface RequiredPropertyAttributeConvention$instance extends RequiredPropertyAttributeConvention$protected, PropertyAttributeConventionBase_1$instance<RequiredAttribute>, IConvention {
|
|
2175
|
+
export interface RequiredPropertyAttributeConvention$instance extends PropertyAttributeConventionBase_1$instance<RequiredAttribute>, IConvention {
|
|
2447
2176
|
ProcessComplexPropertyAdded(propertyBuilder: IConventionComplexPropertyBuilder, context: IConventionContext_1<IConventionComplexPropertyBuilder>): void;
|
|
2448
2177
|
ProcessComplexPropertyFieldChanged(propertyBuilder: IConventionComplexPropertyBuilder, newFieldInfo: FieldInfo, oldFieldInfo: FieldInfo, context: IConventionContext_1<FieldInfo>): void;
|
|
2178
|
+
ProcessPropertyAdded(propertyBuilder: IConventionPropertyBuilder, attribute: RequiredAttribute, clrMember: MemberInfo, context: IConventionContext): void;
|
|
2449
2179
|
ProcessPropertyAdded(propertyBuilder: IConventionPropertyBuilder, context: IConventionContext_1<IConventionPropertyBuilder>): void;
|
|
2180
|
+
ProcessPropertyAdded(propertyBuilder: IConventionComplexPropertyBuilder, attribute: RequiredAttribute, clrMember: MemberInfo, context: IConventionContext): void;
|
|
2450
2181
|
ProcessPropertyFieldChanged(propertyBuilder: IConventionPropertyBuilder, newFieldInfo: FieldInfo, oldFieldInfo: FieldInfo, context: IConventionContext_1<FieldInfo>): void;
|
|
2451
2182
|
}
|
|
2452
2183
|
|
|
@@ -2466,31 +2197,27 @@ export interface __RequiredPropertyAttributeConvention$views {
|
|
|
2466
2197
|
export type RequiredPropertyAttributeConvention = RequiredPropertyAttributeConvention$instance & __RequiredPropertyAttributeConvention$views;
|
|
2467
2198
|
|
|
2468
2199
|
|
|
2469
|
-
export
|
|
2470
|
-
|
|
2471
|
-
|
|
2472
|
-
|
|
2473
|
-
|
|
2474
|
-
|
|
2475
|
-
|
|
2476
|
-
|
|
2477
|
-
|
|
2478
|
-
|
|
2479
|
-
|
|
2480
|
-
|
|
2481
|
-
|
|
2482
|
-
|
|
2483
|
-
protected ProcessNavigationAnnotations(annotations: Dictionary<System_Internal.String, unknown>, navigation: INavigation, runtimeNavigation: RuntimeNavigation, runtime: boolean): void;
|
|
2484
|
-
protected ProcessPropertyAnnotations(annotations: Dictionary<System_Internal.String, unknown>, property: IProperty, runtimeProperty: RuntimeProperty, runtime: boolean): void;
|
|
2485
|
-
protected ProcessServicePropertyAnnotations(annotations: Dictionary<System_Internal.String, unknown>, property: IServiceProperty, runtimeProperty: RuntimeServiceProperty, runtime: boolean): void;
|
|
2486
|
-
protected ProcessSkipNavigationAnnotations(annotations: Dictionary<System_Internal.String, unknown>, skipNavigation: ISkipNavigation, runtimeSkipNavigation: RuntimeSkipNavigation, runtime: boolean): void;
|
|
2487
|
-
protected ProcessTriggerAnnotations(annotations: Dictionary<System_Internal.String, unknown>, trigger: ITrigger, runtimeTrigger: RuntimeTrigger, runtime: boolean): void;
|
|
2488
|
-
protected ProcessTypeMappingConfigurationAnnotations(annotations: Dictionary<System_Internal.String, unknown>, typeConfiguration: ITypeMappingConfiguration, runtimeTypeConfiguration: RuntimeTypeMappingConfiguration, runtime: boolean): void;
|
|
2489
|
-
}
|
|
2490
|
-
|
|
2491
|
-
|
|
2492
|
-
export interface RuntimeModelConvention$instance extends RuntimeModelConvention$protected, IConvention {
|
|
2200
|
+
export interface RuntimeModelConvention$instance extends IConvention {
|
|
2201
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
2202
|
+
Create(model: IModel): RuntimeModel;
|
|
2203
|
+
GetForeignKey(foreignKey: IForeignKey, entityType: RuntimeEntityType): RuntimeForeignKey;
|
|
2204
|
+
GetIndex(index: IIndex, entityType: RuntimeEntityType): RuntimeIndex;
|
|
2205
|
+
GetKey(key: IKey, entityType: RuntimeEntityType): RuntimeKey;
|
|
2206
|
+
ProcessComplexPropertyAnnotations(annotations: Dictionary<System_Internal.String, unknown>, property: IComplexProperty, runtimeProperty: RuntimeComplexProperty, runtime: boolean): void;
|
|
2207
|
+
ProcessComplexTypeAnnotations(annotations: Dictionary<System_Internal.String, unknown>, complexType: IComplexType, runtimeComplexType: RuntimeComplexType, runtime: boolean): void;
|
|
2208
|
+
ProcessElementTypeAnnotations(annotations: Dictionary<System_Internal.String, unknown>, element: IElementType, runtimeElement: RuntimeElementType, runtime: boolean): void;
|
|
2209
|
+
ProcessEntityTypeAnnotations(annotations: Dictionary<System_Internal.String, unknown>, entityType: IEntityType, runtimeEntityType: RuntimeEntityType, runtime: boolean): void;
|
|
2210
|
+
ProcessForeignKeyAnnotations(annotations: Dictionary<System_Internal.String, unknown>, foreignKey: IForeignKey, runtimeForeignKey: RuntimeForeignKey, runtime: boolean): void;
|
|
2211
|
+
ProcessIndexAnnotations(annotations: Dictionary<System_Internal.String, unknown>, index: IIndex, runtimeIndex: RuntimeIndex, runtime: boolean): void;
|
|
2212
|
+
ProcessKeyAnnotations(annotations: Dictionary<System_Internal.String, unknown>, key: IKey, runtimeKey: RuntimeKey, runtime: boolean): void;
|
|
2213
|
+
ProcessModelAnnotations(annotations: Dictionary<System_Internal.String, unknown>, model: IModel, runtimeModel: RuntimeModel, runtime: boolean): void;
|
|
2493
2214
|
ProcessModelFinalized(model: IModel): IModel;
|
|
2215
|
+
ProcessNavigationAnnotations(annotations: Dictionary<System_Internal.String, unknown>, navigation: INavigation, runtimeNavigation: RuntimeNavigation, runtime: boolean): void;
|
|
2216
|
+
ProcessPropertyAnnotations(annotations: Dictionary<System_Internal.String, unknown>, property: IProperty, runtimeProperty: RuntimeProperty, runtime: boolean): void;
|
|
2217
|
+
ProcessServicePropertyAnnotations(annotations: Dictionary<System_Internal.String, unknown>, property: IServiceProperty, runtimeProperty: RuntimeServiceProperty, runtime: boolean): void;
|
|
2218
|
+
ProcessSkipNavigationAnnotations(annotations: Dictionary<System_Internal.String, unknown>, skipNavigation: ISkipNavigation, runtimeSkipNavigation: RuntimeSkipNavigation, runtime: boolean): void;
|
|
2219
|
+
ProcessTriggerAnnotations(annotations: Dictionary<System_Internal.String, unknown>, trigger: ITrigger, runtimeTrigger: RuntimeTrigger, runtime: boolean): void;
|
|
2220
|
+
ProcessTypeMappingConfigurationAnnotations(annotations: Dictionary<System_Internal.String, unknown>, typeConfiguration: ITypeMappingConfiguration, runtimeTypeConfiguration: RuntimeTypeMappingConfiguration, runtime: boolean): void;
|
|
2494
2221
|
}
|
|
2495
2222
|
|
|
2496
2223
|
|
|
@@ -2508,13 +2235,9 @@ export interface RuntimeModelConvention$instance extends IModelFinalizedConventi
|
|
|
2508
2235
|
export type RuntimeModelConvention = RuntimeModelConvention$instance & __RuntimeModelConvention$views;
|
|
2509
2236
|
|
|
2510
2237
|
|
|
2511
|
-
export
|
|
2512
|
-
|
|
2513
|
-
|
|
2514
|
-
}
|
|
2515
|
-
|
|
2516
|
-
|
|
2517
|
-
export interface SequenceUniquificationConvention$instance extends SequenceUniquificationConvention$protected, IConvention {
|
|
2238
|
+
export interface SequenceUniquificationConvention$instance extends IConvention {
|
|
2239
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
2240
|
+
readonly RelationalDependencies: RelationalConventionSetBuilderDependencies;
|
|
2518
2241
|
ProcessModelFinalizing(modelBuilder: IConventionModelBuilder, context: IConventionContext_1<IConventionModelBuilder>): void;
|
|
2519
2242
|
}
|
|
2520
2243
|
|
|
@@ -2533,16 +2256,12 @@ export interface SequenceUniquificationConvention$instance extends IModelFinaliz
|
|
|
2533
2256
|
export type SequenceUniquificationConvention = SequenceUniquificationConvention$instance & __SequenceUniquificationConvention$views;
|
|
2534
2257
|
|
|
2535
2258
|
|
|
2536
|
-
export
|
|
2537
|
-
|
|
2538
|
-
|
|
2539
|
-
|
|
2540
|
-
|
|
2541
|
-
|
|
2542
|
-
}
|
|
2543
|
-
|
|
2544
|
-
|
|
2545
|
-
export interface ServicePropertyDiscoveryConvention$instance extends ServicePropertyDiscoveryConvention$protected, IConvention {
|
|
2259
|
+
export interface ServicePropertyDiscoveryConvention$instance extends IConvention {
|
|
2260
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
2261
|
+
readonly UseAttributes: boolean;
|
|
2262
|
+
DiscoverServiceProperties(structuralTypeBuilder: IConventionTypeBaseBuilder, context: IConventionContext): void;
|
|
2263
|
+
GetMembers(structuralType: IConventionTypeBase): IEnumerable<MemberInfo>;
|
|
2264
|
+
IsCandidateServiceProperty(memberInfo: MemberInfo, structuralType: IConventionTypeBase, factory: IParameterBindingFactory): boolean;
|
|
2546
2265
|
ProcessEntityTypeAdded(entityTypeBuilder: IConventionEntityTypeBuilder, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
2547
2266
|
ProcessEntityTypeBaseTypeChanged(entityTypeBuilder: IConventionEntityTypeBuilder, newBaseType: IConventionEntityType, oldBaseType: IConventionEntityType, context: IConventionContext_1<IConventionEntityType>): void;
|
|
2548
2267
|
}
|
|
@@ -2563,25 +2282,21 @@ export interface ServicePropertyDiscoveryConvention$instance extends IEntityType
|
|
|
2563
2282
|
export type ServicePropertyDiscoveryConvention = ServicePropertyDiscoveryConvention$instance & __ServicePropertyDiscoveryConvention$views;
|
|
2564
2283
|
|
|
2565
2284
|
|
|
2566
|
-
export
|
|
2567
|
-
|
|
2568
|
-
|
|
2569
|
-
|
|
2570
|
-
|
|
2571
|
-
|
|
2572
|
-
|
|
2573
|
-
|
|
2574
|
-
|
|
2575
|
-
|
|
2576
|
-
|
|
2577
|
-
|
|
2578
|
-
|
|
2579
|
-
|
|
2580
|
-
|
|
2581
|
-
}
|
|
2582
|
-
|
|
2583
|
-
|
|
2584
|
-
export interface SharedTableConvention$instance extends SharedTableConvention$protected, IConvention {
|
|
2285
|
+
export interface SharedTableConvention$instance extends IConvention {
|
|
2286
|
+
readonly CheckConstraintsUniqueAcrossTables: boolean;
|
|
2287
|
+
readonly DefaultConstraintsUniqueAcrossTables: boolean;
|
|
2288
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
2289
|
+
readonly ForeignKeysUniqueAcrossTables: boolean;
|
|
2290
|
+
readonly IndexesUniqueAcrossTables: boolean;
|
|
2291
|
+
readonly KeysUniqueAcrossTables: boolean;
|
|
2292
|
+
readonly RelationalDependencies: RelationalConventionSetBuilderDependencies;
|
|
2293
|
+
readonly TriggersUniqueAcrossTables: boolean;
|
|
2294
|
+
AreCompatible(key: IReadOnlyKey, duplicateKey: IReadOnlyKey, storeObject: StoreObjectIdentifier): boolean;
|
|
2295
|
+
AreCompatible(index: IReadOnlyIndex, duplicateIndex: IReadOnlyIndex, storeObject: StoreObjectIdentifier): boolean;
|
|
2296
|
+
AreCompatible(foreignKey: IReadOnlyForeignKey, duplicateForeignKey: IReadOnlyForeignKey, storeObject: StoreObjectIdentifier): boolean;
|
|
2297
|
+
AreCompatible(checkConstraint: IReadOnlyCheckConstraint, duplicateCheckConstraint: IReadOnlyCheckConstraint, storeObject: StoreObjectIdentifier): boolean;
|
|
2298
|
+
AreCompatible(trigger: IReadOnlyTrigger, duplicateTrigger: IReadOnlyTrigger, storeObject: StoreObjectIdentifier): boolean;
|
|
2299
|
+
AreCompatibleDefaultConstraints(property: IReadOnlyProperty, duplicateProperty: IReadOnlyProperty, storeObject: StoreObjectIdentifier): boolean;
|
|
2585
2300
|
ProcessModelFinalizing(modelBuilder: IConventionModelBuilder, context: IConventionContext_1<IConventionModelBuilder>): void;
|
|
2586
2301
|
}
|
|
2587
2302
|
|
|
@@ -2600,13 +2315,9 @@ export interface SharedTableConvention$instance extends IModelFinalizingConventi
|
|
|
2600
2315
|
export type SharedTableConvention = SharedTableConvention$instance & __SharedTableConvention$views;
|
|
2601
2316
|
|
|
2602
2317
|
|
|
2603
|
-
export
|
|
2604
|
-
|
|
2605
|
-
|
|
2606
|
-
}
|
|
2607
|
-
|
|
2608
|
-
|
|
2609
|
-
export interface StoredProcedureConvention$instance extends StoredProcedureConvention$protected, IConvention {
|
|
2318
|
+
export interface StoredProcedureConvention$instance extends IConvention {
|
|
2319
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
2320
|
+
readonly RelationalDependencies: RelationalConventionSetBuilderDependencies;
|
|
2610
2321
|
ProcessEntityTypeAdded(entityTypeBuilder: IConventionEntityTypeBuilder, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
2611
2322
|
}
|
|
2612
2323
|
|
|
@@ -2625,16 +2336,12 @@ export interface StoredProcedureConvention$instance extends IEntityTypeAddedConv
|
|
|
2625
2336
|
export type StoredProcedureConvention = StoredProcedureConvention$instance & __StoredProcedureConvention$views;
|
|
2626
2337
|
|
|
2627
2338
|
|
|
2628
|
-
export
|
|
2629
|
-
|
|
2630
|
-
|
|
2631
|
-
protected Validate(property: IConventionProperty, storeObject: StoreObjectIdentifier): void;
|
|
2632
|
-
}
|
|
2633
|
-
|
|
2634
|
-
|
|
2635
|
-
export interface StoreGenerationConvention$instance extends StoreGenerationConvention$protected, IConvention {
|
|
2339
|
+
export interface StoreGenerationConvention$instance extends IConvention {
|
|
2340
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
2341
|
+
readonly RelationalDependencies: RelationalConventionSetBuilderDependencies;
|
|
2636
2342
|
ProcessModelFinalizing(modelBuilder: IConventionModelBuilder, context: IConventionContext_1<IConventionModelBuilder>): void;
|
|
2637
2343
|
ProcessPropertyAnnotationChanged(propertyBuilder: IConventionPropertyBuilder, name: string, annotation: IConventionAnnotation, oldAnnotation: IConventionAnnotation, context: IConventionContext_1<IConventionAnnotation>): void;
|
|
2344
|
+
Validate(property: IConventionProperty, storeObject: StoreObjectIdentifier): void;
|
|
2638
2345
|
}
|
|
2639
2346
|
|
|
2640
2347
|
|
|
@@ -2653,15 +2360,9 @@ export interface StoreGenerationConvention$instance extends IModelFinalizingConv
|
|
|
2653
2360
|
export type StoreGenerationConvention = StoreGenerationConvention$instance & __StoreGenerationConvention$views;
|
|
2654
2361
|
|
|
2655
2362
|
|
|
2656
|
-
export
|
|
2657
|
-
protected ProcessPropertyAdded4(propertyBuilder: IConventionPropertyBuilder, attribute: StringLengthAttribute, clrMember: MemberInfo, context: IConventionContext): void;
|
|
2658
|
-
protected abstract ProcessPropertyAdded2(propertyBuilder: IConventionPropertyBuilder, attribute: unknown, clrMember: MemberInfo, context: IConventionContext): void;
|
|
2659
|
-
protected ProcessPropertyAdded3(propertyBuilder: IConventionComplexPropertyBuilder, attribute: unknown, clrMember: MemberInfo, context: IConventionContext): void;
|
|
2660
|
-
}
|
|
2661
|
-
|
|
2662
|
-
|
|
2663
|
-
export interface StringLengthAttributeConvention$instance extends StringLengthAttributeConvention$protected, PropertyAttributeConventionBase_1$instance<StringLengthAttribute>, IConvention {
|
|
2363
|
+
export interface StringLengthAttributeConvention$instance extends PropertyAttributeConventionBase_1$instance<StringLengthAttribute>, IConvention {
|
|
2664
2364
|
ProcessPropertyAdded(propertyBuilder: IConventionPropertyBuilder, context: IConventionContext_1<IConventionPropertyBuilder>): void;
|
|
2365
|
+
ProcessPropertyAdded(propertyBuilder: IConventionComplexPropertyBuilder, attribute: StringLengthAttribute, clrMember: MemberInfo, context: IConventionContext): void;
|
|
2665
2366
|
ProcessPropertyFieldChanged(propertyBuilder: IConventionPropertyBuilder, newFieldInfo: FieldInfo, oldFieldInfo: FieldInfo, context: IConventionContext_1<FieldInfo>): void;
|
|
2666
2367
|
}
|
|
2667
2368
|
|
|
@@ -2679,13 +2380,9 @@ export interface __StringLengthAttributeConvention$views {
|
|
|
2679
2380
|
export type StringLengthAttributeConvention = StringLengthAttributeConvention$instance & __StringLengthAttributeConvention$views;
|
|
2680
2381
|
|
|
2681
2382
|
|
|
2682
|
-
export
|
|
2683
|
-
|
|
2684
|
-
|
|
2685
|
-
}
|
|
2686
|
-
|
|
2687
|
-
|
|
2688
|
-
export interface TableNameFromDbSetConvention$instance extends TableNameFromDbSetConvention$protected, IConvention {
|
|
2383
|
+
export interface TableNameFromDbSetConvention$instance extends IConvention {
|
|
2384
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
2385
|
+
readonly RelationalDependencies: RelationalConventionSetBuilderDependencies;
|
|
2689
2386
|
ProcessEntityTypeAdded(entityTypeBuilder: IConventionEntityTypeBuilder, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
2690
2387
|
ProcessEntityTypeAnnotationChanged(entityTypeBuilder: IConventionEntityTypeBuilder, name: string, annotation: IConventionAnnotation, oldAnnotation: IConventionAnnotation, context: IConventionContext_1<IConventionAnnotation>): void;
|
|
2691
2388
|
ProcessEntityTypeBaseTypeChanged(entityTypeBuilder: IConventionEntityTypeBuilder, newBaseType: IConventionEntityType, oldBaseType: IConventionEntityType, context: IConventionContext_1<IConventionEntityType>): void;
|
|
@@ -2710,13 +2407,9 @@ export interface TableNameFromDbSetConvention$instance extends IEntityTypeAddedC
|
|
|
2710
2407
|
export type TableNameFromDbSetConvention = TableNameFromDbSetConvention$instance & __TableNameFromDbSetConvention$views;
|
|
2711
2408
|
|
|
2712
2409
|
|
|
2713
|
-
export
|
|
2714
|
-
|
|
2715
|
-
|
|
2716
|
-
}
|
|
2717
|
-
|
|
2718
|
-
|
|
2719
|
-
export interface TableSharingConcurrencyTokenConvention$instance extends TableSharingConcurrencyTokenConvention$protected, IConvention {
|
|
2410
|
+
export interface TableSharingConcurrencyTokenConvention$instance extends IConvention {
|
|
2411
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
2412
|
+
readonly RelationalDependencies: RelationalConventionSetBuilderDependencies;
|
|
2720
2413
|
ProcessModelFinalizing(modelBuilder: IConventionModelBuilder, context: IConventionContext_1<IConventionModelBuilder>): void;
|
|
2721
2414
|
}
|
|
2722
2415
|
|
|
@@ -2737,13 +2430,9 @@ export interface TableSharingConcurrencyTokenConvention$instance extends IModelF
|
|
|
2737
2430
|
export type TableSharingConcurrencyTokenConvention = TableSharingConcurrencyTokenConvention$instance & __TableSharingConcurrencyTokenConvention$views;
|
|
2738
2431
|
|
|
2739
2432
|
|
|
2740
|
-
export
|
|
2741
|
-
|
|
2742
|
-
|
|
2743
|
-
}
|
|
2744
|
-
|
|
2745
|
-
|
|
2746
|
-
export interface TableValuedDbFunctionConvention$instance extends TableValuedDbFunctionConvention$protected, IConvention {
|
|
2433
|
+
export interface TableValuedDbFunctionConvention$instance extends IConvention {
|
|
2434
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
2435
|
+
readonly RelationalDependencies: RelationalConventionSetBuilderDependencies;
|
|
2747
2436
|
ProcessModelFinalizing(modelBuilder: IConventionModelBuilder, context: IConventionContext_1<IConventionModelBuilder>): void;
|
|
2748
2437
|
}
|
|
2749
2438
|
|
|
@@ -2762,15 +2451,9 @@ export interface TableValuedDbFunctionConvention$instance extends IModelFinalizi
|
|
|
2762
2451
|
export type TableValuedDbFunctionConvention = TableValuedDbFunctionConvention$instance & __TableValuedDbFunctionConvention$views;
|
|
2763
2452
|
|
|
2764
2453
|
|
|
2765
|
-
export
|
|
2766
|
-
protected ProcessPropertyAdded4(propertyBuilder: IConventionPropertyBuilder, attribute: TimestampAttribute, clrMember: MemberInfo, context: IConventionContext): void;
|
|
2767
|
-
protected abstract ProcessPropertyAdded2(propertyBuilder: IConventionPropertyBuilder, attribute: unknown, clrMember: MemberInfo, context: IConventionContext): void;
|
|
2768
|
-
protected ProcessPropertyAdded3(propertyBuilder: IConventionComplexPropertyBuilder, attribute: unknown, clrMember: MemberInfo, context: IConventionContext): void;
|
|
2769
|
-
}
|
|
2770
|
-
|
|
2771
|
-
|
|
2772
|
-
export interface TimestampAttributeConvention$instance extends TimestampAttributeConvention$protected, PropertyAttributeConventionBase_1$instance<TimestampAttribute>, IConvention {
|
|
2454
|
+
export interface TimestampAttributeConvention$instance extends PropertyAttributeConventionBase_1$instance<TimestampAttribute>, IConvention {
|
|
2773
2455
|
ProcessPropertyAdded(propertyBuilder: IConventionPropertyBuilder, context: IConventionContext_1<IConventionPropertyBuilder>): void;
|
|
2456
|
+
ProcessPropertyAdded(propertyBuilder: IConventionComplexPropertyBuilder, attribute: TimestampAttribute, clrMember: MemberInfo, context: IConventionContext): void;
|
|
2774
2457
|
ProcessPropertyFieldChanged(propertyBuilder: IConventionPropertyBuilder, newFieldInfo: FieldInfo, oldFieldInfo: FieldInfo, context: IConventionContext_1<FieldInfo>): void;
|
|
2775
2458
|
}
|
|
2776
2459
|
|
|
@@ -2788,22 +2471,17 @@ export interface __TimestampAttributeConvention$views {
|
|
|
2788
2471
|
export type TimestampAttributeConvention = TimestampAttributeConvention$instance & __TimestampAttributeConvention$views;
|
|
2789
2472
|
|
|
2790
2473
|
|
|
2791
|
-
export
|
|
2792
|
-
|
|
2793
|
-
protected ProcessComplexTypeAdded(complexTypeBuilder: IConventionComplexTypeBuilder, attribute: TAttribute, context: IConventionContext): void;
|
|
2794
|
-
protected abstract ProcessEntityTypeAdded(entityTypeBuilder: IConventionEntityTypeBuilder, attribute: TAttribute, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
2795
|
-
protected ReplaceWithEntityType(complexTypeBuilder: IConventionComplexTypeBuilder, shouldBeOwned?: Nullable<System_Internal.Boolean>): IConventionEntityTypeBuilder | undefined;
|
|
2796
|
-
}
|
|
2797
|
-
|
|
2798
|
-
|
|
2799
|
-
export interface TypeAttributeConventionBase_1$instance<TAttribute extends Attribute> extends TypeAttributeConventionBase_1$protected<TAttribute>, IConvention {
|
|
2474
|
+
export interface TypeAttributeConventionBase_1$instance<TAttribute extends Attribute> extends IConvention {
|
|
2475
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
2800
2476
|
ProcessComplexPropertyAdded(propertyBuilder: IConventionComplexPropertyBuilder, context: IConventionContext_1<IConventionComplexPropertyBuilder>): void;
|
|
2477
|
+
ProcessComplexTypeAdded(complexTypeBuilder: IConventionComplexTypeBuilder, attribute: TAttribute, context: IConventionContext): void;
|
|
2801
2478
|
ProcessEntityTypeAdded(entityTypeBuilder: IConventionEntityTypeBuilder, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
2479
|
+
ProcessEntityTypeAdded(entityTypeBuilder: IConventionEntityTypeBuilder, attribute: TAttribute, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
2480
|
+
ReplaceWithEntityType(complexTypeBuilder: IConventionComplexTypeBuilder, shouldBeOwned?: Nullable<System_Internal.Boolean>): IConventionEntityTypeBuilder | undefined;
|
|
2802
2481
|
}
|
|
2803
2482
|
|
|
2804
2483
|
|
|
2805
|
-
export const TypeAttributeConventionBase_1: {
|
|
2806
|
-
new<TAttribute extends Attribute>(dependencies: ProviderConventionSetBuilderDependencies): TypeAttributeConventionBase_1<TAttribute>;
|
|
2484
|
+
export const TypeAttributeConventionBase_1: (abstract new<TAttribute extends Attribute>(dependencies: ProviderConventionSetBuilderDependencies) => TypeAttributeConventionBase_1<TAttribute>) & {
|
|
2807
2485
|
};
|
|
2808
2486
|
|
|
2809
2487
|
|
|
@@ -2814,15 +2492,9 @@ export interface __TypeAttributeConventionBase_1$views<TAttribute extends Attrib
|
|
|
2814
2492
|
export type TypeAttributeConventionBase_1<TAttribute extends Attribute> = TypeAttributeConventionBase_1$instance<TAttribute> & __TypeAttributeConventionBase_1$views<TAttribute>;
|
|
2815
2493
|
|
|
2816
2494
|
|
|
2817
|
-
export
|
|
2818
|
-
protected ProcessPropertyAdded4(propertyBuilder: IConventionPropertyBuilder, attribute: UnicodeAttribute, clrMember: MemberInfo, context: IConventionContext): void;
|
|
2819
|
-
protected abstract ProcessPropertyAdded2(propertyBuilder: IConventionPropertyBuilder, attribute: unknown, clrMember: MemberInfo, context: IConventionContext): void;
|
|
2820
|
-
protected ProcessPropertyAdded3(propertyBuilder: IConventionComplexPropertyBuilder, attribute: unknown, clrMember: MemberInfo, context: IConventionContext): void;
|
|
2821
|
-
}
|
|
2822
|
-
|
|
2823
|
-
|
|
2824
|
-
export interface UnicodeAttributeConvention$instance extends UnicodeAttributeConvention$protected, PropertyAttributeConventionBase_1$instance<UnicodeAttribute>, IConvention {
|
|
2495
|
+
export interface UnicodeAttributeConvention$instance extends PropertyAttributeConventionBase_1$instance<UnicodeAttribute>, IConvention {
|
|
2825
2496
|
ProcessPropertyAdded(propertyBuilder: IConventionPropertyBuilder, context: IConventionContext_1<IConventionPropertyBuilder>): void;
|
|
2497
|
+
ProcessPropertyAdded(propertyBuilder: IConventionComplexPropertyBuilder, attribute: UnicodeAttribute, clrMember: MemberInfo, context: IConventionContext): void;
|
|
2826
2498
|
ProcessPropertyFieldChanged(propertyBuilder: IConventionPropertyBuilder, newFieldInfo: FieldInfo, oldFieldInfo: FieldInfo, context: IConventionContext_1<FieldInfo>): void;
|
|
2827
2499
|
}
|
|
2828
2500
|
|
|
@@ -2840,13 +2512,9 @@ export interface __UnicodeAttributeConvention$views {
|
|
|
2840
2512
|
export type UnicodeAttributeConvention = UnicodeAttributeConvention$instance & __UnicodeAttributeConvention$views;
|
|
2841
2513
|
|
|
2842
2514
|
|
|
2843
|
-
export
|
|
2844
|
-
|
|
2845
|
-
|
|
2846
|
-
}
|
|
2847
|
-
|
|
2848
|
-
|
|
2849
|
-
export interface ValueGenerationConvention$instance extends ValueGenerationConvention$protected, IConvention {
|
|
2515
|
+
export interface ValueGenerationConvention$instance extends IConvention {
|
|
2516
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
2517
|
+
GetValueGenerated(property: IConventionProperty): Nullable<ValueGenerated>;
|
|
2850
2518
|
ProcessEntityTypeBaseTypeChanged(entityTypeBuilder: IConventionEntityTypeBuilder, newBaseType: IConventionEntityType, oldBaseType: IConventionEntityType, context: IConventionContext_1<IConventionEntityType>): void;
|
|
2851
2519
|
ProcessEntityTypePrimaryKeyChanged(entityTypeBuilder: IConventionEntityTypeBuilder, newPrimaryKey: IConventionKey, previousPrimaryKey: IConventionKey, context: IConventionContext_1<IConventionKey>): void;
|
|
2852
2520
|
ProcessForeignKeyAdded(relationshipBuilder: IConventionForeignKeyBuilder, context: IConventionContext_1<IConventionForeignKeyBuilder>): void;
|