@tsonic/efcore 10.0.31 → 10.0.33
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.
|
@@ -849,7 +849,7 @@ export interface MemberEntry$instance extends Microsoft_EntityFrameworkCore_Infr
|
|
|
849
849
|
readonly EntityEntry: EntityEntry;
|
|
850
850
|
readonly InternalEntry: IInternalEntry;
|
|
851
851
|
IsModified: boolean;
|
|
852
|
-
readonly Metadata:
|
|
852
|
+
readonly Metadata: INavigationBase | IPropertyBase;
|
|
853
853
|
Equals(obj: unknown): boolean;
|
|
854
854
|
GetHashCode(): int;
|
|
855
855
|
ToString(): string | undefined;
|
|
@@ -5754,8 +5754,8 @@ export interface TypeBase$instance extends ConventionAnnotatable {
|
|
|
5754
5754
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Internal_IRuntimeTypeBase: never;
|
|
5755
5755
|
|
|
5756
5756
|
readonly BaseBuilder: InternalTypeBaseBuilder;
|
|
5757
|
-
get BaseType():
|
|
5758
|
-
set BaseType(value:
|
|
5757
|
+
get BaseType(): EntityType | undefined | TypeBase | undefined;
|
|
5758
|
+
set BaseType(value: EntityType | undefined | TypeBase | undefined);
|
|
5759
5759
|
readonly ClrType: Type;
|
|
5760
5760
|
get ConstructorBinding(): InstantiationBinding | undefined;
|
|
5761
5761
|
set ConstructorBinding(value: InstantiationBinding | undefined);
|
|
@@ -397,6 +397,7 @@ export interface __Ext_Microsoft_EntityFrameworkCore_IndexBuilder {
|
|
|
397
397
|
}
|
|
398
398
|
|
|
399
399
|
export interface __Ext_Microsoft_EntityFrameworkCore_IndexBuilder_1<T> {
|
|
400
|
+
HasName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder>;
|
|
400
401
|
HasDatabaseName(name: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder_1<T>>;
|
|
401
402
|
HasFilter(sql: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder_1<T>>;
|
|
402
403
|
}
|
|
@@ -606,6 +607,28 @@ export interface __Ext_Microsoft_EntityFrameworkCore_IConventionElementType {
|
|
|
606
607
|
}
|
|
607
608
|
|
|
608
609
|
export interface __Ext_Microsoft_EntityFrameworkCore_IConventionEntityType {
|
|
610
|
+
GetContainerColumnName(): Rewrap<this, string | undefined>;
|
|
611
|
+
GetContainerColumnType(): Rewrap<this, string | undefined>;
|
|
612
|
+
GetTableName(): Rewrap<this, string | undefined>;
|
|
613
|
+
GetDefaultTableName(truncate?: boolean): Rewrap<this, string | undefined>;
|
|
614
|
+
GetSchema(): Rewrap<this, string | undefined>;
|
|
615
|
+
GetDefaultSchema(): Rewrap<this, string | undefined>;
|
|
616
|
+
GetSchemaQualifiedTableName(): Rewrap<this, string | undefined>;
|
|
617
|
+
GetSchemaQualifiedViewName(): Rewrap<this, string | undefined>;
|
|
618
|
+
GetViewName(): Rewrap<this, string | undefined>;
|
|
619
|
+
GetDefaultViewName(): Rewrap<this, string | undefined>;
|
|
620
|
+
GetViewSchema(): Rewrap<this, string | undefined>;
|
|
621
|
+
GetDefaultViewSchema(): Rewrap<this, string | undefined>;
|
|
622
|
+
GetDefaultSqlQueryName(): Rewrap<this, string>;
|
|
623
|
+
GetSqlQuery(): Rewrap<this, string | undefined>;
|
|
624
|
+
GetFunctionName(): Rewrap<this, string | undefined>;
|
|
625
|
+
GetComment(): Rewrap<this, string | undefined>;
|
|
626
|
+
IsTableExcludedFromMigrations(): Rewrap<this, boolean>;
|
|
627
|
+
IsTableExcludedFromMigrations(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, boolean>;
|
|
628
|
+
GetMappingStrategy(): Rewrap<this, string | undefined>;
|
|
629
|
+
IsMappedToJson(): Rewrap<this, boolean>;
|
|
630
|
+
GetContainerColumnTypeMapping(): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping | undefined>;
|
|
631
|
+
GetJsonPropertyName(): Rewrap<this, string | undefined>;
|
|
609
632
|
SetTableName(name: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
|
|
610
633
|
GetTableNameConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
|
|
611
634
|
SetSchema(value: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
|
|
@@ -656,12 +679,23 @@ export interface __Ext_Microsoft_EntityFrameworkCore_IConventionEntityType {
|
|
|
656
679
|
}
|
|
657
680
|
|
|
658
681
|
export interface __Ext_Microsoft_EntityFrameworkCore_IConventionForeignKey {
|
|
682
|
+
GetConstraintName(): Rewrap<this, string | undefined>;
|
|
683
|
+
GetConstraintName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, principalStoreObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
684
|
+
GetDefaultName(): Rewrap<this, string | undefined>;
|
|
685
|
+
GetDefaultName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, principalStoreObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
686
|
+
IsRowInternal(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, boolean>;
|
|
659
687
|
SetConstraintName(value: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
|
|
660
688
|
GetConstraintNameConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
|
|
661
689
|
FindSharedObjectRootForeignKey(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionForeignKey | undefined>;
|
|
662
690
|
}
|
|
663
691
|
|
|
664
692
|
export interface __Ext_Microsoft_EntityFrameworkCore_IConventionIndex {
|
|
693
|
+
GetDatabaseName(): Rewrap<this, string | undefined>;
|
|
694
|
+
GetDatabaseName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
695
|
+
GetDefaultDatabaseName(): Rewrap<this, string | undefined>;
|
|
696
|
+
GetDefaultDatabaseName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
697
|
+
GetFilter(): Rewrap<this, string | undefined>;
|
|
698
|
+
GetFilter(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
665
699
|
SetDatabaseName(name: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
|
|
666
700
|
GetDatabaseNameConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
|
|
667
701
|
SetFilter(value: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
|
|
@@ -670,12 +704,20 @@ export interface __Ext_Microsoft_EntityFrameworkCore_IConventionIndex {
|
|
|
670
704
|
}
|
|
671
705
|
|
|
672
706
|
export interface __Ext_Microsoft_EntityFrameworkCore_IConventionKey {
|
|
707
|
+
GetName(): Rewrap<this, string | undefined>;
|
|
708
|
+
GetName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
709
|
+
GetDefaultName(): Rewrap<this, string | undefined>;
|
|
710
|
+
GetDefaultName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
673
711
|
SetName(name: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
|
|
674
712
|
GetNameConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
|
|
675
713
|
FindSharedObjectRootKey(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionKey | undefined>;
|
|
676
714
|
}
|
|
677
715
|
|
|
678
716
|
export interface __Ext_Microsoft_EntityFrameworkCore_IConventionModel {
|
|
717
|
+
GetDefaultSchema(): Rewrap<this, string | undefined>;
|
|
718
|
+
GetMaxIdentifierLength(): Rewrap<this, int>;
|
|
719
|
+
GetCollation(): Rewrap<this, string | undefined>;
|
|
720
|
+
AreNamedDefaultConstraintsUsed(): Rewrap<this, boolean>;
|
|
679
721
|
SetDefaultSchema(value: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
|
|
680
722
|
GetDefaultSchemaConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
|
|
681
723
|
SetMaxIdentifierLength(length: System.Nullable_1<System_Internal.Int32>, fromDataAnnotation?: boolean): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
|
|
@@ -698,6 +740,46 @@ export interface __Ext_Microsoft_EntityFrameworkCore_IConventionModel {
|
|
|
698
740
|
}
|
|
699
741
|
|
|
700
742
|
export interface __Ext_Microsoft_EntityFrameworkCore_IConventionProperty {
|
|
743
|
+
GetColumnBaseName(): Rewrap<this, string>;
|
|
744
|
+
GetColumnName(): Rewrap<this, string>;
|
|
745
|
+
GetColumnName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
746
|
+
GetDefaultColumnBaseName(): Rewrap<this, string>;
|
|
747
|
+
GetDefaultColumnName(): Rewrap<this, string>;
|
|
748
|
+
GetDefaultColumnName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
749
|
+
GetColumnOrder(): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
|
|
750
|
+
GetColumnOrder(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
|
|
751
|
+
GetColumnType(): Rewrap<this, string | undefined>;
|
|
752
|
+
GetColumnType(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
753
|
+
GetDefaultValueSql(): Rewrap<this, string | undefined>;
|
|
754
|
+
GetDefaultValueSql(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
755
|
+
GetComputedColumnSql(): Rewrap<this, string | undefined>;
|
|
756
|
+
GetComputedColumnSql(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
757
|
+
GetIsStored(): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
|
|
758
|
+
GetIsStored(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
|
|
759
|
+
GetDefaultValue(): Rewrap<this, unknown | undefined>;
|
|
760
|
+
TryGetDefaultValue(defaultValue: unknown): Rewrap<this, boolean>;
|
|
761
|
+
GetDefaultValue(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, unknown | undefined>;
|
|
762
|
+
TryGetDefaultValue(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, defaultValue: unknown): Rewrap<this, boolean>;
|
|
763
|
+
GetMaxLength(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
|
|
764
|
+
GetPrecision(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
|
|
765
|
+
GetScale(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
|
|
766
|
+
IsUnicode(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
|
|
767
|
+
IsFixedLength(): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
|
|
768
|
+
IsFixedLength(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
|
|
769
|
+
IsColumnNullable(): Rewrap<this, boolean>;
|
|
770
|
+
IsColumnNullable(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, boolean>;
|
|
771
|
+
GetComment(): Rewrap<this, string | undefined>;
|
|
772
|
+
GetComment(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
773
|
+
GetCollation(): Rewrap<this, string | undefined>;
|
|
774
|
+
GetCollation(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
775
|
+
GetRelationalTypeMapping(): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping>;
|
|
776
|
+
FindRelationalTypeMapping(): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping | undefined>;
|
|
777
|
+
FindRelationalTypeMapping(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping | undefined>;
|
|
778
|
+
GetMappedStoreObjects(storeObjectType: Microsoft_EntityFrameworkCore_Metadata.StoreObjectType): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier>>;
|
|
779
|
+
GetJsonPropertyName(): Rewrap<this, string | undefined>;
|
|
780
|
+
GetDefaultConstraintName(): Rewrap<this, string | undefined>;
|
|
781
|
+
GetDefaultConstraintName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
782
|
+
GetDefaultDefaultConstraintName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string>;
|
|
701
783
|
SetColumnName(name: string, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
|
|
702
784
|
SetColumnName(name: string, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, fromDataAnnotation?: boolean): Rewrap<this, string | undefined>;
|
|
703
785
|
GetColumnNameConfigurationSource(): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
|
|
@@ -748,10 +830,36 @@ export interface __Ext_Microsoft_EntityFrameworkCore_IConventionTypeBase {
|
|
|
748
830
|
}
|
|
749
831
|
|
|
750
832
|
export interface __Ext_Microsoft_EntityFrameworkCore_IElementType {
|
|
833
|
+
IsFixedLength(): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
|
|
834
|
+
IsFixedLength(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
|
|
835
|
+
GetRelationalTypeMapping(): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping>;
|
|
836
|
+
FindRelationalTypeMapping(): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping | undefined>;
|
|
751
837
|
GetStoreType(): Rewrap<this, string>;
|
|
752
838
|
}
|
|
753
839
|
|
|
754
840
|
export interface __Ext_Microsoft_EntityFrameworkCore_IEntityType {
|
|
841
|
+
GetContainerColumnName(): Rewrap<this, string | undefined>;
|
|
842
|
+
GetContainerColumnType(): Rewrap<this, string | undefined>;
|
|
843
|
+
GetTableName(): Rewrap<this, string | undefined>;
|
|
844
|
+
GetDefaultTableName(truncate?: boolean): Rewrap<this, string | undefined>;
|
|
845
|
+
GetSchema(): Rewrap<this, string | undefined>;
|
|
846
|
+
GetDefaultSchema(): Rewrap<this, string | undefined>;
|
|
847
|
+
GetSchemaQualifiedTableName(): Rewrap<this, string | undefined>;
|
|
848
|
+
GetSchemaQualifiedViewName(): Rewrap<this, string | undefined>;
|
|
849
|
+
GetViewName(): Rewrap<this, string | undefined>;
|
|
850
|
+
GetDefaultViewName(): Rewrap<this, string | undefined>;
|
|
851
|
+
GetViewSchema(): Rewrap<this, string | undefined>;
|
|
852
|
+
GetDefaultViewSchema(): Rewrap<this, string | undefined>;
|
|
853
|
+
GetDefaultSqlQueryName(): Rewrap<this, string>;
|
|
854
|
+
GetSqlQuery(): Rewrap<this, string | undefined>;
|
|
855
|
+
GetFunctionName(): Rewrap<this, string | undefined>;
|
|
856
|
+
GetComment(): Rewrap<this, string | undefined>;
|
|
857
|
+
IsTableExcludedFromMigrations(): Rewrap<this, boolean>;
|
|
858
|
+
IsTableExcludedFromMigrations(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, boolean>;
|
|
859
|
+
GetMappingStrategy(): Rewrap<this, string | undefined>;
|
|
860
|
+
IsMappedToJson(): Rewrap<this, boolean>;
|
|
861
|
+
GetContainerColumnTypeMapping(): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping | undefined>;
|
|
862
|
+
GetJsonPropertyName(): Rewrap<this, string | undefined>;
|
|
755
863
|
GetDeleteStoredProcedure(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IStoredProcedure | undefined>;
|
|
756
864
|
GetInsertStoredProcedure(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IStoredProcedure | undefined>;
|
|
757
865
|
GetUpdateStoredProcedure(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IStoredProcedure | undefined>;
|
|
@@ -765,21 +873,40 @@ export interface __Ext_Microsoft_EntityFrameworkCore_IEntityType {
|
|
|
765
873
|
}
|
|
766
874
|
|
|
767
875
|
export interface __Ext_Microsoft_EntityFrameworkCore_IForeignKey {
|
|
876
|
+
GetConstraintName(): Rewrap<this, string | undefined>;
|
|
877
|
+
GetConstraintName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, principalStoreObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
878
|
+
GetDefaultName(): Rewrap<this, string | undefined>;
|
|
879
|
+
GetDefaultName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, principalStoreObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
880
|
+
IsRowInternal(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, boolean>;
|
|
768
881
|
GetMappedConstraints(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IForeignKeyConstraint>>;
|
|
769
882
|
FindSharedObjectRootForeignKey(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IForeignKey | undefined>;
|
|
770
883
|
}
|
|
771
884
|
|
|
772
885
|
export interface __Ext_Microsoft_EntityFrameworkCore_IIndex {
|
|
886
|
+
GetDatabaseName(): Rewrap<this, string | undefined>;
|
|
887
|
+
GetDatabaseName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
888
|
+
GetDefaultDatabaseName(): Rewrap<this, string | undefined>;
|
|
889
|
+
GetDefaultDatabaseName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
890
|
+
GetFilter(): Rewrap<this, string | undefined>;
|
|
891
|
+
GetFilter(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
773
892
|
GetMappedTableIndexes(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.ITableIndex>>;
|
|
774
893
|
FindSharedObjectRootIndex(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IIndex | undefined>;
|
|
775
894
|
}
|
|
776
895
|
|
|
777
896
|
export interface __Ext_Microsoft_EntityFrameworkCore_IKey {
|
|
897
|
+
GetName(): Rewrap<this, string | undefined>;
|
|
898
|
+
GetName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
899
|
+
GetDefaultName(): Rewrap<this, string | undefined>;
|
|
900
|
+
GetDefaultName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
778
901
|
GetMappedConstraints(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IUniqueConstraint>>;
|
|
779
902
|
FindSharedObjectRootKey(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IKey | undefined>;
|
|
780
903
|
}
|
|
781
904
|
|
|
782
905
|
export interface __Ext_Microsoft_EntityFrameworkCore_IModel {
|
|
906
|
+
GetDefaultSchema(): Rewrap<this, string | undefined>;
|
|
907
|
+
GetMaxIdentifierLength(): Rewrap<this, int>;
|
|
908
|
+
GetCollation(): Rewrap<this, string | undefined>;
|
|
909
|
+
AreNamedDefaultConstraintsUsed(): Rewrap<this, boolean>;
|
|
783
910
|
GetRelationalModel(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IRelationalModel>;
|
|
784
911
|
FindSequence(name: string, schema?: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.ISequence | undefined>;
|
|
785
912
|
GetSequences(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.ISequence>>;
|
|
@@ -798,6 +925,28 @@ export interface __Ext_Microsoft_EntityFrameworkCore_IMutableElementType {
|
|
|
798
925
|
}
|
|
799
926
|
|
|
800
927
|
export interface __Ext_Microsoft_EntityFrameworkCore_IMutableEntityType {
|
|
928
|
+
GetContainerColumnName(): Rewrap<this, string | undefined>;
|
|
929
|
+
GetContainerColumnType(): Rewrap<this, string | undefined>;
|
|
930
|
+
GetTableName(): Rewrap<this, string | undefined>;
|
|
931
|
+
GetDefaultTableName(truncate?: boolean): Rewrap<this, string | undefined>;
|
|
932
|
+
GetSchema(): Rewrap<this, string | undefined>;
|
|
933
|
+
GetDefaultSchema(): Rewrap<this, string | undefined>;
|
|
934
|
+
GetSchemaQualifiedTableName(): Rewrap<this, string | undefined>;
|
|
935
|
+
GetSchemaQualifiedViewName(): Rewrap<this, string | undefined>;
|
|
936
|
+
GetViewName(): Rewrap<this, string | undefined>;
|
|
937
|
+
GetDefaultViewName(): Rewrap<this, string | undefined>;
|
|
938
|
+
GetViewSchema(): Rewrap<this, string | undefined>;
|
|
939
|
+
GetDefaultViewSchema(): Rewrap<this, string | undefined>;
|
|
940
|
+
GetDefaultSqlQueryName(): Rewrap<this, string>;
|
|
941
|
+
GetSqlQuery(): Rewrap<this, string | undefined>;
|
|
942
|
+
GetFunctionName(): Rewrap<this, string | undefined>;
|
|
943
|
+
GetComment(): Rewrap<this, string | undefined>;
|
|
944
|
+
IsTableExcludedFromMigrations(): Rewrap<this, boolean>;
|
|
945
|
+
IsTableExcludedFromMigrations(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, boolean>;
|
|
946
|
+
GetMappingStrategy(): Rewrap<this, string | undefined>;
|
|
947
|
+
IsMappedToJson(): Rewrap<this, boolean>;
|
|
948
|
+
GetContainerColumnTypeMapping(): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping | undefined>;
|
|
949
|
+
GetJsonPropertyName(): Rewrap<this, string | undefined>;
|
|
801
950
|
SetTableName(name: string): Rewrap<this, void>;
|
|
802
951
|
SetSchema(value: string): Rewrap<this, void>;
|
|
803
952
|
SetViewName(name: string): Rewrap<this, void>;
|
|
@@ -833,22 +982,41 @@ export interface __Ext_Microsoft_EntityFrameworkCore_IMutableEntityType {
|
|
|
833
982
|
}
|
|
834
983
|
|
|
835
984
|
export interface __Ext_Microsoft_EntityFrameworkCore_IMutableForeignKey {
|
|
985
|
+
GetConstraintName(): Rewrap<this, string | undefined>;
|
|
986
|
+
GetConstraintName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, principalStoreObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
987
|
+
GetDefaultName(): Rewrap<this, string | undefined>;
|
|
988
|
+
GetDefaultName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, principalStoreObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
989
|
+
IsRowInternal(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, boolean>;
|
|
836
990
|
SetConstraintName(value: string): Rewrap<this, void>;
|
|
837
991
|
FindSharedObjectRootForeignKey(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableForeignKey | undefined>;
|
|
838
992
|
}
|
|
839
993
|
|
|
840
994
|
export interface __Ext_Microsoft_EntityFrameworkCore_IMutableIndex {
|
|
995
|
+
GetDatabaseName(): Rewrap<this, string | undefined>;
|
|
996
|
+
GetDatabaseName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
997
|
+
GetDefaultDatabaseName(): Rewrap<this, string | undefined>;
|
|
998
|
+
GetDefaultDatabaseName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
999
|
+
GetFilter(): Rewrap<this, string | undefined>;
|
|
1000
|
+
GetFilter(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
841
1001
|
SetDatabaseName(name: string): Rewrap<this, void>;
|
|
842
1002
|
SetFilter(value: string): Rewrap<this, void>;
|
|
843
1003
|
FindSharedObjectRootIndex(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableIndex | undefined>;
|
|
844
1004
|
}
|
|
845
1005
|
|
|
846
1006
|
export interface __Ext_Microsoft_EntityFrameworkCore_IMutableKey {
|
|
1007
|
+
GetName(): Rewrap<this, string | undefined>;
|
|
1008
|
+
GetName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
1009
|
+
GetDefaultName(): Rewrap<this, string | undefined>;
|
|
1010
|
+
GetDefaultName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
847
1011
|
SetName(name: string): Rewrap<this, void>;
|
|
848
1012
|
FindSharedObjectRootKey(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableKey | undefined>;
|
|
849
1013
|
}
|
|
850
1014
|
|
|
851
1015
|
export interface __Ext_Microsoft_EntityFrameworkCore_IMutableModel {
|
|
1016
|
+
GetDefaultSchema(): Rewrap<this, string | undefined>;
|
|
1017
|
+
GetMaxIdentifierLength(): Rewrap<this, int>;
|
|
1018
|
+
GetCollation(): Rewrap<this, string | undefined>;
|
|
1019
|
+
AreNamedDefaultConstraintsUsed(): Rewrap<this, boolean>;
|
|
852
1020
|
SetDefaultSchema(value: string): Rewrap<this, void>;
|
|
853
1021
|
SetMaxIdentifierLength(length: System.Nullable_1<System_Internal.Int32>): Rewrap<this, void>;
|
|
854
1022
|
FindSequence(name: string, schema?: string): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IMutableSequence | undefined>;
|
|
@@ -867,6 +1035,46 @@ export interface __Ext_Microsoft_EntityFrameworkCore_IMutableModel {
|
|
|
867
1035
|
}
|
|
868
1036
|
|
|
869
1037
|
export interface __Ext_Microsoft_EntityFrameworkCore_IMutableProperty {
|
|
1038
|
+
GetColumnBaseName(): Rewrap<this, string>;
|
|
1039
|
+
GetColumnName(): Rewrap<this, string>;
|
|
1040
|
+
GetColumnName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
1041
|
+
GetDefaultColumnBaseName(): Rewrap<this, string>;
|
|
1042
|
+
GetDefaultColumnName(): Rewrap<this, string>;
|
|
1043
|
+
GetDefaultColumnName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
1044
|
+
GetColumnOrder(): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
|
|
1045
|
+
GetColumnOrder(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
|
|
1046
|
+
GetColumnType(): Rewrap<this, string | undefined>;
|
|
1047
|
+
GetColumnType(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
1048
|
+
GetDefaultValueSql(): Rewrap<this, string | undefined>;
|
|
1049
|
+
GetDefaultValueSql(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
1050
|
+
GetComputedColumnSql(): Rewrap<this, string | undefined>;
|
|
1051
|
+
GetComputedColumnSql(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
1052
|
+
GetIsStored(): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
|
|
1053
|
+
GetIsStored(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
|
|
1054
|
+
GetDefaultValue(): Rewrap<this, unknown | undefined>;
|
|
1055
|
+
TryGetDefaultValue(defaultValue: unknown): Rewrap<this, boolean>;
|
|
1056
|
+
GetDefaultValue(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, unknown | undefined>;
|
|
1057
|
+
TryGetDefaultValue(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, defaultValue: unknown): Rewrap<this, boolean>;
|
|
1058
|
+
GetMaxLength(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
|
|
1059
|
+
GetPrecision(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
|
|
1060
|
+
GetScale(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
|
|
1061
|
+
IsUnicode(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
|
|
1062
|
+
IsFixedLength(): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
|
|
1063
|
+
IsFixedLength(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
|
|
1064
|
+
IsColumnNullable(): Rewrap<this, boolean>;
|
|
1065
|
+
IsColumnNullable(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, boolean>;
|
|
1066
|
+
GetComment(): Rewrap<this, string | undefined>;
|
|
1067
|
+
GetComment(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
1068
|
+
GetCollation(): Rewrap<this, string | undefined>;
|
|
1069
|
+
GetCollation(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
1070
|
+
GetRelationalTypeMapping(): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping>;
|
|
1071
|
+
FindRelationalTypeMapping(): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping | undefined>;
|
|
1072
|
+
FindRelationalTypeMapping(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping | undefined>;
|
|
1073
|
+
GetMappedStoreObjects(storeObjectType: Microsoft_EntityFrameworkCore_Metadata.StoreObjectType): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier>>;
|
|
1074
|
+
GetJsonPropertyName(): Rewrap<this, string | undefined>;
|
|
1075
|
+
GetDefaultConstraintName(): Rewrap<this, string | undefined>;
|
|
1076
|
+
GetDefaultConstraintName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
1077
|
+
GetDefaultDefaultConstraintName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string>;
|
|
870
1078
|
SetColumnName(name: string): Rewrap<this, void>;
|
|
871
1079
|
SetColumnName(name: string, storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, void>;
|
|
872
1080
|
SetColumnOrder(order: System.Nullable_1<System_Internal.Int32>): Rewrap<this, void>;
|
|
@@ -899,6 +1107,44 @@ export interface __Ext_Microsoft_EntityFrameworkCore_IMutableTypeBase {
|
|
|
899
1107
|
}
|
|
900
1108
|
|
|
901
1109
|
export interface __Ext_Microsoft_EntityFrameworkCore_IProperty {
|
|
1110
|
+
GetColumnBaseName(): Rewrap<this, string>;
|
|
1111
|
+
GetColumnName(): Rewrap<this, string>;
|
|
1112
|
+
GetColumnName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
1113
|
+
GetDefaultColumnBaseName(): Rewrap<this, string>;
|
|
1114
|
+
GetDefaultColumnName(): Rewrap<this, string>;
|
|
1115
|
+
GetDefaultColumnName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
1116
|
+
GetColumnOrder(): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
|
|
1117
|
+
GetColumnOrder(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
|
|
1118
|
+
GetDefaultValueSql(): Rewrap<this, string | undefined>;
|
|
1119
|
+
GetDefaultValueSql(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
1120
|
+
GetComputedColumnSql(): Rewrap<this, string | undefined>;
|
|
1121
|
+
GetComputedColumnSql(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
1122
|
+
GetIsStored(): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
|
|
1123
|
+
GetIsStored(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
|
|
1124
|
+
GetDefaultValue(): Rewrap<this, unknown | undefined>;
|
|
1125
|
+
TryGetDefaultValue(defaultValue: unknown): Rewrap<this, boolean>;
|
|
1126
|
+
GetDefaultValue(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, unknown | undefined>;
|
|
1127
|
+
TryGetDefaultValue(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier, defaultValue: unknown): Rewrap<this, boolean>;
|
|
1128
|
+
GetMaxLength(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
|
|
1129
|
+
GetPrecision(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
|
|
1130
|
+
GetScale(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Int32>>;
|
|
1131
|
+
IsUnicode(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
|
|
1132
|
+
IsFixedLength(): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
|
|
1133
|
+
IsFixedLength(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, System.Nullable_1<System_Internal.Boolean>>;
|
|
1134
|
+
IsColumnNullable(): Rewrap<this, boolean>;
|
|
1135
|
+
IsColumnNullable(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, boolean>;
|
|
1136
|
+
GetComment(): Rewrap<this, string | undefined>;
|
|
1137
|
+
GetComment(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
1138
|
+
GetCollation(): Rewrap<this, string | undefined>;
|
|
1139
|
+
GetCollation(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
1140
|
+
GetRelationalTypeMapping(): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping>;
|
|
1141
|
+
FindRelationalTypeMapping(): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping | undefined>;
|
|
1142
|
+
FindRelationalTypeMapping(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, Microsoft_EntityFrameworkCore_Storage.RelationalTypeMapping | undefined>;
|
|
1143
|
+
GetMappedStoreObjects(storeObjectType: Microsoft_EntityFrameworkCore_Metadata.StoreObjectType): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier>>;
|
|
1144
|
+
GetJsonPropertyName(): Rewrap<this, string | undefined>;
|
|
1145
|
+
GetDefaultConstraintName(): Rewrap<this, string | undefined>;
|
|
1146
|
+
GetDefaultConstraintName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string | undefined>;
|
|
1147
|
+
GetDefaultDefaultConstraintName(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string>;
|
|
902
1148
|
GetColumnType(): Rewrap<this, string>;
|
|
903
1149
|
GetColumnType(storeObject: Microsoft_EntityFrameworkCore_Metadata.StoreObjectIdentifier): Rewrap<this, string>;
|
|
904
1150
|
GetDefaultColumnMappings(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IColumnMappingBase>>;
|
|
@@ -931,6 +1177,8 @@ export interface __Ext_Microsoft_EntityFrameworkCore_IReadOnlyElementType {
|
|
|
931
1177
|
}
|
|
932
1178
|
|
|
933
1179
|
export interface __Ext_Microsoft_EntityFrameworkCore_IReadOnlyEntityType {
|
|
1180
|
+
GetContainerColumnName(): Rewrap<this, string | undefined>;
|
|
1181
|
+
GetContainerColumnType(): Rewrap<this, string | undefined>;
|
|
934
1182
|
GetTableName(): Rewrap<this, string | undefined>;
|
|
935
1183
|
GetDefaultTableName(truncate?: boolean): Rewrap<this, string | undefined>;
|
|
936
1184
|
GetSchema(): Rewrap<this, string | undefined>;
|
|
@@ -1078,6 +1326,17 @@ export interface __Ext_Microsoft_EntityFrameworkCore_IReadOnlyTypeBase {
|
|
|
1078
1326
|
}
|
|
1079
1327
|
|
|
1080
1328
|
export interface __Ext_Microsoft_EntityFrameworkCore_ITypeBase {
|
|
1329
|
+
GetTableName(): Rewrap<this, string | undefined>;
|
|
1330
|
+
GetSchema(): Rewrap<this, string | undefined>;
|
|
1331
|
+
GetViewName(): Rewrap<this, string | undefined>;
|
|
1332
|
+
GetViewSchema(): Rewrap<this, string | undefined>;
|
|
1333
|
+
GetSqlQuery(): Rewrap<this, string | undefined>;
|
|
1334
|
+
GetFunctionName(): Rewrap<this, string | undefined>;
|
|
1335
|
+
GetMappingStrategy(): Rewrap<this, string | undefined>;
|
|
1336
|
+
IsMappedToJson(): Rewrap<this, boolean>;
|
|
1337
|
+
GetContainerColumnName(): Rewrap<this, string | undefined>;
|
|
1338
|
+
GetContainerColumnType(): Rewrap<this, string | undefined>;
|
|
1339
|
+
GetJsonPropertyName(): Rewrap<this, string | undefined>;
|
|
1081
1340
|
GetDefaultMappings(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.ITableMappingBase>>;
|
|
1082
1341
|
GetTableMappings(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.ITableMapping>>;
|
|
1083
1342
|
GetViewMappings(): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IViewMapping>>;
|
|
@@ -1577,6 +1836,13 @@ export interface __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IComplexP
|
|
|
1577
1836
|
}
|
|
1578
1837
|
|
|
1579
1838
|
export interface __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IConventionEntityType {
|
|
1839
|
+
GetNavigationMemberInfo(navigationName: string): Rewrap<this, System_Reflection.MemberInfo>;
|
|
1840
|
+
IsOwned(): Rewrap<this, boolean>;
|
|
1841
|
+
FindInOwnershipPath(targetType: System.Type): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType | undefined>;
|
|
1842
|
+
IsInOwnershipPath(targetType: System.Type): Rewrap<this, boolean>;
|
|
1843
|
+
IsInOwnershipPath(targetType: Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType): Rewrap<this, boolean>;
|
|
1844
|
+
FindDeclaredPrimaryKey(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IReadOnlyKey | undefined>;
|
|
1845
|
+
FindDerivedNavigations(navigationName: string): Rewrap<this, System_Collections_Generic.IEnumerable_1<Microsoft_EntityFrameworkCore_Metadata.IReadOnlyNavigation>>;
|
|
1580
1846
|
FindDeclaredOwnership(): Rewrap<this, Microsoft_EntityFrameworkCore_Metadata.IConventionForeignKey | undefined>;
|
|
1581
1847
|
GetStoreObjectConfigurationSource(type: Microsoft_EntityFrameworkCore_Metadata.StoreObjectType): Rewrap<this, System.Nullable_1<Microsoft_EntityFrameworkCore_Metadata.ConfigurationSource>>;
|
|
1582
1848
|
}
|
|
@@ -1803,12 +2069,11 @@ export interface __Ext_System_Transactions_DatabaseFacade {
|
|
|
1803
2069
|
type __TsonicExtMapOf<T> = T extends { __tsonic_ext?: infer M } ? M : {};
|
|
1804
2070
|
type __TsonicMergeExtMaps<A, B> = A & B;
|
|
1805
2071
|
type __TsonicWithExt<TShape, K extends string, TApplier> = { __tsonic_ext?: __TsonicMergeExtMaps<__TsonicExtMapOf<TShape>, { [P in K]: TApplier }> };
|
|
1806
|
-
type __TsonicPreferExt<A, B> = A & B;
|
|
1807
2072
|
|
|
1808
2073
|
// Generic helper type for extension methods in namespace: Microsoft.EntityFrameworkCore
|
|
1809
2074
|
type __TsonicExtSurface_Microsoft_EntityFrameworkCore<TShape> =
|
|
1810
2075
|
(
|
|
1811
|
-
(TShape extends Microsoft_EntityFrameworkCore.DbFunctions ? __Ext_Microsoft_EntityFrameworkCore_DbFunctions : {}) & (TShape extends Microsoft_EntityFrameworkCore.DbSet_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_DbSet_1<T0> : {}) & (TShape extends Microsoft_EntityFrameworkCore.ModelBuilder ? __Ext_Microsoft_EntityFrameworkCore_ModelBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_ChangeTracking.ChangeTracker ? __Ext_Microsoft_EntityFrameworkCore_ChangeTracker : {}) & (TShape extends Microsoft_EntityFrameworkCore_Infrastructure.DatabaseFacade ? __Ext_Microsoft_EntityFrameworkCore_DatabaseFacade : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionComplexProperty ? __Ext_Microsoft_EntityFrameworkCore_IConventionComplexProperty : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionElementType ? __Ext_Microsoft_EntityFrameworkCore_IConventionElementType : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType ? __TsonicPreferExt<__TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_IReadOnlyTypeBase, __Ext_Microsoft_EntityFrameworkCore_IReadOnlyEntityType>, __Ext_Microsoft_EntityFrameworkCore_IConventionEntityType> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionForeignKey ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_IReadOnlyForeignKey, __Ext_Microsoft_EntityFrameworkCore_IConventionForeignKey> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionIndex ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_IReadOnlyIndex, __Ext_Microsoft_EntityFrameworkCore_IConventionIndex> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionKey ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_IReadOnlyKey, __Ext_Microsoft_EntityFrameworkCore_IConventionKey> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionModel ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_IReadOnlyModel, __Ext_Microsoft_EntityFrameworkCore_IConventionModel> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionProperty ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_IReadOnlyProperty, __Ext_Microsoft_EntityFrameworkCore_IConventionProperty> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionTrigger ? __Ext_Microsoft_EntityFrameworkCore_IConventionTrigger : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionTypeBase ? __Ext_Microsoft_EntityFrameworkCore_IConventionTypeBase : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IElementType ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_IReadOnlyElementType, __Ext_Microsoft_EntityFrameworkCore_IElementType> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IEntityType ? __TsonicPreferExt<__TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_IReadOnlyTypeBase, __Ext_Microsoft_EntityFrameworkCore_IReadOnlyEntityType>, __Ext_Microsoft_EntityFrameworkCore_IEntityType> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IForeignKey ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_IReadOnlyForeignKey, __Ext_Microsoft_EntityFrameworkCore_IForeignKey> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IIndex ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_IReadOnlyIndex, __Ext_Microsoft_EntityFrameworkCore_IIndex> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IKey ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_IReadOnlyKey, __Ext_Microsoft_EntityFrameworkCore_IKey> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IModel ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_IReadOnlyModel, __Ext_Microsoft_EntityFrameworkCore_IModel> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableComplexProperty ? __Ext_Microsoft_EntityFrameworkCore_IMutableComplexProperty : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyElementType ? (TShape extends Microsoft_EntityFrameworkCore_Metadata.IElementType ? {} : __Ext_Microsoft_EntityFrameworkCore_IReadOnlyElementType) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableElementType ? __Ext_Microsoft_EntityFrameworkCore_IMutableElementType : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableForeignKey ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_IReadOnlyForeignKey, __Ext_Microsoft_EntityFrameworkCore_IMutableForeignKey> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableIndex ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_IReadOnlyIndex, __Ext_Microsoft_EntityFrameworkCore_IMutableIndex> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableKey ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_IReadOnlyKey, __Ext_Microsoft_EntityFrameworkCore_IMutableKey> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableModel ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_IReadOnlyModel, __Ext_Microsoft_EntityFrameworkCore_IMutableModel> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableProperty ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_IReadOnlyProperty, __Ext_Microsoft_EntityFrameworkCore_IMutableProperty> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableTrigger ? __Ext_Microsoft_EntityFrameworkCore_IMutableTrigger : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableTypeBase ? __Ext_Microsoft_EntityFrameworkCore_IMutableTypeBase : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IProperty ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_IReadOnlyProperty, __Ext_Microsoft_EntityFrameworkCore_IProperty> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyComplexProperty ? __Ext_Microsoft_EntityFrameworkCore_IReadOnlyComplexProperty : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyTypeBase ? (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IEntityType ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableEntityType ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.ITypeBase ? {} : __Ext_Microsoft_EntityFrameworkCore_IReadOnlyTypeBase))))) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType ? (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IEntityType ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableEntityType ? {} : __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_IReadOnlyTypeBase, __Ext_Microsoft_EntityFrameworkCore_IReadOnlyEntityType>))) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableEntityType ? __TsonicPreferExt<__TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_IReadOnlyTypeBase, __Ext_Microsoft_EntityFrameworkCore_IReadOnlyEntityType>, __Ext_Microsoft_EntityFrameworkCore_IMutableEntityType> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyForeignKey ? (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionForeignKey ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IForeignKey ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableForeignKey ? {} : __Ext_Microsoft_EntityFrameworkCore_IReadOnlyForeignKey))) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyIndex ? (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionIndex ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IIndex ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableIndex ? {} : __Ext_Microsoft_EntityFrameworkCore_IReadOnlyIndex))) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyKey ? (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionKey ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IKey ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableKey ? {} : __Ext_Microsoft_EntityFrameworkCore_IReadOnlyKey))) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyModel ? (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionModel ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IModel ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableModel ? {} : __Ext_Microsoft_EntityFrameworkCore_IReadOnlyModel))) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty ? (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionProperty ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableProperty ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IProperty ? {} : __Ext_Microsoft_EntityFrameworkCore_IReadOnlyProperty))) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyTrigger ? __Ext_Microsoft_EntityFrameworkCore_IReadOnlyTrigger : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.ITypeBase ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_IReadOnlyTypeBase, __Ext_Microsoft_EntityFrameworkCore_ITypeBase> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionBuilder_1<infer _0> ? {} : __Ext_Microsoft_EntityFrameworkCore_ComplexCollectionBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionBuilder_1<infer T0> ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_ComplexCollectionBuilder, __Ext_Microsoft_EntityFrameworkCore_ComplexCollectionBuilder_1<T0>> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionTypePropertyBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionTypePropertyBuilder_1<infer _0> ? {} : __Ext_Microsoft_EntityFrameworkCore_ComplexCollectionTypePropertyBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionTypePropertyBuilder_1<infer T0> ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_ComplexCollectionTypePropertyBuilder, __Ext_Microsoft_EntityFrameworkCore_ComplexCollectionTypePropertyBuilder_1<T0>> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexPropertyBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexPropertyBuilder_1<infer _0> ? {} : __Ext_Microsoft_EntityFrameworkCore_ComplexPropertyBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexPropertyBuilder_1<infer T0> ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_ComplexPropertyBuilder, __Ext_Microsoft_EntityFrameworkCore_ComplexPropertyBuilder_1<T0>> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<infer _0> ? {} : __Ext_Microsoft_EntityFrameworkCore_ComplexTypePrimitiveCollectionBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<infer T0> ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_ComplexTypePrimitiveCollectionBuilder, __Ext_Microsoft_EntityFrameworkCore_ComplexTypePrimitiveCollectionBuilder_1<T0>> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<infer _0> ? {} : __Ext_Microsoft_EntityFrameworkCore_ComplexTypePropertyBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<infer T0> ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_ComplexTypePropertyBuilder, __Ext_Microsoft_EntityFrameworkCore_ComplexTypePropertyBuilder_1<T0>> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ElementTypeBuilder ? __Ext_Microsoft_EntityFrameworkCore_ElementTypeBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<infer _0> ? {} : __Ext_Microsoft_EntityFrameworkCore_EntityTypeBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<infer T0> ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_EntityTypeBuilder, __Ext_Microsoft_EntityFrameworkCore_EntityTypeBuilder_1<T0>> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionElementTypeBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionElementTypeBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionEntityTypeBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionForeignKeyBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionForeignKeyBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionIndexBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionIndexBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionKeyBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionKeyBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionModelBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionModelBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionPropertyBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionTriggerBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionTriggerBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder_1<infer _0> ? {} : __Ext_Microsoft_EntityFrameworkCore_IndexBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder_1<infer T0> ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_IndexBuilder, __Ext_Microsoft_EntityFrameworkCore_IndexBuilder_1<T0>> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.KeyBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.KeyBuilder_1<infer _0> ? {} : __Ext_Microsoft_EntityFrameworkCore_KeyBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.KeyBuilder_1<infer T0> ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_KeyBuilder, __Ext_Microsoft_EntityFrameworkCore_KeyBuilder_1<T0>> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<infer _0, infer _1> ? {} : __Ext_Microsoft_EntityFrameworkCore_OwnedNavigationBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<infer T0, infer T1> ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_OwnedNavigationBuilder, __Ext_Microsoft_EntityFrameworkCore_OwnedNavigationBuilder_2<T0, T1>> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.OwnershipBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.OwnershipBuilder_2<infer _0, infer _1> ? {} : __Ext_Microsoft_EntityFrameworkCore_OwnershipBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.OwnershipBuilder_2<infer T0, infer T1> ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_OwnershipBuilder, __Ext_Microsoft_EntityFrameworkCore_OwnershipBuilder_2<T0, T1>> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<infer _0> ? {} : __Ext_Microsoft_EntityFrameworkCore_PrimitiveCollectionBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<infer T0> ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_PrimitiveCollectionBuilder, __Ext_Microsoft_EntityFrameworkCore_PrimitiveCollectionBuilder_1<T0>> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PropertiesConfigurationBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PropertiesConfigurationBuilder_1<infer _0> ? {} : __Ext_Microsoft_EntityFrameworkCore_PropertiesConfigurationBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PropertiesConfigurationBuilder_1<infer T0> ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_PropertiesConfigurationBuilder, __Ext_Microsoft_EntityFrameworkCore_PropertiesConfigurationBuilder_1<T0>> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<infer _0> ? {} : __Ext_Microsoft_EntityFrameworkCore_PropertyBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<infer T0> ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_PropertyBuilder, __Ext_Microsoft_EntityFrameworkCore_PropertyBuilder_1<T0>> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ReferenceCollectionBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ReferenceCollectionBuilder_2<infer _0, infer _1> ? {} : __Ext_Microsoft_EntityFrameworkCore_ReferenceCollectionBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ReferenceCollectionBuilder_2<infer T0, infer T1> ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_ReferenceCollectionBuilder, __Ext_Microsoft_EntityFrameworkCore_ReferenceCollectionBuilder_2<T0, T1>> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ReferenceReferenceBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ReferenceReferenceBuilder_2<infer _0, infer _1> ? {} : __Ext_Microsoft_EntityFrameworkCore_ReferenceReferenceBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ReferenceReferenceBuilder_2<infer T0, infer T1> ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_ReferenceReferenceBuilder, __Ext_Microsoft_EntityFrameworkCore_ReferenceReferenceBuilder_2<T0, T1>> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.TypeMappingConfigurationBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.TypeMappingConfigurationBuilder_1<infer _0> ? {} : __Ext_Microsoft_EntityFrameworkCore_TypeMappingConfigurationBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.TypeMappingConfigurationBuilder_1<infer T0> ? __TsonicPreferExt<__Ext_Microsoft_EntityFrameworkCore_TypeMappingConfigurationBuilder, __Ext_Microsoft_EntityFrameworkCore_TypeMappingConfigurationBuilder_1<T0>> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Query.IIncludableQueryable_2<infer T0, infer T1> ? __Ext_Microsoft_EntityFrameworkCore_IIncludableQueryable_2<T0, T1> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Query_SqlExpressions.TableExpressionBase ? __Ext_Microsoft_EntityFrameworkCore_TableExpressionBase : {}) & (TShape extends Microsoft_EntityFrameworkCore_Storage.IExecutionStrategy ? __Ext_Microsoft_EntityFrameworkCore_IExecutionStrategy : {}) & (TShape extends System_Collections_Generic.IEnumerable_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_IEnumerable_1<T0> : {}) & (TShape extends System_Collections_ObjectModel.ObservableCollection_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_ObservableCollection_1<T0> : {}) & (TShape extends System_Linq.IQueryable ? __Ext_Microsoft_EntityFrameworkCore_IQueryable : {}) & (TShape extends System_Linq.IQueryable_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_IQueryable_1<T0> : {}) & (TShape extends (infer T)[] ? __Ext_Microsoft_EntityFrameworkCore_IEnumerable_1<T> : {})
|
|
2076
|
+
(TShape extends Microsoft_EntityFrameworkCore.DbFunctions ? __Ext_Microsoft_EntityFrameworkCore_DbFunctions : {}) & (TShape extends Microsoft_EntityFrameworkCore.DbSet_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_DbSet_1<T0> : {}) & (TShape extends Microsoft_EntityFrameworkCore.ModelBuilder ? __Ext_Microsoft_EntityFrameworkCore_ModelBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_ChangeTracking.ChangeTracker ? __Ext_Microsoft_EntityFrameworkCore_ChangeTracker : {}) & (TShape extends Microsoft_EntityFrameworkCore_Infrastructure.DatabaseFacade ? __Ext_Microsoft_EntityFrameworkCore_DatabaseFacade : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionComplexProperty ? __Ext_Microsoft_EntityFrameworkCore_IConventionComplexProperty : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionElementType ? __Ext_Microsoft_EntityFrameworkCore_IConventionElementType : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType ? __Ext_Microsoft_EntityFrameworkCore_IConventionEntityType : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionForeignKey ? __Ext_Microsoft_EntityFrameworkCore_IConventionForeignKey : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionIndex ? __Ext_Microsoft_EntityFrameworkCore_IConventionIndex : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionKey ? __Ext_Microsoft_EntityFrameworkCore_IConventionKey : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionModel ? __Ext_Microsoft_EntityFrameworkCore_IConventionModel : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionProperty ? __Ext_Microsoft_EntityFrameworkCore_IConventionProperty : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionTrigger ? __Ext_Microsoft_EntityFrameworkCore_IConventionTrigger : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionTypeBase ? __Ext_Microsoft_EntityFrameworkCore_IConventionTypeBase : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IElementType ? __Ext_Microsoft_EntityFrameworkCore_IElementType : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IEntityType ? __Ext_Microsoft_EntityFrameworkCore_IEntityType : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IForeignKey ? __Ext_Microsoft_EntityFrameworkCore_IForeignKey : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IIndex ? __Ext_Microsoft_EntityFrameworkCore_IIndex : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IKey ? __Ext_Microsoft_EntityFrameworkCore_IKey : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IModel ? __Ext_Microsoft_EntityFrameworkCore_IModel : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableComplexProperty ? __Ext_Microsoft_EntityFrameworkCore_IMutableComplexProperty : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableElementType ? __Ext_Microsoft_EntityFrameworkCore_IMutableElementType : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableEntityType ? __Ext_Microsoft_EntityFrameworkCore_IMutableEntityType : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableForeignKey ? __Ext_Microsoft_EntityFrameworkCore_IMutableForeignKey : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableIndex ? __Ext_Microsoft_EntityFrameworkCore_IMutableIndex : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableKey ? __Ext_Microsoft_EntityFrameworkCore_IMutableKey : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableModel ? __Ext_Microsoft_EntityFrameworkCore_IMutableModel : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableProperty ? __Ext_Microsoft_EntityFrameworkCore_IMutableProperty : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableTrigger ? __Ext_Microsoft_EntityFrameworkCore_IMutableTrigger : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableTypeBase ? __Ext_Microsoft_EntityFrameworkCore_IMutableTypeBase : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IProperty ? __Ext_Microsoft_EntityFrameworkCore_IProperty : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyComplexProperty ? __Ext_Microsoft_EntityFrameworkCore_IReadOnlyComplexProperty : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyElementType ? (TShape extends Microsoft_EntityFrameworkCore_Metadata.IElementType ? {} : __Ext_Microsoft_EntityFrameworkCore_IReadOnlyElementType) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType ? (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IEntityType ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableEntityType ? {} : __Ext_Microsoft_EntityFrameworkCore_IReadOnlyEntityType))) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyForeignKey ? (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionForeignKey ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IForeignKey ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableForeignKey ? {} : __Ext_Microsoft_EntityFrameworkCore_IReadOnlyForeignKey))) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyIndex ? (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionIndex ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IIndex ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableIndex ? {} : __Ext_Microsoft_EntityFrameworkCore_IReadOnlyIndex))) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyKey ? (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionKey ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IKey ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableKey ? {} : __Ext_Microsoft_EntityFrameworkCore_IReadOnlyKey))) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyModel ? (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionModel ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IModel ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableModel ? {} : __Ext_Microsoft_EntityFrameworkCore_IReadOnlyModel))) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty ? (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionProperty ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableProperty ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IProperty ? {} : __Ext_Microsoft_EntityFrameworkCore_IReadOnlyProperty))) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyTrigger ? __Ext_Microsoft_EntityFrameworkCore_IReadOnlyTrigger : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyTypeBase ? (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IEntityType ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableEntityType ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType ? {} : (TShape extends Microsoft_EntityFrameworkCore_Metadata.ITypeBase ? {} : __Ext_Microsoft_EntityFrameworkCore_IReadOnlyTypeBase))))) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.ITypeBase ? __Ext_Microsoft_EntityFrameworkCore_ITypeBase : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionBuilder_1<infer _0> ? {} : __Ext_Microsoft_EntityFrameworkCore_ComplexCollectionBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_ComplexCollectionBuilder_1<T0> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionTypePropertyBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionTypePropertyBuilder_1<infer _0> ? {} : __Ext_Microsoft_EntityFrameworkCore_ComplexCollectionTypePropertyBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexCollectionTypePropertyBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_ComplexCollectionTypePropertyBuilder_1<T0> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexPropertyBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexPropertyBuilder_1<infer _0> ? {} : __Ext_Microsoft_EntityFrameworkCore_ComplexPropertyBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexPropertyBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_ComplexPropertyBuilder_1<T0> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<infer _0> ? {} : __Ext_Microsoft_EntityFrameworkCore_ComplexTypePrimitiveCollectionBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePrimitiveCollectionBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_ComplexTypePrimitiveCollectionBuilder_1<T0> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<infer _0> ? {} : __Ext_Microsoft_EntityFrameworkCore_ComplexTypePropertyBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ComplexTypePropertyBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_ComplexTypePropertyBuilder_1<T0> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ElementTypeBuilder ? __Ext_Microsoft_EntityFrameworkCore_ElementTypeBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<infer _0> ? {} : __Ext_Microsoft_EntityFrameworkCore_EntityTypeBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.EntityTypeBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_EntityTypeBuilder_1<T0> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionElementTypeBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionElementTypeBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionEntityTypeBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionEntityTypeBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionForeignKeyBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionForeignKeyBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionIndexBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionIndexBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionKeyBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionKeyBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionModelBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionModelBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionPropertyBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionPropertyBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IConventionTriggerBuilder ? __Ext_Microsoft_EntityFrameworkCore_IConventionTriggerBuilder : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder_1<infer _0> ? {} : __Ext_Microsoft_EntityFrameworkCore_IndexBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.IndexBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_IndexBuilder_1<T0> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.KeyBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.KeyBuilder_1<infer _0> ? {} : __Ext_Microsoft_EntityFrameworkCore_KeyBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.KeyBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_KeyBuilder_1<T0> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<infer _0, infer _1> ? {} : __Ext_Microsoft_EntityFrameworkCore_OwnedNavigationBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.OwnedNavigationBuilder_2<infer T0, infer T1> ? __Ext_Microsoft_EntityFrameworkCore_OwnedNavigationBuilder_2<T0, T1> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.OwnershipBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.OwnershipBuilder_2<infer _0, infer _1> ? {} : __Ext_Microsoft_EntityFrameworkCore_OwnershipBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.OwnershipBuilder_2<infer T0, infer T1> ? __Ext_Microsoft_EntityFrameworkCore_OwnershipBuilder_2<T0, T1> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<infer _0> ? {} : __Ext_Microsoft_EntityFrameworkCore_PrimitiveCollectionBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PrimitiveCollectionBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_PrimitiveCollectionBuilder_1<T0> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PropertiesConfigurationBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PropertiesConfigurationBuilder_1<infer _0> ? {} : __Ext_Microsoft_EntityFrameworkCore_PropertiesConfigurationBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PropertiesConfigurationBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_PropertiesConfigurationBuilder_1<T0> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<infer _0> ? {} : __Ext_Microsoft_EntityFrameworkCore_PropertyBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.PropertyBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_PropertyBuilder_1<T0> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ReferenceCollectionBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ReferenceCollectionBuilder_2<infer _0, infer _1> ? {} : __Ext_Microsoft_EntityFrameworkCore_ReferenceCollectionBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ReferenceCollectionBuilder_2<infer T0, infer T1> ? __Ext_Microsoft_EntityFrameworkCore_ReferenceCollectionBuilder_2<T0, T1> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ReferenceReferenceBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ReferenceReferenceBuilder_2<infer _0, infer _1> ? {} : __Ext_Microsoft_EntityFrameworkCore_ReferenceReferenceBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.ReferenceReferenceBuilder_2<infer T0, infer T1> ? __Ext_Microsoft_EntityFrameworkCore_ReferenceReferenceBuilder_2<T0, T1> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.TypeMappingConfigurationBuilder ? (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.TypeMappingConfigurationBuilder_1<infer _0> ? {} : __Ext_Microsoft_EntityFrameworkCore_TypeMappingConfigurationBuilder) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Builders.TypeMappingConfigurationBuilder_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_TypeMappingConfigurationBuilder_1<T0> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Query.IIncludableQueryable_2<infer T0, infer T1> ? __Ext_Microsoft_EntityFrameworkCore_IIncludableQueryable_2<T0, T1> : {}) & (TShape extends Microsoft_EntityFrameworkCore_Query_SqlExpressions.TableExpressionBase ? __Ext_Microsoft_EntityFrameworkCore_TableExpressionBase : {}) & (TShape extends Microsoft_EntityFrameworkCore_Storage.IExecutionStrategy ? __Ext_Microsoft_EntityFrameworkCore_IExecutionStrategy : {}) & (TShape extends System_Collections_Generic.IEnumerable_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_IEnumerable_1<T0> : {}) & (TShape extends System_Collections_ObjectModel.ObservableCollection_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_ObservableCollection_1<T0> : {}) & (TShape extends System_Linq.IQueryable ? __Ext_Microsoft_EntityFrameworkCore_IQueryable : {}) & (TShape extends System_Linq.IQueryable_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_IQueryable_1<T0> : {}) & (TShape extends (infer T)[] ? __Ext_Microsoft_EntityFrameworkCore_IEnumerable_1<T> : {})
|
|
1812
2077
|
);
|
|
1813
2078
|
|
|
1814
2079
|
interface __TsonicExtApplier_Microsoft_EntityFrameworkCore {
|
|
@@ -1952,7 +2217,7 @@ export type ExtensionMethods_Microsoft_EntityFrameworkCore_Metadata_Conventions_
|
|
|
1952
2217
|
// Generic helper type for extension methods in namespace: Microsoft.EntityFrameworkCore.Metadata.Internal
|
|
1953
2218
|
type __TsonicExtSurface_Microsoft_EntityFrameworkCore_Metadata_Internal<TShape> =
|
|
1954
2219
|
(
|
|
1955
|
-
(TShape extends Microsoft_EntityFrameworkCore_Metadata.IComplexProperty ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IComplexProperty : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType ?
|
|
2220
|
+
(TShape extends Microsoft_EntityFrameworkCore_Metadata.IComplexProperty ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IComplexProperty : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IConventionEntityType : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IEntityType ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IEntityType : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IForeignKey ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IForeignKey : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IModel ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IModel : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IMutableModel ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IMutableModel : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IProperty ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IProperty : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IPropertyBase ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IPropertyBase : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyComplexProperty ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlyComplexProperty : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyEntityType ? (TShape extends Microsoft_EntityFrameworkCore_Metadata.IConventionEntityType ? {} : __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlyEntityType) : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyForeignKey ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlyForeignKey : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyIndex ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlyIndex : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyKey ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlyKey : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyNavigation ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlyNavigation : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyProperty ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlyProperty : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyPropertyBase ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlyPropertyBase : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlySkipNavigation ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlySkipNavigation : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.IReadOnlyTypeBase ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IReadOnlyTypeBase : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.ITypeBase ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_ITypeBase : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata.ValueGenerated ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_ValueGenerated : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Internal.EntityType ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_EntityType : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Internal.IRuntimeEntityType ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_IRuntimeEntityType : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Internal.Property ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_Property : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Internal.PropertyBase ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_PropertyBase : {}) & (TShape extends Microsoft_EntityFrameworkCore_Metadata_Internal.TypeConfigurationType ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_TypeConfigurationType : {}) & (TShape extends System.Nullable_1<infer T0> ? __Ext_Microsoft_EntityFrameworkCore_Metadata_Internal_Nullable_1<T0> : {})
|
|
1956
2221
|
);
|
|
1957
2222
|
|
|
1958
2223
|
interface __TsonicExtApplier_Microsoft_EntityFrameworkCore_Metadata_Internal {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tsonic/efcore",
|
|
3
|
-
"version": "10.0.
|
|
3
|
+
"version": "10.0.33",
|
|
4
4
|
"description": "TypeScript type definitions for Microsoft.EntityFrameworkCore.* for .NET 10",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"keywords": [
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
"url": "https://github.com/tsoniclang/efcore.git"
|
|
20
20
|
},
|
|
21
21
|
"peerDependencies": {
|
|
22
|
-
"@tsonic/core": "10.0.
|
|
23
|
-
"@tsonic/dotnet": "10.0.
|
|
24
|
-
"@tsonic/microsoft-extensions": "10.0.
|
|
22
|
+
"@tsonic/core": "10.0.33",
|
|
23
|
+
"@tsonic/dotnet": "10.0.33",
|
|
24
|
+
"@tsonic/microsoft-extensions": "10.0.33"
|
|
25
25
|
}
|
|
26
26
|
}
|