@tsonic/efcore 10.0.11 → 10.0.16

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.
Files changed (53) hide show
  1. package/Microsoft.EntityFrameworkCore/bindings.json +0 -500
  2. package/Microsoft.EntityFrameworkCore/internal/index.d.ts +22 -5
  3. package/Microsoft.EntityFrameworkCore.ChangeTracking/bindings.json +0 -480
  4. package/Microsoft.EntityFrameworkCore.ChangeTracking/internal/index.d.ts +16 -12
  5. package/Microsoft.EntityFrameworkCore.ChangeTracking.Internal/bindings.json +981 -2411
  6. package/Microsoft.EntityFrameworkCore.ChangeTracking.Internal/internal/index.d.ts +1 -70
  7. package/Microsoft.EntityFrameworkCore.Design/bindings.json +0 -40
  8. package/Microsoft.EntityFrameworkCore.Design/internal/index.d.ts +0 -2
  9. package/Microsoft.EntityFrameworkCore.Design.Internal/bindings.json +2 -22
  10. package/Microsoft.EntityFrameworkCore.Design.Internal/internal/index.d.ts +1 -1
  11. package/Microsoft.EntityFrameworkCore.Diagnostics.Internal/bindings.json +0 -528
  12. package/Microsoft.EntityFrameworkCore.Diagnostics.Internal/internal/index.d.ts +14 -18
  13. package/Microsoft.EntityFrameworkCore.Infrastructure/bindings.json +900 -1800
  14. package/Microsoft.EntityFrameworkCore.Infrastructure/internal/index.d.ts +6 -46
  15. package/Microsoft.EntityFrameworkCore.Internal/bindings.json +0 -260
  16. package/Microsoft.EntityFrameworkCore.Internal/internal/index.d.ts +0 -13
  17. package/Microsoft.EntityFrameworkCore.Metadata/bindings.json +9011 -16771
  18. package/Microsoft.EntityFrameworkCore.Metadata/internal/index.d.ts +1 -376
  19. package/Microsoft.EntityFrameworkCore.Metadata.Builders/bindings.json +7901 -14241
  20. package/Microsoft.EntityFrameworkCore.Metadata.Builders/internal/index.d.ts +361 -47
  21. package/Microsoft.EntityFrameworkCore.Metadata.Conventions/bindings.json +350 -2250
  22. package/Microsoft.EntityFrameworkCore.Metadata.Conventions/internal/index.d.ts +51 -91
  23. package/Microsoft.EntityFrameworkCore.Metadata.Internal/bindings.json +44938 -86844
  24. package/Microsoft.EntityFrameworkCore.Metadata.Internal/internal/index.d.ts +17 -2067
  25. package/Microsoft.EntityFrameworkCore.Migrations.Operations/bindings.json +5234 -20354
  26. package/Microsoft.EntityFrameworkCore.Migrations.Operations/internal/index.d.ts +1 -757
  27. package/Microsoft.EntityFrameworkCore.Migrations.Operations.Builders/bindings.json +0 -40
  28. package/Microsoft.EntityFrameworkCore.Migrations.Operations.Builders/internal/index.d.ts +2 -0
  29. package/Microsoft.EntityFrameworkCore.Query/bindings.json +3 -183
  30. package/Microsoft.EntityFrameworkCore.Query/internal/index.d.ts +3 -4
  31. package/Microsoft.EntityFrameworkCore.Query.Internal/bindings.json +0 -160
  32. package/Microsoft.EntityFrameworkCore.Query.Internal/internal/index.d.ts +2 -3
  33. package/Microsoft.EntityFrameworkCore.Query.SqlExpressions/bindings.json +14 -794
  34. package/Microsoft.EntityFrameworkCore.Query.SqlExpressions/internal/index.d.ts +26 -9
  35. package/Microsoft.EntityFrameworkCore.Scaffolding.Metadata/bindings.json +1610 -5810
  36. package/Microsoft.EntityFrameworkCore.Scaffolding.Metadata/internal/index.d.ts +1 -211
  37. package/Microsoft.EntityFrameworkCore.Storage/bindings.json +129 -309
  38. package/Microsoft.EntityFrameworkCore.Storage/internal/index.d.ts +2 -6
  39. package/Microsoft.EntityFrameworkCore.Storage.Internal/bindings.json +12 -52
  40. package/Microsoft.EntityFrameworkCore.Storage.Internal/internal/index.d.ts +1 -3
  41. package/Microsoft.EntityFrameworkCore.Storage.Json/bindings.json +26 -1406
  42. package/Microsoft.EntityFrameworkCore.Storage.Json/internal/index.d.ts +10 -0
  43. package/Microsoft.EntityFrameworkCore.Storage.ValueConversion.Internal/internal/index.d.ts +1 -1
  44. package/Microsoft.EntityFrameworkCore.Update/bindings.json +0 -86
  45. package/Microsoft.EntityFrameworkCore.Update/internal/index.d.ts +0 -4
  46. package/Microsoft.EntityFrameworkCore.Update.Internal/bindings.json +0 -512
  47. package/Microsoft.EntityFrameworkCore.Update.Internal/internal/index.d.ts +0 -18
  48. package/Microsoft.EntityFrameworkCore.ValueGeneration/bindings.json +6 -272
  49. package/Microsoft.EntityFrameworkCore.ValueGeneration/internal/index.d.ts +10 -13
  50. package/Microsoft.EntityFrameworkCore.ValueGeneration.Internal/bindings.json +0 -660
  51. package/Microsoft.EntityFrameworkCore.ValueGeneration.Internal/internal/index.d.ts +32 -33
  52. package/README.md +119 -2
  53. package/package.json +4 -4
@@ -989,36 +989,9 @@ export interface CheckConstraint$instance extends ConventionAnnotatable {
989
989
  get Name(): string | undefined;
990
990
  set Name(value: string | undefined);
991
991
  readonly Sql: string;
992
- AddAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation;
993
- AddAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotation;
994
- AddAnnotation(name: string, value: unknown): IAnnotation;
995
- AddAnnotation(name: string, value: unknown): Annotation;
996
- AddAnnotation(name: string, annotation: Annotation): Annotation;
997
- AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
998
- AddAnnotations(annotations: IEnumerable_1<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
999
- AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
1000
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
1001
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
1002
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
1003
- AnnotationsToDebugString(indent?: int): string;
1004
- FindAnnotation(name: string): ConventionAnnotation | undefined;
1005
- FindAnnotation(name: string): IConventionAnnotation | undefined;
1006
- FindAnnotation(name: string): IAnnotation | undefined;
1007
- FindAnnotation(name: string): Annotation | undefined;
1008
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
1009
- FindRuntimeAnnotation(name: string): Annotation | undefined;
1010
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
1011
- GetAnnotations(): IEnumerable_1<ConventionAnnotation>;
1012
992
  GetConfigurationSource(): ConfigurationSource;
1013
993
  GetName(storeObject: StoreObjectIdentifier): string | undefined;
1014
994
  GetNameConfigurationSource(): Nullable_1<ConfigurationSource>;
1015
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
1016
- GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
1017
- RemoveAnnotation(name: string): IAnnotation | undefined;
1018
- RemoveAnnotation(name: string): Annotation | undefined;
1019
- SetAnnotation(name: string, value: unknown): void;
1020
- SetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation | undefined;
1021
- SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
1022
995
  SetName(name: string, configurationSource: ConfigurationSource): string | undefined;
1023
996
  SetRemovedFromModel(): void;
1024
997
  ToString(): string;
@@ -1283,29 +1256,6 @@ export interface Column$instance extends ColumnBase_1$instance<ColumnMapping> {
1283
1256
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
1284
1257
 
1285
1258
  Accessors: ColumnAccessors;
1286
- AddAnnotation(name: string, value: unknown): IAnnotation;
1287
- AddAnnotation(name: string, value: unknown): Annotation;
1288
- AddAnnotation(name: string, annotation: Annotation): Annotation;
1289
- AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
1290
- AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
1291
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
1292
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
1293
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
1294
- AnnotationsToDebugString(indent?: int): string;
1295
- FindAnnotation(name: string): IAnnotation | undefined;
1296
- FindAnnotation(name: string): Annotation | undefined;
1297
- FindColumnMapping(entityType: IReadOnlyEntityType): IColumnMappingBase | undefined;
1298
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
1299
- FindRuntimeAnnotation(name: string): Annotation | undefined;
1300
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
1301
- GetAnnotations(): IEnumerable_1<IAnnotation>;
1302
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
1303
- GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
1304
- RemoveAnnotation(name: string): IAnnotation | undefined;
1305
- RemoveAnnotation(name: string): Annotation | undefined;
1306
- SetAnnotation(name: string, value: unknown): void;
1307
- SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
1308
- ToDebugString(options?: MetadataDebugStringOptions, indent?: int): string;
1309
1259
  ToString(): string;
1310
1260
  }
1311
1261
 
@@ -1342,30 +1292,9 @@ export interface ColumnBase_1$instance<TColumnMappingBase extends IColumnMapping
1342
1292
  readonly StoreType: string;
1343
1293
  readonly StoreTypeMapping: RelationalTypeMapping;
1344
1294
  readonly Table: Table | TableBase;
1345
- AddAnnotation(name: string, value: unknown): IAnnotation;
1346
- AddAnnotation(name: string, value: unknown): Annotation;
1347
- AddAnnotation(name: string, annotation: Annotation): Annotation;
1348
- AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
1349
- AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
1350
1295
  AddPropertyMapping(columnMapping: TColumnMappingBase): boolean;
1351
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
1352
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
1353
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
1354
- AnnotationsToDebugString(indent?: int): string;
1355
- FindAnnotation(name: string): IAnnotation | undefined;
1356
- FindAnnotation(name: string): Annotation | undefined;
1357
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
1358
- FindRuntimeAnnotation(name: string): Annotation | undefined;
1359
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
1360
- GetAnnotations(): IEnumerable_1<IAnnotation>;
1361
1296
  GetDefaultStoreTypeMapping(): RelationalTypeMapping;
1362
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
1363
- GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
1364
- RemoveAnnotation(name: string): IAnnotation | undefined;
1365
- RemoveAnnotation(name: string): Annotation | undefined;
1366
1297
  RemovePropertyMapping(columnMapping: TColumnMappingBase): void;
1367
- SetAnnotation(name: string, value: unknown): void;
1368
- SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
1369
1298
  ToString(): string;
1370
1299
  }
1371
1300
 
@@ -1414,28 +1343,7 @@ export interface ColumnMapping$instance extends ColumnMappingBase$instance {
1414
1343
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IColumnMappingBase: never;
1415
1344
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
1416
1345
 
1417
- AddAnnotation(name: string, value: unknown): IAnnotation;
1418
- AddAnnotation(name: string, value: unknown): Annotation;
1419
- AddAnnotation(name: string, annotation: Annotation): Annotation;
1420
- AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
1421
- AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
1422
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
1423
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
1424
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
1425
- AnnotationsToDebugString(indent?: int): string;
1426
- FindAnnotation(name: string): IAnnotation | undefined;
1427
- FindAnnotation(name: string): Annotation | undefined;
1428
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
1429
- FindRuntimeAnnotation(name: string): Annotation | undefined;
1430
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
1431
- GetAnnotations(): IEnumerable_1<IAnnotation>;
1432
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
1433
- GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
1434
1346
  GetTypeMapping(): RelationalTypeMapping;
1435
- RemoveAnnotation(name: string): IAnnotation | undefined;
1436
- RemoveAnnotation(name: string): Annotation | undefined;
1437
- SetAnnotation(name: string, value: unknown): void;
1438
- SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
1439
1347
  ToString(): string;
1440
1348
  }
1441
1349
 
@@ -1469,28 +1377,7 @@ export interface ColumnMappingBase$instance extends Annotatable {
1469
1377
  readonly Property: IProperty;
1470
1378
  readonly TableMapping: ITableMapping | ITableMappingBase;
1471
1379
  readonly TypeMapping: RelationalTypeMapping;
1472
- AddAnnotation(name: string, value: unknown): IAnnotation;
1473
- AddAnnotation(name: string, value: unknown): Annotation;
1474
- AddAnnotation(name: string, annotation: Annotation): Annotation;
1475
- AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
1476
- AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
1477
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
1478
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
1479
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
1480
- AnnotationsToDebugString(indent?: int): string;
1481
- FindAnnotation(name: string): IAnnotation | undefined;
1482
- FindAnnotation(name: string): Annotation | undefined;
1483
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
1484
- FindRuntimeAnnotation(name: string): Annotation | undefined;
1485
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
1486
- GetAnnotations(): IEnumerable_1<IAnnotation>;
1487
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
1488
- GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
1489
1380
  GetTypeMapping(): RelationalTypeMapping;
1490
- RemoveAnnotation(name: string): IAnnotation | undefined;
1491
- RemoveAnnotation(name: string): Annotation | undefined;
1492
- SetAnnotation(name: string, value: unknown): void;
1493
- SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
1494
1381
  }
1495
1382
 
1496
1383
 
@@ -1569,60 +1456,12 @@ export interface ComplexProperty$instance extends PropertyBase$instance {
1569
1456
  readonly IsCollection: boolean;
1570
1457
  readonly IsInModel: boolean;
1571
1458
  IsNullable: boolean;
1572
- AddAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotation;
1573
- AddAnnotation(name: string, value: unknown): IAnnotation;
1574
- AddAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation;
1575
- AddAnnotation(name: string, value: unknown): Annotation;
1576
- AddAnnotation(name: string, annotation: Annotation): Annotation;
1577
- AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
1578
- AddAnnotations(annotations: IEnumerable_1<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
1579
- AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
1580
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
1581
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
1582
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
1583
- AnnotationsToDebugString(indent?: int): string;
1584
- FindAnnotation(name: string): IConventionAnnotation | undefined;
1585
- FindAnnotation(name: string): IAnnotation | undefined;
1586
- FindAnnotation(name: string): ConventionAnnotation | undefined;
1587
- FindAnnotation(name: string): Annotation | undefined;
1588
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
1589
- FindRuntimeAnnotation(name: string): Annotation | undefined;
1590
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
1591
- GetAnnotations(): IEnumerable_1<IAnnotation>;
1592
- GetCollectionAccessor(): IClrCollectionAccessor | undefined;
1593
- GetConfigurationSource(): ConfigurationSource;
1594
- GetCurrentValueComparer(): IComparer_1<IUpdateEntry>;
1595
- GetFieldInfoConfigurationSource(): Nullable_1<ConfigurationSource>;
1596
- GetFieldName(): string | undefined;
1597
- GetGetter(): IClrPropertyGetter;
1598
- GetIndex(): int;
1599
- GetIndexedCollectionAccessor(): IClrIndexedCollectionAccessor;
1600
1459
  GetIsNullableConfigurationSource(): Nullable_1<ConfigurationSource>;
1601
- GetMemberInfo(forMaterialization: boolean, forSet: boolean): MemberInfo;
1602
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
1603
- GetPropertyAccessMode(): PropertyAccessMode;
1604
- GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
1605
- GetSetter(): IClrPropertySetter;
1606
- GetShadowIndex(): int;
1607
- IsShadowProperty(): boolean;
1608
1460
  OnAnnotationSet(name: string, annotation: IConventionAnnotation, oldAnnotation: IConventionAnnotation): IConventionAnnotation | undefined;
1609
1461
  OnAnnotationSet(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
1610
1462
  OnFieldInfoSet(newFieldInfo: FieldInfo, oldFieldInfo: FieldInfo): FieldInfo | undefined;
1611
1463
  OnPropertyNullableChanged(): Nullable_1<System_Internal.Boolean>;
1612
- RemoveAnnotation(name: string): IAnnotation | undefined;
1613
- RemoveAnnotation(name: string): Annotation | undefined;
1614
- SetAnnotation(name: string, value: unknown): void;
1615
- SetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation | undefined;
1616
- SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
1617
- SetField(fieldName: string, configurationSource: ConfigurationSource): FieldInfo | undefined;
1618
- SetField(fieldName: string): void;
1619
- SetField(fieldName: string, fromDataAnnotation?: boolean): FieldInfo | undefined;
1620
- SetFieldInfo(fieldInfo: FieldInfo, configurationSource: ConfigurationSource): FieldInfo | undefined;
1621
- SetFieldInfo(fieldInfo: FieldInfo, fromDataAnnotation?: boolean): FieldInfo | undefined;
1622
1464
  SetIsNullable(nullable: Nullable_1<System_Internal.Boolean>, configurationSource: ConfigurationSource): Nullable_1<System_Internal.Boolean>;
1623
- SetPropertyAccessMode(propertyAccessMode: Nullable_1<PropertyAccessMode>, configurationSource: ConfigurationSource): Nullable_1<PropertyAccessMode>;
1624
- SetPropertyAccessMode(propertyAccessMode: Nullable_1<PropertyAccessMode>): void;
1625
- SetPropertyAccessMode(propertyAccessMode: Nullable_1<PropertyAccessMode>, fromDataAnnotation?: boolean): Nullable_1<PropertyAccessMode>;
1626
1465
  SetRemovedFromModel(): void;
1627
1466
  ToString(): string;
1628
1467
  }
@@ -1659,19 +1498,7 @@ export interface ComplexPropertyConfiguration$instance extends AnnotatableBase {
1659
1498
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
1660
1499
 
1661
1500
  readonly ClrType: Type;
1662
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
1663
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
1664
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
1665
- AnnotationsToDebugString(indent?: int): string;
1666
1501
  Apply(property: IMutableComplexProperty): void;
1667
- FindAnnotation(name: string): Annotation | undefined;
1668
- FindAnnotation(name: string): IAnnotation | undefined;
1669
- FindRuntimeAnnotation(name: string): Annotation | undefined;
1670
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
1671
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
1672
- GetAnnotations(): IEnumerable_1<Annotation>;
1673
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
1674
- GetRuntimeAnnotations(): IEnumerable_1<Annotation>;
1675
1502
  }
1676
1503
 
1677
1504
 
@@ -1725,136 +1552,25 @@ export interface ComplexType$instance extends TypeBase$instance {
1725
1552
  readonly ComplexProperty: ComplexProperty;
1726
1553
  readonly DebugView: DebugView;
1727
1554
  readonly IsInModel: boolean;
1728
- AddAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotation;
1729
- AddAnnotation(name: string, value: unknown): IAnnotation;
1730
- AddAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation;
1731
- AddAnnotation(name: string, value: unknown): Annotation;
1732
- AddAnnotation(name: string, annotation: Annotation): Annotation;
1733
- AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
1734
- AddAnnotations(annotations: IEnumerable_1<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
1735
- AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
1736
- AddComplexProperty(name: string, propertyType: Type, targetType: Type, collection: boolean, configurationSource: ConfigurationSource): ComplexProperty | undefined;
1737
- AddComplexProperty(memberInfo: MemberInfo, collection: boolean, configurationSource: ConfigurationSource): ComplexProperty | undefined;
1738
- AddComplexProperty(name: string, collection: boolean, configurationSource: ConfigurationSource): ComplexProperty | undefined;
1739
- AddComplexProperty(name: string, propertyType: Type, memberInfo: MemberInfo, complexTypeName: string, targetType: Type, collection: boolean, configurationSource: ConfigurationSource): ComplexProperty | undefined;
1740
- AddComplexProperty(memberInfo: MemberInfo, complexTypeName?: string, collection?: boolean): IMutableComplexProperty;
1741
- AddComplexProperty(name: string, collection?: boolean): IMutableComplexProperty;
1742
- AddComplexProperty(name: string, propertyType: Type, complexType: Type, complexTypeName?: string, collection?: boolean): IMutableComplexProperty;
1743
- AddComplexProperty(name: string, propertyType: Type, memberInfo: MemberInfo, complexType: Type, complexTypeName?: string, collection?: boolean): IMutableComplexProperty;
1744
- AddComplexProperty(memberInfo: MemberInfo, complexTypeName?: string, collection?: boolean, fromDataAnnotation?: boolean): IConventionComplexProperty | undefined;
1745
- AddComplexProperty(name: string, collection?: boolean, fromDataAnnotation?: boolean): IConventionComplexProperty | undefined;
1746
- AddComplexProperty(name: string, propertyType: Type, complexType: Type, complexTypeName?: string, collection?: boolean, fromDataAnnotation?: boolean): IConventionComplexProperty | undefined;
1747
- AddComplexProperty(name: string, propertyType: Type, memberInfo: MemberInfo, complexType: Type, complexTypeName?: string, collection?: boolean, fromDataAnnotation?: boolean): IConventionComplexProperty | undefined;
1748
- AddIgnored(name: string, configurationSource: ConfigurationSource): string | undefined;
1749
- AddIgnored(memberName: string): string | undefined;
1750
- AddIgnored(memberName: string, fromDataAnnotation?: boolean): string | undefined;
1751
- AddProperty(name: string, propertyType: Type, typeConfigurationSource: Nullable_1<ConfigurationSource>, configurationSource: ConfigurationSource): Property | undefined;
1752
- AddProperty(memberInfo: MemberInfo, configurationSource: ConfigurationSource): Property | undefined;
1753
- AddProperty(name: string, configurationSource: ConfigurationSource): Property | undefined;
1754
- AddProperty(name: string, propertyType: Type, memberInfo: MemberInfo, typeConfigurationSource: Nullable_1<ConfigurationSource>, configurationSource: ConfigurationSource): Property | undefined;
1755
- AddProperty(memberInfo: MemberInfo): IMutableProperty;
1756
- AddProperty(name: string): IMutableProperty;
1757
- AddProperty(name: string, propertyType: Type): IMutableProperty;
1758
- AddProperty(name: string, propertyType: Type, memberInfo: MemberInfo): IMutableProperty;
1759
- AddProperty(memberInfo: MemberInfo, fromDataAnnotation?: boolean): IConventionProperty | undefined;
1760
- AddProperty(name: string, fromDataAnnotation?: boolean): IConventionProperty | undefined;
1761
- AddProperty(name: string, propertyType: Type, setTypeConfigurationSource?: boolean, fromDataAnnotation?: boolean): IConventionProperty | undefined;
1762
- AddProperty(name: string, propertyType: Type, memberInfo: MemberInfo, setTypeConfigurationSource?: boolean, fromDataAnnotation?: boolean): IConventionProperty | undefined;
1763
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
1764
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
1765
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
1766
- AnnotationsToDebugString(indent?: int): string;
1767
1555
  CalculateCounts(): PropertyCounts;
1768
- DisplayName(): string;
1769
- DisplayName(omitSharedType: boolean): string;
1770
- FindAnnotation(name: string): IConventionAnnotation | undefined;
1771
- FindAnnotation(name: string): IAnnotation | undefined;
1772
- FindAnnotation(name: string): ConventionAnnotation | undefined;
1773
- FindAnnotation(name: string): Annotation | undefined;
1774
- FindComplexProperty(name: string): ComplexProperty | undefined;
1775
- FindComplexProperty(memberInfo: MemberInfo): IMutableComplexProperty | undefined;
1776
- FindComplexProperty(name: string): IMutableComplexProperty | undefined;
1777
- FindComplexProperty(name: string): IReadOnlyComplexProperty | undefined;
1778
- FindComplexProperty(memberInfo: MemberInfo): IReadOnlyComplexProperty | undefined;
1779
- FindComplexProperty(name: string): IConventionComplexProperty | undefined;
1780
- FindComplexProperty(memberInfo: MemberInfo): IConventionComplexProperty | undefined;
1781
- FindComplexProperty(name: string): IComplexProperty | undefined;
1782
- FindComplexProperty(memberInfo: MemberInfo): IComplexProperty | undefined;
1783
- FindDiscriminatorProperty(): IMutableProperty | undefined;
1784
- FindDiscriminatorProperty(): IReadOnlyProperty | undefined;
1785
- FindDiscriminatorProperty(): IConventionProperty | undefined;
1786
- FindDiscriminatorProperty(): IProperty | undefined;
1787
- FindIgnoredConfigurationSource(name: string): Nullable_1<ConfigurationSource>;
1788
- FindIndexerPropertyInfo(): PropertyInfo | undefined;
1789
1556
  FindMember(name: string): PropertyBase | undefined;
1790
- FindMember(name: string): IMutablePropertyBase | undefined;
1791
- FindMember(name: string): IReadOnlyPropertyBase | undefined;
1792
- FindMember(name: string): IConventionPropertyBase | undefined;
1793
- FindMember(name: string): IPropertyBase | undefined;
1794
1557
  FindMembersInHierarchy(name: string): IEnumerable_1<PropertyBase>;
1795
- FindProperties(propertyNames: IReadOnlyList_1<System_Internal.String>): IReadOnlyList_1<Property> | undefined;
1796
- FindProperty(name: string): Property | undefined;
1797
- FindProperty(name: string): IReadOnlyProperty | undefined;
1798
- FindProperty(memberInfo: MemberInfo): IReadOnlyProperty | undefined;
1799
- FindProperty(name: string): IConventionProperty | undefined;
1800
- FindProperty(memberInfo: MemberInfo): IConventionProperty | undefined;
1801
- FindProperty(memberInfo: MemberInfo): IProperty | undefined;
1802
- FindProperty(name: string): IProperty | undefined;
1803
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
1804
- FindRuntimeAnnotation(name: string): Annotation | undefined;
1805
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
1806
- GetAnnotations(): IEnumerable_1<IAnnotation>;
1807
1558
  GetBaseTypeConfigurationSource(): Nullable_1<ConfigurationSource>;
1808
- GetChangeTrackingStrategy(): ChangeTrackingStrategy;
1809
1559
  GetDeclaredMembers(): IEnumerable_1<PropertyBase>;
1810
- GetDerivedTypes(): IEnumerable_1<TypeBase>;
1811
1560
  GetDirectlyDerivedTypes(): IEnumerable_1<ComplexType>;
1812
- GetDiscriminatorPropertyConfigurationSource(): Nullable_1<ConfigurationSource>;
1813
- GetDiscriminatorValue(): unknown | undefined;
1814
1561
  GetMembers(): IEnumerable_1<PropertyBase>;
1815
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
1816
1562
  GetOrCreateEmptyMaterializer(source: IStructuralTypeMaterializerSource): Func_2<MaterializationContext, unknown>;
1817
1563
  GetOrCreateMaterializer(source: IStructuralTypeMaterializerSource): Func_2<MaterializationContext, unknown>;
1818
- GetPropertyAccessMode(): PropertyAccessMode;
1564
+ GetRootType(): ComplexType;
1819
1565
  GetRootType(): TypeBase;
1820
- GetRootType(): IMutableTypeBase;
1821
- GetRootType(): IReadOnlyTypeBase;
1822
- GetRootType(): IConventionTypeBase;
1823
- GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
1824
- IsAbstract(): boolean;
1566
+ IsAssignableFrom(derivedType: ComplexType): boolean;
1825
1567
  IsAssignableFrom(derivedType: TypeBase): boolean;
1826
- IsAssignableFrom(derivedType: IReadOnlyTypeBase): boolean;
1827
- IsIgnored(name: string): boolean;
1828
1568
  OnAnnotationSet(name: string, annotation: IConventionAnnotation, oldAnnotation: IConventionAnnotation): IConventionAnnotation | undefined;
1829
1569
  OnAnnotationSet(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
1830
1570
  OnTypeMemberIgnored(name: string): string | undefined;
1831
- RemoveAnnotation(name: string): IAnnotation | undefined;
1832
- RemoveAnnotation(name: string): Annotation | undefined;
1833
- RemoveComplexProperty(name: string): ComplexProperty | undefined;
1834
- RemoveComplexProperty(property: ComplexProperty): ComplexProperty | undefined;
1835
- RemoveComplexProperty(property: IReadOnlyComplexProperty): IMutableComplexProperty | undefined;
1836
- RemoveComplexProperty(property: IConventionComplexProperty): IConventionComplexProperty | undefined;
1837
- RemoveDiscriminatorValue(): void;
1838
- RemoveDiscriminatorValue(): unknown | undefined;
1839
- RemoveIgnored(name: string): string | undefined;
1840
- RemoveProperty(name: string): Property | undefined;
1841
- RemoveProperty(property: Property): Property | undefined;
1842
- RemoveProperty(property: IReadOnlyProperty): IMutableProperty | undefined;
1843
- RemoveProperty(property: IReadOnlyProperty): IConventionProperty | undefined;
1844
- SetAnnotation(name: string, value: unknown): void;
1845
- SetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation | undefined;
1846
- SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
1847
1571
  SetBaseType(newBaseType: TypeBase, configurationSource: ConfigurationSource): TypeBase | undefined;
1848
- SetBaseType(structuralType: IConventionTypeBase, fromDataAnnotation?: boolean): IConventionTypeBase | undefined;
1849
- SetChangeTrackingStrategy(changeTrackingStrategy: Nullable_1<ChangeTrackingStrategy>, configurationSource: ConfigurationSource): Nullable_1<ChangeTrackingStrategy>;
1850
- SetChangeTrackingStrategy(changeTrackingStrategy: Nullable_1<ChangeTrackingStrategy>): void;
1851
- SetChangeTrackingStrategy(changeTrackingStrategy: Nullable_1<ChangeTrackingStrategy>, fromDataAnnotation?: boolean): Nullable_1<ChangeTrackingStrategy>;
1572
+ SetBaseType(newBaseType: ComplexType, configurationSource: ConfigurationSource): ComplexType | undefined;
1852
1573
  SetCounts(value: PropertyCounts): void;
1853
- SetDiscriminatorProperty(property: Property, configurationSource: ConfigurationSource): Property | undefined;
1854
- SetDiscriminatorProperty(property: IReadOnlyProperty): void;
1855
- SetDiscriminatorProperty(property: IReadOnlyProperty, fromDataAnnotation?: boolean): IConventionProperty | undefined;
1856
- SetDiscriminatorValue(value: unknown): void;
1857
- SetDiscriminatorValue(value: unknown, fromDataAnnotation?: boolean): unknown | undefined;
1858
1574
  SetRemovedFromModel(): void;
1859
1575
  ToString(): string;
1860
1576
  }
@@ -1992,42 +1708,15 @@ export interface DbFunction$instance extends ConventionAnnotatable {
1992
1708
  set Translation(value: Func_2<IReadOnlyList_1<SqlExpression>, SqlExpression> | undefined);
1993
1709
  get TypeMapping(): RelationalTypeMapping | undefined;
1994
1710
  set TypeMapping(value: RelationalTypeMapping | undefined);
1995
- AddAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation;
1996
- AddAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotation;
1997
- AddAnnotation(name: string, value: unknown): IAnnotation;
1998
- AddAnnotation(name: string, value: unknown): Annotation;
1999
- AddAnnotation(name: string, annotation: Annotation): Annotation;
2000
- AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
2001
- AddAnnotations(annotations: IEnumerable_1<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
2002
- AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
2003
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
2004
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
2005
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
2006
- AnnotationsToDebugString(indent?: int): string;
2007
- FindAnnotation(name: string): ConventionAnnotation | undefined;
2008
- FindAnnotation(name: string): IConventionAnnotation | undefined;
2009
- FindAnnotation(name: string): IAnnotation | undefined;
2010
- FindAnnotation(name: string): Annotation | undefined;
2011
1711
  FindParameter(name: string): DbFunctionParameter | undefined;
2012
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
2013
- FindRuntimeAnnotation(name: string): Annotation | undefined;
2014
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
2015
- GetAnnotations(): IEnumerable_1<ConventionAnnotation>;
2016
1712
  GetConfigurationSource(): ConfigurationSource;
2017
1713
  GetIsBuiltInConfigurationSource(): Nullable_1<ConfigurationSource>;
2018
1714
  GetIsNullableConfigurationSource(): Nullable_1<ConfigurationSource>;
2019
1715
  GetNameConfigurationSource(): Nullable_1<ConfigurationSource>;
2020
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
2021
- GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
2022
1716
  GetSchemaConfigurationSource(): Nullable_1<ConfigurationSource>;
2023
1717
  GetStoreTypeConfigurationSource(): Nullable_1<ConfigurationSource>;
2024
1718
  GetTranslationConfigurationSource(): Nullable_1<ConfigurationSource>;
2025
1719
  GetTypeMappingConfigurationSource(): Nullable_1<ConfigurationSource>;
2026
- RemoveAnnotation(name: string): IAnnotation | undefined;
2027
- RemoveAnnotation(name: string): Annotation | undefined;
2028
- SetAnnotation(name: string, value: unknown): void;
2029
- SetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation | undefined;
2030
- SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
2031
1720
  SetIsBuiltIn(builtIn: boolean, configurationSource: ConfigurationSource): boolean;
2032
1721
  SetIsNullable(nullable: boolean, configurationSource: ConfigurationSource): boolean;
2033
1722
  SetName(name: string, configurationSource: ConfigurationSource): string | undefined;
@@ -2090,37 +1779,10 @@ export interface DbFunctionParameter$instance extends ConventionAnnotatable {
2090
1779
  StoreType: string;
2091
1780
  get TypeMapping(): RelationalTypeMapping | undefined;
2092
1781
  set TypeMapping(value: RelationalTypeMapping | undefined);
2093
- AddAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation;
2094
- AddAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotation;
2095
- AddAnnotation(name: string, value: unknown): IAnnotation;
2096
- AddAnnotation(name: string, value: unknown): Annotation;
2097
- AddAnnotation(name: string, annotation: Annotation): Annotation;
2098
- AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
2099
- AddAnnotations(annotations: IEnumerable_1<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
2100
- AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
2101
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
2102
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
2103
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
2104
- AnnotationsToDebugString(indent?: int): string;
2105
- FindAnnotation(name: string): ConventionAnnotation | undefined;
2106
- FindAnnotation(name: string): IConventionAnnotation | undefined;
2107
- FindAnnotation(name: string): IAnnotation | undefined;
2108
- FindAnnotation(name: string): Annotation | undefined;
2109
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
2110
- FindRuntimeAnnotation(name: string): Annotation | undefined;
2111
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
2112
- GetAnnotations(): IEnumerable_1<ConventionAnnotation>;
2113
1782
  GetConfigurationSource(): ConfigurationSource;
2114
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
2115
1783
  GetPropagatesNullabilityConfigurationSource(): Nullable_1<ConfigurationSource>;
2116
- GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
2117
1784
  GetStoreTypeConfigurationSource(): Nullable_1<ConfigurationSource>;
2118
1785
  GetTypeMappingConfigurationSource(): Nullable_1<ConfigurationSource>;
2119
- RemoveAnnotation(name: string): IAnnotation | undefined;
2120
- RemoveAnnotation(name: string): Annotation | undefined;
2121
- SetAnnotation(name: string, value: unknown): void;
2122
- SetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation | undefined;
2123
- SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
2124
1786
  SetPropagatesNullability(propagatesNullability: boolean, configurationSource: ConfigurationSource): boolean;
2125
1787
  SetRemovedFromModel(): void;
2126
1788
  SetStoreType(storeType: string, configurationSource: ConfigurationSource): string | undefined;
@@ -2189,28 +1851,8 @@ export interface ElementType$instance extends ConventionAnnotatable {
2189
1851
  readonly IsReadOnly: boolean;
2190
1852
  get TypeMapping(): CoreTypeMapping | undefined;
2191
1853
  set TypeMapping(value: CoreTypeMapping | undefined);
2192
- AddAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation;
2193
- AddAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotation;
2194
- AddAnnotation(name: string, value: unknown): IAnnotation;
2195
- AddAnnotation(name: string, value: unknown): Annotation;
2196
- AddAnnotation(name: string, annotation: Annotation): Annotation;
2197
- AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
2198
- AddAnnotations(annotations: IEnumerable_1<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
2199
- AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
2200
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
2201
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
2202
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
2203
- AnnotationsToDebugString(indent?: int): string;
2204
1854
  CheckValueComparer(comparer: ValueComparer): string | undefined;
2205
1855
  CheckValueConverter(converter: ValueConverter): string | undefined;
2206
- FindAnnotation(name: string): ConventionAnnotation | undefined;
2207
- FindAnnotation(name: string): IConventionAnnotation | undefined;
2208
- FindAnnotation(name: string): IAnnotation | undefined;
2209
- FindAnnotation(name: string): Annotation | undefined;
2210
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
2211
- FindRuntimeAnnotation(name: string): Annotation | undefined;
2212
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
2213
- GetAnnotations(): IEnumerable_1<ConventionAnnotation>;
2214
1856
  GetConfigurationSource(): ConfigurationSource;
2215
1857
  GetIsNullableConfigurationSource(): Nullable_1<ConfigurationSource>;
2216
1858
  GetIsUnicodeConfigurationSource(): Nullable_1<ConfigurationSource>;
@@ -2218,12 +1860,10 @@ export interface ElementType$instance extends ConventionAnnotatable {
2218
1860
  GetJsonValueReaderWriterTypeConfigurationSource(): Nullable_1<ConfigurationSource>;
2219
1861
  GetMaxLength(): Nullable_1<System_Internal.Int32>;
2220
1862
  GetMaxLengthConfigurationSource(): Nullable_1<ConfigurationSource>;
2221
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
2222
1863
  GetPrecision(): Nullable_1<System_Internal.Int32>;
2223
1864
  GetPrecisionConfigurationSource(): Nullable_1<ConfigurationSource>;
2224
1865
  GetProviderClrType(): Type | undefined;
2225
1866
  GetProviderClrTypeConfigurationSource(): Nullable_1<ConfigurationSource>;
2226
- GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
2227
1867
  GetScale(): Nullable_1<System_Internal.Int32>;
2228
1868
  GetScaleConfigurationSource(): Nullable_1<ConfigurationSource>;
2229
1869
  GetTypeMappingConfigurationSource(): Nullable_1<ConfigurationSource>;
@@ -2235,11 +1875,6 @@ export interface ElementType$instance extends ConventionAnnotatable {
2235
1875
  OnAnnotationSet(name: string, annotation: IConventionAnnotation, oldAnnotation: IConventionAnnotation): IConventionAnnotation | undefined;
2236
1876
  OnAnnotationSet(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
2237
1877
  OnElementTypeNullableChanged(): Nullable_1<System_Internal.Boolean>;
2238
- RemoveAnnotation(name: string): IAnnotation | undefined;
2239
- RemoveAnnotation(name: string): Annotation | undefined;
2240
- SetAnnotation(name: string, value: unknown): void;
2241
- SetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation | undefined;
2242
- SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
2243
1878
  SetConfigurationSource(configurationSource: ConfigurationSource): void;
2244
1879
  SetIsNullable(nullable: Nullable_1<System_Internal.Boolean>, configurationSource: ConfigurationSource): Nullable_1<System_Internal.Boolean>;
2245
1880
  SetIsUnicode(unicode: Nullable_1<System_Internal.Boolean>, configurationSource: ConfigurationSource): Nullable_1<System_Internal.Boolean>;
@@ -2304,32 +1939,9 @@ export interface EntityType$instance extends TypeBase$instance {
2304
1939
  IsKeyless: boolean;
2305
1940
  readonly Owner: EntityType | undefined;
2306
1941
  readonly RelationshipSnapshotFactory: Func_2<IInternalEntry, ISnapshot>;
2307
- AddAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotation;
2308
- AddAnnotation(name: string, value: unknown): IAnnotation;
2309
- AddAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation;
2310
- AddAnnotation(name: string, value: unknown): Annotation;
2311
- AddAnnotation(name: string, annotation: Annotation): Annotation;
2312
- AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
2313
- AddAnnotations(annotations: IEnumerable_1<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
2314
- AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
2315
- AddComplexProperty(name: string, propertyType: Type, targetType: Type, collection: boolean, configurationSource: ConfigurationSource): ComplexProperty | undefined;
2316
- AddComplexProperty(memberInfo: MemberInfo, collection: boolean, configurationSource: ConfigurationSource): ComplexProperty | undefined;
2317
- AddComplexProperty(name: string, collection: boolean, configurationSource: ConfigurationSource): ComplexProperty | undefined;
2318
- AddComplexProperty(name: string, propertyType: Type, memberInfo: MemberInfo, complexTypeName: string, targetType: Type, collection: boolean, configurationSource: ConfigurationSource): ComplexProperty | undefined;
2319
- AddComplexProperty(memberInfo: MemberInfo, complexTypeName?: string, collection?: boolean): IMutableComplexProperty;
2320
- AddComplexProperty(name: string, collection?: boolean): IMutableComplexProperty;
2321
- AddComplexProperty(name: string, propertyType: Type, complexType: Type, complexTypeName?: string, collection?: boolean): IMutableComplexProperty;
2322
- AddComplexProperty(name: string, propertyType: Type, memberInfo: MemberInfo, complexType: Type, complexTypeName?: string, collection?: boolean): IMutableComplexProperty;
2323
- AddComplexProperty(memberInfo: MemberInfo, complexTypeName?: string, collection?: boolean, fromDataAnnotation?: boolean): IConventionComplexProperty | undefined;
2324
- AddComplexProperty(name: string, collection?: boolean, fromDataAnnotation?: boolean): IConventionComplexProperty | undefined;
2325
- AddComplexProperty(name: string, propertyType: Type, complexType: Type, complexTypeName?: string, collection?: boolean, fromDataAnnotation?: boolean): IConventionComplexProperty | undefined;
2326
- AddComplexProperty(name: string, propertyType: Type, memberInfo: MemberInfo, complexType: Type, complexTypeName?: string, collection?: boolean, fromDataAnnotation?: boolean): IConventionComplexProperty | undefined;
2327
1942
  AddData(data: IEnumerable_1<unknown>): void;
2328
1943
  AddForeignKey(property: Property, principalKey: Key, principalEntityType: EntityType, componentConfigurationSource: Nullable_1<ConfigurationSource>, configurationSource: ConfigurationSource): ForeignKey | undefined;
2329
1944
  AddForeignKey(properties: IReadOnlyList_1<Property>, principalKey: Key, principalEntityType: EntityType, componentConfigurationSource: Nullable_1<ConfigurationSource>, configurationSource: ConfigurationSource): ForeignKey | undefined;
2330
- AddIgnored(name: string, configurationSource: ConfigurationSource): string | undefined;
2331
- AddIgnored(memberName: string): string | undefined;
2332
- AddIgnored(memberName: string, fromDataAnnotation?: boolean): string | undefined;
2333
1945
  AddIndex(property: Property, configurationSource: ConfigurationSource): Index | undefined;
2334
1946
  AddIndex(property: Property, name: string, configurationSource: ConfigurationSource): Index | undefined;
2335
1947
  AddIndex(properties: IReadOnlyList_1<Property>, configurationSource: ConfigurationSource): Index | undefined;
@@ -2339,42 +1951,11 @@ export interface EntityType$instance extends TypeBase$instance {
2339
1951
  AddNavigation(name: string, foreignKey: ForeignKey, pointsToPrincipal: boolean): Navigation;
2340
1952
  AddNavigation(navigationMember: MemberInfo, foreignKey: ForeignKey, pointsToPrincipal: boolean): Navigation;
2341
1953
  AddNavigation(navigationMember: MemberIdentity, foreignKey: ForeignKey, pointsToPrincipal: boolean): Navigation;
2342
- AddProperty(name: string, propertyType: Type, typeConfigurationSource: Nullable_1<ConfigurationSource>, configurationSource: ConfigurationSource): Property | undefined;
2343
- AddProperty(memberInfo: MemberInfo, configurationSource: ConfigurationSource): Property | undefined;
2344
- AddProperty(name: string, configurationSource: ConfigurationSource): Property | undefined;
2345
- AddProperty(name: string, propertyType: Type, memberInfo: MemberInfo, typeConfigurationSource: Nullable_1<ConfigurationSource>, configurationSource: ConfigurationSource): Property | undefined;
2346
- AddProperty(memberInfo: MemberInfo): IMutableProperty;
2347
- AddProperty(name: string): IMutableProperty;
2348
- AddProperty(name: string, propertyType: Type): IMutableProperty;
2349
- AddProperty(name: string, propertyType: Type, memberInfo: MemberInfo): IMutableProperty;
2350
- AddProperty(memberInfo: MemberInfo, fromDataAnnotation?: boolean): IConventionProperty | undefined;
2351
- AddProperty(name: string, fromDataAnnotation?: boolean): IConventionProperty | undefined;
2352
- AddProperty(name: string, propertyType: Type, setTypeConfigurationSource?: boolean, fromDataAnnotation?: boolean): IConventionProperty | undefined;
2353
- AddProperty(name: string, propertyType: Type, memberInfo: MemberInfo, setTypeConfigurationSource?: boolean, fromDataAnnotation?: boolean): IConventionProperty | undefined;
2354
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
2355
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
2356
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
2357
1954
  AddServiceProperty(memberInfo: MemberInfo, serviceType: Type, configurationSource: ConfigurationSource): ServiceProperty;
2358
1955
  AddSkipNavigation(name: string, navigationType: Type, memberInfo: MemberInfo, targetEntityType: EntityType, collection: boolean, onDependent: boolean, configurationSource: ConfigurationSource): SkipNavigation | undefined;
2359
1956
  AddTrigger(modelName: string, configurationSource: ConfigurationSource): Trigger | undefined;
2360
- AnnotationsToDebugString(indent?: int): string;
2361
1957
  CalculateCounts(): PropertyCounts;
2362
1958
  CheckQueryFilter(queryFilter: IQueryFilter): string | undefined;
2363
- DisplayName(): string;
2364
- DisplayName(omitSharedType: boolean): string;
2365
- FindAnnotation(name: string): IConventionAnnotation | undefined;
2366
- FindAnnotation(name: string): IAnnotation | undefined;
2367
- FindAnnotation(name: string): ConventionAnnotation | undefined;
2368
- FindAnnotation(name: string): Annotation | undefined;
2369
- FindComplexProperty(name: string): ComplexProperty | undefined;
2370
- FindComplexProperty(memberInfo: MemberInfo): IMutableComplexProperty | undefined;
2371
- FindComplexProperty(name: string): IMutableComplexProperty | undefined;
2372
- FindComplexProperty(name: string): IReadOnlyComplexProperty | undefined;
2373
- FindComplexProperty(memberInfo: MemberInfo): IReadOnlyComplexProperty | undefined;
2374
- FindComplexProperty(name: string): IConventionComplexProperty | undefined;
2375
- FindComplexProperty(memberInfo: MemberInfo): IConventionComplexProperty | undefined;
2376
- FindComplexProperty(name: string): IComplexProperty | undefined;
2377
- FindComplexProperty(memberInfo: MemberInfo): IComplexProperty | undefined;
2378
1959
  FindDeclaredForeignKey(properties: IReadOnlyList_1<IReadOnlyProperty>, principalKey: IReadOnlyKey, principalEntityType: IReadOnlyEntityType): ForeignKey | undefined;
2379
1960
  FindDeclaredForeignKeys(properties: IReadOnlyList_1<IReadOnlyProperty>): IEnumerable_1<ForeignKey>;
2380
1961
  FindDeclaredIndex(properties: IReadOnlyList_1<IReadOnlyProperty>): Index | undefined;
@@ -2395,30 +1976,20 @@ export interface EntityType$instance extends TypeBase$instance {
2395
1976
  FindDerivedServicePropertiesInclusive(propertyName: string): IEnumerable_1<ServiceProperty>;
2396
1977
  FindDerivedSkipNavigations(name: string): IEnumerable_1<SkipNavigation>;
2397
1978
  FindDerivedSkipNavigationsInclusive(name: string): IEnumerable_1<SkipNavigation>;
2398
- FindDiscriminatorProperty(): IMutableProperty | undefined;
2399
- FindDiscriminatorProperty(): IReadOnlyProperty | undefined;
2400
- FindDiscriminatorProperty(): IConventionProperty | undefined;
2401
- FindDiscriminatorProperty(): IProperty | undefined;
2402
1979
  FindForeignKey(property: IReadOnlyProperty, principalKey: IReadOnlyKey, principalEntityType: IReadOnlyEntityType): ForeignKey | undefined;
2403
1980
  FindForeignKey(properties: IReadOnlyList_1<IReadOnlyProperty>, principalKey: IReadOnlyKey, principalEntityType: IReadOnlyEntityType): ForeignKey | undefined;
2404
1981
  FindForeignKeys(property: IReadOnlyProperty): IEnumerable_1<ForeignKey>;
2405
1982
  FindForeignKeys(properties: IReadOnlyList_1<IReadOnlyProperty>): IEnumerable_1<ForeignKey>;
2406
1983
  FindForeignKeysInHierarchy(properties: IReadOnlyList_1<IReadOnlyProperty>): IEnumerable_1<ForeignKey>;
2407
1984
  FindForeignKeysInHierarchy(properties: IReadOnlyList_1<IReadOnlyProperty>, principalKey: IReadOnlyKey, principalEntityType: IReadOnlyEntityType): IEnumerable_1<ForeignKey>;
2408
- FindIgnoredConfigurationSource(name: string): Nullable_1<ConfigurationSource>;
2409
1985
  FindIndex(property: IReadOnlyProperty): Index | undefined;
2410
1986
  FindIndex(properties: IReadOnlyList_1<IReadOnlyProperty>): Index | undefined;
2411
1987
  FindIndex(name: string): Index | undefined;
2412
- FindIndexerPropertyInfo(): PropertyInfo | undefined;
2413
1988
  FindIndexesInHierarchy(properties: IReadOnlyList_1<IReadOnlyProperty>): IEnumerable_1<Index>;
2414
1989
  FindIndexesInHierarchy(name: string): IEnumerable_1<Index>;
2415
1990
  FindKey(property: IReadOnlyProperty): Key | undefined;
2416
1991
  FindKey(properties: IReadOnlyList_1<IReadOnlyProperty>): Key | undefined;
2417
1992
  FindMember(name: string): PropertyBase | undefined;
2418
- FindMember(name: string): IMutablePropertyBase | undefined;
2419
- FindMember(name: string): IReadOnlyPropertyBase | undefined;
2420
- FindMember(name: string): IConventionPropertyBase | undefined;
2421
- FindMember(name: string): IPropertyBase | undefined;
2422
1993
  FindMembersInHierarchy(name: string): IEnumerable_1<PropertyBase>;
2423
1994
  FindNavigation(name: string): Navigation | undefined;
2424
1995
  FindNavigation(memberInfo: MemberInfo): Navigation | undefined;
@@ -2426,27 +1997,13 @@ export interface EntityType$instance extends TypeBase$instance {
2426
1997
  FindOwnership(): ForeignKey | undefined;
2427
1998
  FindPrimaryKey(): Key | undefined;
2428
1999
  FindPrimaryKey(properties: IReadOnlyList_1<Property>): Key | undefined;
2429
- FindProperties(propertyNames: IReadOnlyList_1<System_Internal.String>): IReadOnlyList_1<Property> | undefined;
2430
- FindProperty(name: string): Property | undefined;
2431
- FindProperty(name: string): IReadOnlyProperty | undefined;
2432
- FindProperty(memberInfo: MemberInfo): IReadOnlyProperty | undefined;
2433
- FindProperty(name: string): IConventionProperty | undefined;
2434
- FindProperty(memberInfo: MemberInfo): IConventionProperty | undefined;
2435
- FindProperty(memberInfo: MemberInfo): IProperty | undefined;
2436
- FindProperty(name: string): IProperty | undefined;
2437
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
2438
- FindRuntimeAnnotation(name: string): Annotation | undefined;
2439
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
2440
2000
  FindServicePropertiesInHierarchy(propertyName: string): IEnumerable_1<ServiceProperty>;
2441
2001
  FindServiceProperty(name: string): ServiceProperty | undefined;
2442
2002
  FindServiceProperty(memberInfo: MemberInfo): Property | undefined;
2443
2003
  FindSkipNavigation(name: string): SkipNavigation | undefined;
2444
2004
  FindSkipNavigation(memberInfo: MemberInfo): SkipNavigation | undefined;
2445
2005
  FindSkipNavigationsInHierarchy(name: string): IEnumerable_1<SkipNavigation>;
2446
- GetAnnotations(): IEnumerable_1<IAnnotation>;
2447
2006
  GetBaseTypeConfigurationSource(): Nullable_1<ConfigurationSource>;
2448
- GetChangeTrackingStrategy(): ChangeTrackingStrategy;
2449
- GetConfigurationSource(): ConfigurationSource;
2450
2007
  GetDeclaredForeignKeys(): IEnumerable_1<ForeignKey>;
2451
2008
  GetDeclaredIndexes(): IEnumerable_1<Index>;
2452
2009
  GetDeclaredKeys(): IEnumerable_1<Key>;
@@ -2464,10 +2021,7 @@ export interface EntityType$instance extends TypeBase$instance {
2464
2021
  GetDerivedReferencingSkipNavigations(): IEnumerable_1<SkipNavigation>;
2465
2022
  GetDerivedServiceProperties(): IEnumerable_1<ServiceProperty>;
2466
2023
  GetDerivedSkipNavigations(): IEnumerable_1<SkipNavigation>;
2467
- GetDerivedTypes(): IEnumerable_1<TypeBase>;
2468
2024
  GetDirectlyDerivedTypes(): IEnumerable_1<EntityType>;
2469
- GetDiscriminatorPropertyConfigurationSource(): Nullable_1<ConfigurationSource>;
2470
- GetDiscriminatorValue(): unknown | undefined;
2471
2025
  GetForeignKeys(): IEnumerable_1<ForeignKey>;
2472
2026
  GetForeignKeysInHierarchy(): IEnumerable_1<ForeignKey>;
2473
2027
  GetIndexes(): IEnumerable_1<Index>;
@@ -2476,77 +2030,43 @@ export interface EntityType$instance extends TypeBase$instance {
2476
2030
  GetMembers(): IEnumerable_1<PropertyBase>;
2477
2031
  GetNavigationAccessMode(): PropertyAccessMode;
2478
2032
  GetNavigations(): IEnumerable_1<Navigation>;
2479
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
2480
2033
  GetOrCreateEmptyMaterializer(source: IStructuralTypeMaterializerSource): Func_2<MaterializationContext, unknown>;
2481
2034
  GetOrCreateMaterializer(source: IStructuralTypeMaterializerSource): Func_2<MaterializationContext, unknown>;
2482
2035
  GetPrimaryKeyConfigurationSource(): Nullable_1<ConfigurationSource>;
2483
- GetPropertyAccessMode(): PropertyAccessMode;
2484
2036
  GetQueryFilter(): LambdaExpression | undefined;
2485
2037
  GetQueryFilterConfigurationSource(filterKey: string): Nullable_1<ConfigurationSource>;
2486
2038
  GetQueryFilterConfigurationSource(): Nullable_1<ConfigurationSource>;
2487
2039
  GetRawSeedData(): IEnumerable_1<unknown>;
2488
2040
  GetReferencingForeignKeys(): IEnumerable_1<ForeignKey>;
2489
2041
  GetReferencingSkipNavigations(): IEnumerable_1<SkipNavigation>;
2042
+ GetRootType(): EntityType;
2490
2043
  GetRootType(): TypeBase;
2491
- GetRootType(): IMutableTypeBase;
2492
- GetRootType(): IReadOnlyTypeBase;
2493
- GetRootType(): IConventionTypeBase;
2494
- GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
2495
2044
  GetSeedData(providerValues?: boolean): IEnumerable_1<IDictionary_2<System_Internal.String, unknown | undefined>>;
2496
2045
  GetServiceProperties(): IEnumerable_1<ServiceProperty>;
2497
2046
  GetSkipNavigations(): IEnumerable_1<SkipNavigation>;
2498
2047
  GetSnapshottableMembers(): IEnumerable_1<PropertyBase>;
2499
- GetSnapshottableMembers(): IEnumerable_1<PropertyBase>;
2500
2048
  HasServiceProperties(): boolean;
2501
- IsAbstract(): boolean;
2502
- IsAssignableFrom(derivedType: TypeBase): boolean;
2503
- IsAssignableFrom(derivedType: IReadOnlyTypeBase): boolean;
2504
- IsIgnored(name: string): boolean;
2505
2049
  IsOwned(): boolean;
2506
2050
  OnAnnotationSet(name: string, annotation: IConventionAnnotation, oldAnnotation: IConventionAnnotation): IConventionAnnotation | undefined;
2507
2051
  OnAnnotationSet(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
2508
2052
  OnForeignKeyUpdated(foreignKey: ForeignKey): void;
2509
2053
  OnForeignKeyUpdating(foreignKey: ForeignKey): void;
2510
2054
  OnTypeMemberIgnored(name: string): string | undefined;
2511
- RemoveAnnotation(name: string): IAnnotation | undefined;
2512
- RemoveAnnotation(name: string): Annotation | undefined;
2513
- RemoveComplexProperty(name: string): ComplexProperty | undefined;
2514
- RemoveComplexProperty(property: ComplexProperty): ComplexProperty | undefined;
2515
- RemoveComplexProperty(property: IReadOnlyComplexProperty): IMutableComplexProperty | undefined;
2516
- RemoveComplexProperty(property: IConventionComplexProperty): IConventionComplexProperty | undefined;
2517
- RemoveDiscriminatorValue(): void;
2518
- RemoveDiscriminatorValue(): unknown | undefined;
2519
2055
  RemoveForeignKey(properties: IReadOnlyList_1<IReadOnlyProperty>, principalKey: IReadOnlyKey, principalEntityType: IReadOnlyEntityType): ForeignKey | undefined;
2520
2056
  RemoveForeignKey(foreignKey: ForeignKey): ForeignKey | undefined;
2521
- RemoveIgnored(name: string): string | undefined;
2522
2057
  RemoveIndex(properties: IReadOnlyList_1<IReadOnlyProperty>): Index | undefined;
2523
2058
  RemoveIndex(name: string): Index | undefined;
2524
2059
  RemoveIndex(index: Index): Index | undefined;
2525
2060
  RemoveKey(properties: IReadOnlyList_1<IReadOnlyProperty>): Key | undefined;
2526
2061
  RemoveKey(key: Key): Key | undefined;
2527
2062
  RemoveNavigation(name: string): Navigation | undefined;
2528
- RemoveProperty(name: string): Property | undefined;
2529
- RemoveProperty(property: Property): Property | undefined;
2530
- RemoveProperty(property: IReadOnlyProperty): IMutableProperty | undefined;
2531
- RemoveProperty(property: IReadOnlyProperty): IConventionProperty | undefined;
2532
2063
  RemoveServiceProperty(name: string): ServiceProperty | undefined;
2533
2064
  RemoveServiceProperty(property: ServiceProperty): ServiceProperty | undefined;
2534
2065
  RemoveSkipNavigation(name: string): SkipNavigation | undefined;
2535
2066
  RemoveSkipNavigation(navigation: SkipNavigation): SkipNavigation | undefined;
2536
2067
  RemoveTrigger(modelName: string): Trigger | undefined;
2537
- SetAnnotation(name: string, value: unknown): void;
2538
- SetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation | undefined;
2539
- SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
2540
2068
  SetBaseType(newBaseType: TypeBase, configurationSource: ConfigurationSource): TypeBase | undefined;
2541
- SetBaseType(structuralType: IConventionTypeBase, fromDataAnnotation?: boolean): IConventionTypeBase | undefined;
2542
- SetChangeTrackingStrategy(changeTrackingStrategy: Nullable_1<ChangeTrackingStrategy>, configurationSource: ConfigurationSource): Nullable_1<ChangeTrackingStrategy>;
2543
- SetChangeTrackingStrategy(changeTrackingStrategy: Nullable_1<ChangeTrackingStrategy>): void;
2544
- SetChangeTrackingStrategy(changeTrackingStrategy: Nullable_1<ChangeTrackingStrategy>, fromDataAnnotation?: boolean): Nullable_1<ChangeTrackingStrategy>;
2545
- SetDiscriminatorProperty(property: Property, configurationSource: ConfigurationSource): Property | undefined;
2546
- SetDiscriminatorProperty(property: IReadOnlyProperty): void;
2547
- SetDiscriminatorProperty(property: IReadOnlyProperty, fromDataAnnotation?: boolean): IConventionProperty | undefined;
2548
- SetDiscriminatorValue(value: unknown): void;
2549
- SetDiscriminatorValue(value: unknown, fromDataAnnotation?: boolean): unknown | undefined;
2069
+ SetBaseType(newBaseType: EntityType, configurationSource: ConfigurationSource): EntityType | undefined;
2550
2070
  SetIsKeyless(keyless: Nullable_1<System_Internal.Boolean>, configurationSource: ConfigurationSource): Nullable_1<System_Internal.Boolean>;
2551
2071
  SetIsOwned(value: boolean): void;
2552
2072
  SetPrimaryKey(property: Property, configurationSource: ConfigurationSource): Key | undefined;
@@ -2616,35 +2136,8 @@ export interface EntityTypeMappingFragment$instance extends ConventionAnnotatabl
2616
2136
  readonly IsReadOnly: boolean;
2617
2137
  IsTableExcludedFromMigrations: Nullable_1<System_Internal.Boolean>;
2618
2138
  readonly StoreObject: StoreObjectIdentifier;
2619
- AddAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation;
2620
- AddAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotation;
2621
- AddAnnotation(name: string, value: unknown): IAnnotation;
2622
- AddAnnotation(name: string, value: unknown): Annotation;
2623
- AddAnnotation(name: string, annotation: Annotation): Annotation;
2624
- AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
2625
- AddAnnotations(annotations: IEnumerable_1<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
2626
- AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
2627
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
2628
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
2629
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
2630
- AnnotationsToDebugString(indent?: int): string;
2631
- FindAnnotation(name: string): ConventionAnnotation | undefined;
2632
- FindAnnotation(name: string): IConventionAnnotation | undefined;
2633
- FindAnnotation(name: string): IAnnotation | undefined;
2634
- FindAnnotation(name: string): Annotation | undefined;
2635
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
2636
- FindRuntimeAnnotation(name: string): Annotation | undefined;
2637
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
2638
- GetAnnotations(): IEnumerable_1<ConventionAnnotation>;
2639
2139
  GetConfigurationSource(): ConfigurationSource;
2640
2140
  GetIsTableExcludedFromMigrationsConfigurationSource(): Nullable_1<ConfigurationSource>;
2641
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
2642
- GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
2643
- RemoveAnnotation(name: string): IAnnotation | undefined;
2644
- RemoveAnnotation(name: string): Annotation | undefined;
2645
- SetAnnotation(name: string, value: unknown): void;
2646
- SetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation | undefined;
2647
- SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
2648
2141
  SetIsTableExcludedFromMigrations(excluded: Nullable_1<System_Internal.Boolean>, configurationSource: ConfigurationSource): Nullable_1<System_Internal.Boolean>;
2649
2142
  SetRemovedFromModel(): void;
2650
2143
  ToString(): string;
@@ -2734,28 +2227,8 @@ export interface ForeignKey$instance extends ConventionAnnotatable {
2734
2227
  Properties: IReadOnlyList_1<Property>;
2735
2228
  get ReferencingSkipNavigations(): ISet_1<SkipNavigation> | undefined;
2736
2229
  set ReferencingSkipNavigations(value: ISet_1<SkipNavigation> | undefined);
2737
- AddAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation;
2738
- AddAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotation;
2739
- AddAnnotation(name: string, value: unknown): IAnnotation;
2740
- AddAnnotation(name: string, value: unknown): Annotation;
2741
- AddAnnotation(name: string, annotation: Annotation): Annotation;
2742
- AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
2743
- AddAnnotations(annotations: IEnumerable_1<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
2744
- AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
2745
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
2746
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
2747
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
2748
- AnnotationsToDebugString(indent?: int): string;
2749
- FindAnnotation(name: string): ConventionAnnotation | undefined;
2750
- FindAnnotation(name: string): IConventionAnnotation | undefined;
2751
- FindAnnotation(name: string): IAnnotation | undefined;
2752
- FindAnnotation(name: string): Annotation | undefined;
2753
2230
  FindNavigationsFromInHierarchy(entityType: EntityType): IEnumerable_1<Navigation>;
2754
2231
  FindNavigationsTo(entityType: EntityType): IEnumerable_1<Navigation>;
2755
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
2756
- FindRuntimeAnnotation(name: string): Annotation | undefined;
2757
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
2758
- GetAnnotations(): IEnumerable_1<ConventionAnnotation>;
2759
2232
  GetConfigurationSource(): ConfigurationSource;
2760
2233
  GetDeleteBehaviorConfigurationSource(): Nullable_1<ConfigurationSource>;
2761
2234
  GetDependentToPrincipalConfigurationSource(): Nullable_1<ConfigurationSource>;
@@ -2763,21 +2236,14 @@ export interface ForeignKey$instance extends ConventionAnnotatable {
2763
2236
  GetIsRequiredConfigurationSource(): Nullable_1<ConfigurationSource>;
2764
2237
  GetIsRequiredDependentConfigurationSource(): Nullable_1<ConfigurationSource>;
2765
2238
  GetIsUniqueConfigurationSource(): Nullable_1<ConfigurationSource>;
2766
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
2767
2239
  GetPrincipalEndConfigurationSource(): Nullable_1<ConfigurationSource>;
2768
2240
  GetPrincipalKeyConfigurationSource(): Nullable_1<ConfigurationSource>;
2769
2241
  GetPrincipalToDependentConfigurationSource(): Nullable_1<ConfigurationSource>;
2770
2242
  GetPropertiesConfigurationSource(): Nullable_1<ConfigurationSource>;
2771
2243
  GetReferencingSkipNavigations(): IEnumerable_1<SkipNavigation>;
2772
- GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
2773
2244
  OnAnnotationSet(name: string, annotation: IConventionAnnotation, oldAnnotation: IConventionAnnotation): IConventionAnnotation | undefined;
2774
2245
  OnAnnotationSet(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
2775
- RemoveAnnotation(name: string): IAnnotation | undefined;
2776
- RemoveAnnotation(name: string): Annotation | undefined;
2777
2246
  ResolveOtherEntityType(entityType: EntityType): EntityType;
2778
- SetAnnotation(name: string, value: unknown): void;
2779
- SetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation | undefined;
2780
- SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
2781
2247
  SetDeleteBehavior(deleteBehavior: Nullable_1<DeleteBehavior>, configurationSource: ConfigurationSource): Nullable_1<DeleteBehavior>;
2782
2248
  SetDependentToPrincipal(name: string, configurationSource: ConfigurationSource): Navigation | undefined;
2783
2249
  SetDependentToPrincipal(property: MemberInfo, configurationSource: ConfigurationSource): Navigation | undefined;
@@ -2847,28 +2313,7 @@ export interface ForeignKeyConstraint$instance extends Annotatable {
2847
2313
  readonly PrincipalTable: Table;
2848
2314
  readonly PrincipalUniqueConstraint: UniqueConstraint;
2849
2315
  readonly Table: Table;
2850
- AddAnnotation(name: string, value: unknown): IAnnotation;
2851
- AddAnnotation(name: string, value: unknown): Annotation;
2852
- AddAnnotation(name: string, annotation: Annotation): Annotation;
2853
- AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
2854
- AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
2855
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
2856
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
2857
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
2858
- AnnotationsToDebugString(indent?: int): string;
2859
- FindAnnotation(name: string): IAnnotation | undefined;
2860
- FindAnnotation(name: string): Annotation | undefined;
2861
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
2862
- FindRuntimeAnnotation(name: string): Annotation | undefined;
2863
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
2864
- GetAnnotations(): IEnumerable_1<IAnnotation>;
2865
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
2866
2316
  GetRowForeignKeyValueFactory(): IRowForeignKeyValueFactory;
2867
- GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
2868
- RemoveAnnotation(name: string): IAnnotation | undefined;
2869
- RemoveAnnotation(name: string): Annotation | undefined;
2870
- SetAnnotation(name: string, value: unknown): void;
2871
- SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
2872
2317
  SetRowForeignKeyValueFactory(factory: IRowForeignKeyValueFactory): void;
2873
2318
  ToString(): string;
2874
2319
  }
@@ -2918,29 +2363,6 @@ export interface FunctionColumn$instance extends ColumnBase_1$instance<FunctionC
2918
2363
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
2919
2364
 
2920
2365
  readonly Function: StoreFunction;
2921
- AddAnnotation(name: string, value: unknown): IAnnotation;
2922
- AddAnnotation(name: string, value: unknown): Annotation;
2923
- AddAnnotation(name: string, annotation: Annotation): Annotation;
2924
- AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
2925
- AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
2926
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
2927
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
2928
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
2929
- AnnotationsToDebugString(indent?: int): string;
2930
- FindAnnotation(name: string): IAnnotation | undefined;
2931
- FindAnnotation(name: string): Annotation | undefined;
2932
- FindColumnMapping(entityType: IReadOnlyEntityType): IColumnMappingBase | undefined;
2933
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
2934
- FindRuntimeAnnotation(name: string): Annotation | undefined;
2935
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
2936
- GetAnnotations(): IEnumerable_1<IAnnotation>;
2937
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
2938
- GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
2939
- RemoveAnnotation(name: string): IAnnotation | undefined;
2940
- RemoveAnnotation(name: string): Annotation | undefined;
2941
- SetAnnotation(name: string, value: unknown): void;
2942
- SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
2943
- ToDebugString(options?: MetadataDebugStringOptions, indent?: int): string;
2944
2366
  ToString(): string;
2945
2367
  }
2946
2368
 
@@ -2971,28 +2393,7 @@ export interface FunctionColumnMapping$instance extends ColumnMappingBase$instan
2971
2393
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
2972
2394
 
2973
2395
  readonly FunctionMapping: IFunctionMapping;
2974
- AddAnnotation(name: string, value: unknown): IAnnotation;
2975
- AddAnnotation(name: string, value: unknown): Annotation;
2976
- AddAnnotation(name: string, annotation: Annotation): Annotation;
2977
- AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
2978
- AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
2979
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
2980
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
2981
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
2982
- AnnotationsToDebugString(indent?: int): string;
2983
- FindAnnotation(name: string): IAnnotation | undefined;
2984
- FindAnnotation(name: string): Annotation | undefined;
2985
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
2986
- FindRuntimeAnnotation(name: string): Annotation | undefined;
2987
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
2988
- GetAnnotations(): IEnumerable_1<IAnnotation>;
2989
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
2990
- GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
2991
2396
  GetTypeMapping(): RelationalTypeMapping;
2992
- RemoveAnnotation(name: string): IAnnotation | undefined;
2993
- RemoveAnnotation(name: string): Annotation | undefined;
2994
- SetAnnotation(name: string, value: unknown): void;
2995
- SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
2996
2397
  ToString(): string;
2997
2398
  }
2998
2399
 
@@ -3025,28 +2426,6 @@ export interface FunctionMapping$instance extends TableMappingBase_1$instance<Fu
3025
2426
  readonly DbFunction: IDbFunction;
3026
2427
  IsDefaultFunctionMapping: boolean;
3027
2428
  readonly StoreFunction: IStoreFunction;
3028
- AddAnnotation(name: string, value: unknown): IAnnotation;
3029
- AddAnnotation(name: string, value: unknown): Annotation;
3030
- AddAnnotation(name: string, annotation: Annotation): Annotation;
3031
- AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
3032
- AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
3033
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
3034
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
3035
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
3036
- AnnotationsToDebugString(indent?: int): string;
3037
- FindAnnotation(name: string): IAnnotation | undefined;
3038
- FindAnnotation(name: string): Annotation | undefined;
3039
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
3040
- FindRuntimeAnnotation(name: string): Annotation | undefined;
3041
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
3042
- GetAnnotations(): IEnumerable_1<IAnnotation>;
3043
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
3044
- GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
3045
- RemoveAnnotation(name: string): IAnnotation | undefined;
3046
- RemoveAnnotation(name: string): Annotation | undefined;
3047
- SetAnnotation(name: string, value: unknown): void;
3048
- SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
3049
- ToDebugString(options?: MetadataDebugStringOptions, indent?: int): string;
3050
2429
  ToString(): string;
3051
2430
  }
3052
2431
 
@@ -3088,40 +2467,13 @@ export interface Index$instance extends ConventionAnnotatable {
3088
2467
  IsUnique: boolean;
3089
2468
  readonly Name: string | undefined;
3090
2469
  readonly Properties: IReadOnlyList_1<Property>;
3091
- AddAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation;
3092
- AddAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotation;
3093
- AddAnnotation(name: string, value: unknown): IAnnotation;
3094
- AddAnnotation(name: string, value: unknown): Annotation;
3095
- AddAnnotation(name: string, annotation: Annotation): Annotation;
3096
- AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
3097
- AddAnnotations(annotations: IEnumerable_1<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
3098
- AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
3099
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
3100
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
3101
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
3102
- AnnotationsToDebugString(indent?: int): string;
3103
2470
  DisplayName(): string;
3104
- FindAnnotation(name: string): ConventionAnnotation | undefined;
3105
- FindAnnotation(name: string): IConventionAnnotation | undefined;
3106
- FindAnnotation(name: string): IAnnotation | undefined;
3107
- FindAnnotation(name: string): Annotation | undefined;
3108
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
3109
- FindRuntimeAnnotation(name: string): Annotation | undefined;
3110
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
3111
- GetAnnotations(): IEnumerable_1<ConventionAnnotation>;
3112
2471
  GetConfigurationSource(): ConfigurationSource;
3113
2472
  GetIsDescendingConfigurationSource(): Nullable_1<ConfigurationSource>;
3114
2473
  GetIsUniqueConfigurationSource(): Nullable_1<ConfigurationSource>;
3115
2474
  GetNullableValueFactory<TKey>(): IDependentKeyValueFactory_1<TKey>;
3116
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
3117
- GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
3118
2475
  OnAnnotationSet(name: string, annotation: IConventionAnnotation, oldAnnotation: IConventionAnnotation): IConventionAnnotation | undefined;
3119
2476
  OnAnnotationSet(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
3120
- RemoveAnnotation(name: string): IAnnotation | undefined;
3121
- RemoveAnnotation(name: string): Annotation | undefined;
3122
- SetAnnotation(name: string, value: unknown): void;
3123
- SetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation | undefined;
3124
- SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
3125
2477
  SetIsDescending(descending: IReadOnlyList_1<System_Internal.Boolean>, configurationSource: ConfigurationSource): IReadOnlyList_1<System_Internal.Boolean> | undefined;
3126
2478
  SetIsUnique(unique: Nullable_1<System_Internal.Boolean>, configurationSource: ConfigurationSource): Nullable_1<System_Internal.Boolean>;
3127
2479
  SetRemovedFromModel(): void;
@@ -3156,16 +2508,8 @@ export interface InternalCheckConstraintBuilder$instance extends AnnotatableBuil
3156
2508
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Builders_IConventionAnnotatableBuilder: never;
3157
2509
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Builders_IConventionCheckConstraintBuilder: never;
3158
2510
 
3159
- CanRemoveAnnotation(name: string, configurationSource: ConfigurationSource): boolean;
3160
- CanRemoveAnnotation(name: string, fromDataAnnotation?: boolean): boolean;
3161
- CanSetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): boolean;
3162
- CanSetAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): boolean;
3163
2511
  CanSetName(name: string, configurationSource: ConfigurationSource): boolean;
3164
- HasAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): AnnotatableBuilder_2<CheckConstraint, IConventionModelBuilder>;
3165
- HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
3166
2512
  HasName(name: string, configurationSource: ConfigurationSource): IConventionCheckConstraintBuilder | undefined;
3167
- HasNoAnnotation(name: string, configurationSource: ConfigurationSource): AnnotatableBuilder_2<CheckConstraint, IConventionModelBuilder>;
3168
- HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
3169
2513
  }
3170
2514
 
3171
2515
 
@@ -3192,22 +2536,8 @@ export interface InternalComplexPropertyBuilder$instance extends InternalPropert
3192
2536
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Builders_IConventionPropertyBaseBuilder_1: never;
3193
2537
 
3194
2538
  readonly ComplexTypeBuilder: InternalComplexTypeBuilder;
3195
- CanRemoveAnnotation(name: string, fromDataAnnotation?: boolean): boolean;
3196
- CanRemoveAnnotation(name: string, configurationSource: ConfigurationSource): boolean;
3197
- CanSetAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): boolean;
3198
- CanSetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): boolean;
3199
- CanSetField(fieldName: string, configurationSource: Nullable_1<ConfigurationSource>): boolean;
3200
- CanSetField(fieldInfo: FieldInfo, configurationSource: Nullable_1<ConfigurationSource>): boolean;
3201
2539
  CanSetIsRequired(required: Nullable_1<System_Internal.Boolean>, configurationSource: Nullable_1<ConfigurationSource>): boolean;
3202
- CanSetPropertyAccessMode(propertyAccessMode: Nullable_1<PropertyAccessMode>, configurationSource: Nullable_1<ConfigurationSource>): boolean;
3203
- HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
3204
- HasAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): AnnotatableBuilder_2<unknown, unknown>;
3205
- HasField(fieldName: string, configurationSource: ConfigurationSource): IConventionComplexPropertyBuilder;
3206
- HasField(fieldInfo: FieldInfo, configurationSource: ConfigurationSource): IConventionComplexPropertyBuilder;
3207
- HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
3208
- HasNoAnnotation(name: string, configurationSource: ConfigurationSource): AnnotatableBuilder_2<unknown, unknown>;
3209
2540
  IsRequired(required: Nullable_1<System_Internal.Boolean>, configurationSource: ConfigurationSource): InternalComplexPropertyBuilder | undefined;
3210
- UsePropertyAccessMode(propertyAccessMode: Nullable_1<PropertyAccessMode>, configurationSource: ConfigurationSource): IConventionComplexPropertyBuilder;
3211
2541
  }
3212
2542
 
3213
2543
 
@@ -3235,73 +2565,21 @@ export interface InternalComplexTypeBuilder$instance extends InternalTypeBaseBui
3235
2565
 
3236
2566
  CanAddComplexProperty(propertyName: string, propertyType: Type, targetType: Type, collection: Nullable_1<System_Internal.Boolean>, configurationSource: ConfigurationSource, checkClrProperty?: boolean): boolean;
3237
2567
  CanAddProperty(propertyType: Type, propertyName: string, configurationSource: ConfigurationSource, checkClrProperty: boolean, skipTypeCheck: boolean): boolean;
3238
- CanHaveComplexProperty(propertyType: Type, propertyName: string, memberInfo: MemberInfo, complexType: Type, collection: Nullable_1<System_Internal.Boolean>, configurationSource: Nullable_1<ConfigurationSource>): boolean;
3239
- CanHaveComplexProperty(propertyType: Type, propertyName: string, complexType?: Type, fromDataAnnotation?: boolean): boolean;
3240
- CanHaveComplexProperty(memberInfo: MemberInfo, complexType?: Type, fromDataAnnotation?: boolean): boolean;
3241
- CanHaveProperty(propertyType: Type, propertyName: string, memberInfo: MemberInfo, typeConfigurationSource: Nullable_1<ConfigurationSource>, configurationSource: Nullable_1<ConfigurationSource>, checkClrProperty?: boolean): boolean;
3242
- CanHaveProperty(propertyType: Type, propertyName: string, fromDataAnnotation?: boolean): boolean;
3243
- CanHaveProperty(memberInfo: MemberInfo, fromDataAnnotation?: boolean): boolean;
3244
2568
  CanIgnore(name: string, configurationSource: ConfigurationSource, shouldThrow: boolean): boolean;
3245
2569
  CanIgnore(name: string, configurationSource: ConfigurationSource): boolean;
3246
- CanRemoveAnnotation(name: string, fromDataAnnotation?: boolean): boolean;
3247
- CanRemoveAnnotation(name: string, configurationSource: ConfigurationSource): boolean;
3248
- CanRemoveComplexProperty(complexProperty: ComplexProperty, configurationSource: ConfigurationSource): boolean;
3249
- CanRemoveComplexProperty(complexProperty: IConventionComplexProperty, fromDataAnnotation?: boolean): boolean;
3250
- CanRemoveDiscriminator(configurationSource: ConfigurationSource): boolean;
3251
- CanRemoveDiscriminator(fromDataAnnotation?: boolean): boolean;
3252
- CanRemoveProperty(property: Property, configurationSource: ConfigurationSource, canOverrideSameSource?: boolean): boolean;
3253
- CanRemoveProperty(property: IConventionProperty, fromDataAnnotation?: boolean): boolean;
3254
- CanSetAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): boolean;
3255
- CanSetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): boolean;
3256
2570
  CanSetBaseType(baseComplexType: ComplexType, configurationSource: ConfigurationSource): boolean;
3257
- CanSetChangeTrackingStrategy(changeTrackingStrategy: Nullable_1<ChangeTrackingStrategy>, configurationSource: ConfigurationSource): boolean;
3258
- CanSetChangeTrackingStrategy(changeTrackingStrategy: Nullable_1<ChangeTrackingStrategy>, fromDataAnnotation?: boolean): boolean;
3259
2571
  CanSetConstructorBinding(constructorBinding: InstantiationBinding, configurationSource: ConfigurationSource): boolean;
3260
- CanSetDiscriminator(name: string, type: Type, configurationSource: ConfigurationSource): boolean;
3261
- CanSetDiscriminator(type: Type, fromDataAnnotation?: boolean): boolean;
3262
- CanSetDiscriminator(name: string, type: Type, fromDataAnnotation?: boolean): boolean;
3263
2572
  CanSetServiceOnlyConstructorBinding(constructorBinding: InstantiationBinding, configurationSource: ConfigurationSource): boolean;
3264
- ComplexProperty(memberInfo: MemberInfo, complexTypeName: string, collection: Nullable_1<System_Internal.Boolean>, configurationSource: Nullable_1<ConfigurationSource>): InternalComplexPropertyBuilder | undefined;
3265
- ComplexProperty(propertyType: Type, propertyName: string, complexTypeName: string, collection: Nullable_1<System_Internal.Boolean>, configurationSource: Nullable_1<ConfigurationSource>): InternalComplexPropertyBuilder | undefined;
3266
- ComplexProperty(propertyType: Type, propertyName: string, memberInfo: MemberInfo, complexTypeName: string, complexType: Type, collection: Nullable_1<System_Internal.Boolean>, configurationSource: Nullable_1<ConfigurationSource>): InternalComplexPropertyBuilder | undefined;
3267
- ComplexProperty(propertyType: Type, propertyName: string, complexType?: Type, fromDataAnnotation?: boolean): IConventionComplexPropertyBuilder | undefined;
3268
- ComplexProperty(memberInfo: MemberInfo, complexType?: Type, fromDataAnnotation?: boolean): IConventionComplexPropertyBuilder | undefined;
3269
- GetOrCreateProperties(propertyNames: IReadOnlyList_1<System_Internal.String>, configurationSource: Nullable_1<ConfigurationSource>, referencedProperties?: IReadOnlyList_1<Property>, required?: boolean, useDefaultType?: boolean): IReadOnlyList_1<Property> | undefined;
3270
- GetOrCreateProperties(clrMembers: IEnumerable_1<MemberInfo>, configurationSource: Nullable_1<ConfigurationSource>): IReadOnlyList_1<Property> | undefined;
3271
- GetOrCreateProperties(propertyNames: IReadOnlyList_1<System_Internal.String>, fromDataAnnotation?: boolean): IReadOnlyList_1<IConventionProperty> | undefined;
3272
- GetOrCreateProperties(memberInfos: IEnumerable_1<MemberInfo>, fromDataAnnotation?: boolean): IReadOnlyList_1<IConventionProperty> | undefined;
3273
- HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
3274
- HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionTypeBaseBuilder | undefined;
3275
- HasAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): AnnotatableBuilder_2<unknown, unknown> | undefined;
3276
2573
  HasBaseType(baseComplexType: ComplexType, configurationSource: ConfigurationSource): InternalComplexTypeBuilder | undefined;
3277
- HasChangeTrackingStrategy(changeTrackingStrategy: Nullable_1<ChangeTrackingStrategy>, configurationSource: ConfigurationSource): InternalTypeBaseBuilder | undefined;
3278
- HasChangeTrackingStrategy(changeTrackingStrategy: Nullable_1<ChangeTrackingStrategy>, fromDataAnnotation?: boolean): IConventionTypeBaseBuilder | undefined;
3279
2574
  HasConstructorBinding(constructorBinding: InstantiationBinding, configurationSource: ConfigurationSource): InternalComplexTypeBuilder | undefined;
3280
2575
  HasDiscriminator(configurationSource: ConfigurationSource): ComplexTypeDiscriminatorBuilder | undefined;
3281
2576
  HasDiscriminator(name: string, type: Type, configurationSource: ConfigurationSource): ComplexTypeDiscriminatorBuilder | undefined;
3282
2577
  HasDiscriminator(memberInfo: MemberInfo, configurationSource: ConfigurationSource): ComplexTypeDiscriminatorBuilder | undefined;
3283
- HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
3284
- HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionTypeBaseBuilder | undefined;
3285
- HasNoAnnotation(name: string, configurationSource: ConfigurationSource): AnnotatableBuilder_2<unknown, unknown> | undefined;
3286
- HasNoComplexProperty(complexProperty: ComplexProperty, configurationSource: ConfigurationSource): InternalTypeBaseBuilder | undefined;
3287
- HasNoComplexProperty(complexProperty: IConventionComplexProperty, fromDataAnnotation?: boolean): IConventionTypeBaseBuilder | undefined;
2578
+ HasNoDiscriminator(configurationSource: ConfigurationSource): InternalComplexTypeBuilder | undefined;
3288
2579
  HasNoDiscriminator(fromDataAnnotation?: boolean): IConventionComplexTypeBuilder | undefined;
3289
2580
  HasNoDiscriminator(configurationSource: ConfigurationSource): InternalTypeBaseBuilder | undefined;
3290
- HasNoProperty(property: IConventionProperty, fromDataAnnotation?: boolean): IConventionTypeBaseBuilder | undefined;
3291
2581
  HasServiceOnlyConstructorBinding(constructorBinding: InstantiationBinding, configurationSource: ConfigurationSource): InternalComplexTypeBuilder | undefined;
3292
- IndexerProperty(propertyType: Type, propertyName: string, configurationSource: Nullable_1<ConfigurationSource>, skipTypeCheck?: boolean): InternalPropertyBuilder | undefined;
3293
- IndexerProperty(propertyType: Type, propertyName: string, fromDataAnnotation?: boolean): IConventionPropertyBuilder | undefined;
3294
- IsIgnored(name: string, configurationSource: Nullable_1<ConfigurationSource>): boolean;
3295
- IsIgnored(memberName: string, fromDataAnnotation?: boolean): boolean;
3296
- Property(propertyType: Type, propertyName: string, configurationSource: Nullable_1<ConfigurationSource>, skipTypeCheck?: boolean): InternalPropertyBuilder | undefined;
3297
- Property(propertyType: Type, propertyName: string, typeConfigurationSource: Nullable_1<ConfigurationSource>, configurationSource: Nullable_1<ConfigurationSource>, skipTypeCheck?: boolean): InternalPropertyBuilder | undefined;
3298
- Property(propertyName: string, configurationSource: Nullable_1<ConfigurationSource>): InternalPropertyBuilder | undefined;
3299
- Property(memberInfo: MemberInfo, configurationSource: Nullable_1<ConfigurationSource>): InternalPropertyBuilder | undefined;
3300
- Property(propertyType: Type, propertyName: string, memberInfo: MemberInfo, typeConfigurationSource: Nullable_1<ConfigurationSource>, configurationSource: Nullable_1<ConfigurationSource>, skipTypeCheck?: boolean): InternalPropertyBuilder | undefined;
3301
- Property(propertyType: Type, propertyName: string, setTypeConfigurationSource?: boolean, fromDataAnnotation?: boolean): IConventionPropertyBuilder | undefined;
3302
- Property(memberInfo: MemberInfo, fromDataAnnotation?: boolean): IConventionPropertyBuilder | undefined;
3303
- RemoveUnusedImplicitProperties(properties: IReadOnlyList_1<IConventionProperty>): InternalTypeBaseBuilder;
3304
- RemoveUnusedImplicitProperties(properties: IReadOnlyList_1<IConventionProperty>): IConventionTypeBaseBuilder;
2582
+ Ignore(name: string, configurationSource: ConfigurationSource): InternalComplexTypeBuilder | undefined;
3305
2583
  }
3306
2584
 
3307
2585
 
@@ -3325,10 +2603,6 @@ export interface InternalDbFunctionBuilder$instance extends AnnotatableBuilder_2
3325
2603
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Builders_IConventionAnnotatableBuilder: never;
3326
2604
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Builders_IConventionDbFunctionBuilder: never;
3327
2605
 
3328
- CanRemoveAnnotation(name: string, configurationSource: ConfigurationSource): boolean;
3329
- CanRemoveAnnotation(name: string, fromDataAnnotation?: boolean): boolean;
3330
- CanSetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): boolean;
3331
- CanSetAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): boolean;
3332
2606
  CanSetIsBuiltIn(builtIn: boolean, configurationSource: ConfigurationSource): boolean;
3333
2607
  CanSetIsNullable(nullable: boolean, configurationSource: ConfigurationSource): boolean;
3334
2608
  CanSetName(name: string, configurationSource: ConfigurationSource): boolean;
@@ -3336,11 +2610,7 @@ export interface InternalDbFunctionBuilder$instance extends AnnotatableBuilder_2
3336
2610
  CanSetStoreType(storeType: string, configurationSource: ConfigurationSource): boolean;
3337
2611
  CanSetTranslation(translation: Func_2<IReadOnlyList_1<SqlExpression>, SqlExpression>, configurationSource: ConfigurationSource): boolean;
3338
2612
  CanSetTypeMapping(returnTypeMapping: RelationalTypeMapping, configurationSource: ConfigurationSource): boolean;
3339
- HasAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): AnnotatableBuilder_2<DbFunction, IConventionModelBuilder>;
3340
- HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
3341
2613
  HasName(name: string, configurationSource: ConfigurationSource): IConventionDbFunctionBuilder | undefined;
3342
- HasNoAnnotation(name: string, configurationSource: ConfigurationSource): AnnotatableBuilder_2<DbFunction, IConventionModelBuilder>;
3343
- HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
3344
2614
  HasParameter(name: string, configurationSource: ConfigurationSource): InternalDbFunctionParameterBuilder;
3345
2615
  HasSchema(schema: string, configurationSource: ConfigurationSource): IConventionDbFunctionBuilder | undefined;
3346
2616
  HasStoreType(storeType: string, configurationSource: ConfigurationSource): IConventionDbFunctionBuilder | undefined;
@@ -3370,17 +2640,9 @@ export interface InternalDbFunctionParameterBuilder$instance extends Annotatable
3370
2640
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Builders_IConventionAnnotatableBuilder: never;
3371
2641
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Builders_IConventionDbFunctionParameterBuilder: never;
3372
2642
 
3373
- CanRemoveAnnotation(name: string, configurationSource: ConfigurationSource): boolean;
3374
- CanRemoveAnnotation(name: string, fromDataAnnotation?: boolean): boolean;
3375
- CanSetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): boolean;
3376
- CanSetAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): boolean;
3377
2643
  CanSetPropagatesNullability(propagatesNullability: boolean, configurationSource: ConfigurationSource): boolean;
3378
2644
  CanSetStoreType(storeType: string, configurationSource: ConfigurationSource): boolean;
3379
2645
  CanSetTypeMapping(typeMapping: RelationalTypeMapping, configurationSource: ConfigurationSource): boolean;
3380
- HasAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): AnnotatableBuilder_2<DbFunctionParameter, IConventionModelBuilder>;
3381
- HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
3382
- HasNoAnnotation(name: string, configurationSource: ConfigurationSource): AnnotatableBuilder_2<DbFunctionParameter, IConventionModelBuilder>;
3383
- HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
3384
2646
  HasStoreType(storeType: string, configurationSource: ConfigurationSource): IConventionDbFunctionParameterBuilder | undefined;
3385
2647
  HasTypeMapping(typeMapping: RelationalTypeMapping, configurationSource: ConfigurationSource): IConventionDbFunctionParameterBuilder | undefined;
3386
2648
  PropagatesNullability(propagatesNullability: boolean, configurationSource: ConfigurationSource): IConventionDbFunctionParameterBuilder | undefined;
@@ -3407,10 +2669,6 @@ export interface InternalElementTypeBuilder$instance extends AnnotatableBuilder_
3407
2669
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Builders_IConventionElementTypeBuilder: never;
3408
2670
 
3409
2671
  readonly This: IConventionElementTypeBuilder;
3410
- CanRemoveAnnotation(name: string, configurationSource: ConfigurationSource): boolean;
3411
- CanRemoveAnnotation(name: string, fromDataAnnotation?: boolean): boolean;
3412
- CanSetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): boolean;
3413
- CanSetAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): boolean;
3414
2672
  CanSetConversion(converter: ValueConverter, configurationSource: Nullable_1<ConfigurationSource>): boolean;
3415
2673
  CanSetConversion(providerClrType: Type, configurationSource: Nullable_1<ConfigurationSource>): boolean;
3416
2674
  CanSetConverter(converterType: Type, configurationSource: Nullable_1<ConfigurationSource>): boolean;
@@ -3422,14 +2680,10 @@ export interface InternalElementTypeBuilder$instance extends AnnotatableBuilder_
3422
2680
  CanSetTypeMapping(typeMapping: CoreTypeMapping, configurationSource: Nullable_1<ConfigurationSource>): boolean;
3423
2681
  CanSetValueComparer(comparer: ValueComparer, configurationSource: Nullable_1<ConfigurationSource>): boolean;
3424
2682
  CanSetValueComparer(comparerType: Type, configurationSource: Nullable_1<ConfigurationSource>): boolean;
3425
- HasAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): AnnotatableBuilder_2<ElementType, InternalModelBuilder>;
3426
- HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
3427
2683
  HasConversion(converter: ValueConverter, configurationSource: ConfigurationSource): InternalElementTypeBuilder | undefined;
3428
2684
  HasConversion(providerClrType: Type, configurationSource: ConfigurationSource): InternalElementTypeBuilder | undefined;
3429
2685
  HasConverter(converterType: Type, configurationSource: ConfigurationSource): InternalElementTypeBuilder | undefined;
3430
2686
  HasMaxLength(maxLength: Nullable_1<System_Internal.Int32>, configurationSource: ConfigurationSource): InternalElementTypeBuilder | undefined;
3431
- HasNoAnnotation(name: string, configurationSource: ConfigurationSource): AnnotatableBuilder_2<ElementType, InternalModelBuilder>;
3432
- HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
3433
2687
  HasPrecision(precision: Nullable_1<System_Internal.Int32>, configurationSource: ConfigurationSource): InternalElementTypeBuilder | undefined;
3434
2688
  HasScale(scale: Nullable_1<System_Internal.Int32>, configurationSource: ConfigurationSource): InternalElementTypeBuilder | undefined;
3435
2689
  HasTypeMapping(typeMapping: CoreTypeMapping, configurationSource: ConfigurationSource): InternalElementTypeBuilder | undefined;
@@ -3463,69 +2717,34 @@ export interface InternalEntityTypeBuilder$instance extends InternalTypeBaseBuil
3463
2717
  CanAddComplexProperty(propertyName: string, propertyType: Type, targetType: Type, collection: Nullable_1<System_Internal.Boolean>, configurationSource: ConfigurationSource, checkClrProperty?: boolean): boolean;
3464
2718
  CanAddNavigation(navigationName: string, type: Type, configurationSource: ConfigurationSource): boolean;
3465
2719
  CanAddProperty(propertyType: Type, propertyName: string, configurationSource: ConfigurationSource, checkClrProperty: boolean, skipTypeCheck: boolean): boolean;
3466
- CanHaveComplexProperty(propertyType: Type, propertyName: string, memberInfo: MemberInfo, complexType: Type, collection: Nullable_1<System_Internal.Boolean>, configurationSource: Nullable_1<ConfigurationSource>): boolean;
3467
- CanHaveComplexProperty(propertyType: Type, propertyName: string, complexType?: Type, fromDataAnnotation?: boolean): boolean;
3468
- CanHaveComplexProperty(memberInfo: MemberInfo, complexType?: Type, fromDataAnnotation?: boolean): boolean;
3469
2720
  CanHaveIndex(propertyNames: IReadOnlyList_1<System_Internal.String>, configurationSource: ConfigurationSource): boolean;
3470
2721
  CanHaveNavigation(navigationName: string, type: Type, configurationSource: Nullable_1<ConfigurationSource>): boolean;
3471
- CanHaveProperty(propertyType: Type, propertyName: string, memberInfo: MemberInfo, typeConfigurationSource: Nullable_1<ConfigurationSource>, configurationSource: Nullable_1<ConfigurationSource>, checkClrProperty?: boolean): boolean;
3472
- CanHaveProperty(propertyType: Type, propertyName: string, fromDataAnnotation?: boolean): boolean;
3473
- CanHaveProperty(memberInfo: MemberInfo, fromDataAnnotation?: boolean): boolean;
3474
2722
  CanHaveServiceProperty(memberInfo: MemberInfo, configurationSource: Nullable_1<ConfigurationSource>): boolean;
3475
2723
  CanHaveSkipNavigation(skipNavigationName: string, type: Type, configurationSource: Nullable_1<ConfigurationSource>): boolean;
3476
2724
  CanIgnore(name: string, configurationSource: ConfigurationSource, shouldThrow: boolean): boolean;
3477
2725
  CanIgnore(name: string, configurationSource: ConfigurationSource): boolean;
3478
- CanRemoveAnnotation(name: string, fromDataAnnotation?: boolean): boolean;
3479
- CanRemoveAnnotation(name: string, configurationSource: ConfigurationSource): boolean;
3480
- CanRemoveComplexProperty(complexProperty: ComplexProperty, configurationSource: ConfigurationSource): boolean;
3481
- CanRemoveComplexProperty(complexProperty: IConventionComplexProperty, fromDataAnnotation?: boolean): boolean;
3482
- CanRemoveDiscriminator(configurationSource: ConfigurationSource): boolean;
3483
- CanRemoveDiscriminator(fromDataAnnotation?: boolean): boolean;
3484
2726
  CanRemoveForeignKey(foreignKey: ForeignKey, configurationSource: ConfigurationSource): boolean;
3485
2727
  CanRemoveIndex(index: Index, configurationSource: ConfigurationSource): boolean;
3486
2728
  CanRemoveKey(key: Key, configurationSource: ConfigurationSource): boolean;
3487
2729
  CanRemoveKey(configurationSource: ConfigurationSource): boolean;
3488
2730
  CanRemoveNavigation(navigation: Navigation, configurationSource: ConfigurationSource): boolean;
3489
- CanRemoveProperty(property: Property, configurationSource: ConfigurationSource, canOverrideSameSource?: boolean): boolean;
3490
- CanRemoveProperty(property: IConventionProperty, fromDataAnnotation?: boolean): boolean;
3491
2731
  CanRemoveServiceProperty(serviceProperty: ServiceProperty, configurationSource: ConfigurationSource): boolean;
3492
2732
  CanRemoveSkipNavigation(skipNavigation: SkipNavigation, configurationSource: Nullable_1<ConfigurationSource>): boolean;
3493
2733
  CanRemoveSkipNavigation(skipNavigation: SkipNavigation, configurationSource: ConfigurationSource): boolean;
3494
- CanSetAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): boolean;
3495
- CanSetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): boolean;
3496
2734
  CanSetBaseType(baseEntityType: EntityType, configurationSource: ConfigurationSource): boolean;
3497
- CanSetChangeTrackingStrategy(changeTrackingStrategy: Nullable_1<ChangeTrackingStrategy>, configurationSource: ConfigurationSource): boolean;
3498
- CanSetChangeTrackingStrategy(changeTrackingStrategy: Nullable_1<ChangeTrackingStrategy>, fromDataAnnotation?: boolean): boolean;
3499
2735
  CanSetConstructorBinding(constructorBinding: InstantiationBinding, configurationSource: ConfigurationSource): boolean;
3500
- CanSetDiscriminator(name: string, type: Type, configurationSource: ConfigurationSource): boolean;
3501
- CanSetDiscriminator(type: Type, fromDataAnnotation?: boolean): boolean;
3502
- CanSetDiscriminator(name: string, type: Type, fromDataAnnotation?: boolean): boolean;
3503
2736
  CanSetIsOwned(owned: boolean, configurationSource: ConfigurationSource): boolean;
3504
2737
  CanSetPrimaryKey(propertyNames: IReadOnlyList_1<System_Internal.String>, configurationSource: ConfigurationSource): boolean;
3505
2738
  CanSetPrimaryKey(properties: IReadOnlyList_1<IConventionProperty>, configurationSource: ConfigurationSource): boolean;
3506
2739
  CanSetQueryFilter(filter: LambdaExpression, configurationSource: ConfigurationSource): boolean;
3507
2740
  CanSetQueryFilter(queryFilter: QueryFilter): boolean;
3508
2741
  CanSetServiceOnlyConstructorBinding(constructorBinding: InstantiationBinding, configurationSource: ConfigurationSource): boolean;
3509
- ComplexProperty(memberInfo: MemberInfo, complexTypeName: string, collection: Nullable_1<System_Internal.Boolean>, configurationSource: Nullable_1<ConfigurationSource>): InternalComplexPropertyBuilder | undefined;
3510
- ComplexProperty(propertyType: Type, propertyName: string, complexTypeName: string, collection: Nullable_1<System_Internal.Boolean>, configurationSource: Nullable_1<ConfigurationSource>): InternalComplexPropertyBuilder | undefined;
3511
- ComplexProperty(propertyType: Type, propertyName: string, memberInfo: MemberInfo, complexTypeName: string, complexType: Type, collection: Nullable_1<System_Internal.Boolean>, configurationSource: Nullable_1<ConfigurationSource>): InternalComplexPropertyBuilder | undefined;
3512
- ComplexProperty(propertyType: Type, propertyName: string, complexType?: Type, fromDataAnnotation?: boolean): IConventionComplexPropertyBuilder | undefined;
3513
- ComplexProperty(memberInfo: MemberInfo, complexType?: Type, fromDataAnnotation?: boolean): IConventionComplexPropertyBuilder | undefined;
3514
2742
  CreateForeignKey(principalEntityTypeBuilder: InternalEntityTypeBuilder, dependentProperties: IReadOnlyList_1<Property>, principalKey: Key, propertyBaseName: string, required: Nullable_1<System_Internal.Boolean>, configurationSource: ConfigurationSource): InternalForeignKeyBuilder | undefined;
3515
- GetOrCreateProperties(propertyNames: IReadOnlyList_1<System_Internal.String>, configurationSource: Nullable_1<ConfigurationSource>, referencedProperties?: IReadOnlyList_1<Property>, required?: boolean, useDefaultType?: boolean): IReadOnlyList_1<Property> | undefined;
3516
- GetOrCreateProperties(clrMembers: IEnumerable_1<MemberInfo>, configurationSource: Nullable_1<ConfigurationSource>): IReadOnlyList_1<Property> | undefined;
3517
- GetOrCreateProperties(propertyNames: IReadOnlyList_1<System_Internal.String>, fromDataAnnotation?: boolean): IReadOnlyList_1<IConventionProperty> | undefined;
3518
- GetOrCreateProperties(memberInfos: IEnumerable_1<MemberInfo>, fromDataAnnotation?: boolean): IReadOnlyList_1<IConventionProperty> | undefined;
3519
2743
  GetTargetEntityTypeBuilder(targetClrType: Type, navigationInfo: MemberInfo, configurationSource: Nullable_1<ConfigurationSource>, targetShouldBeOwned?: Nullable_1<System_Internal.Boolean>): InternalEntityTypeBuilder | undefined;
3520
2744
  GetTargetEntityTypeBuilder(targetEntityType: TypeIdentity, navigation: MemberIdentity, configurationSource: Nullable_1<ConfigurationSource>, targetShouldBeOwned?: Nullable_1<System_Internal.Boolean>): InternalEntityTypeBuilder | undefined;
3521
- HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
3522
- HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionTypeBaseBuilder | undefined;
3523
- HasAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): AnnotatableBuilder_2<unknown, unknown> | undefined;
3524
2745
  HasBaseType(baseEntityType: Type, configurationSource: ConfigurationSource): InternalEntityTypeBuilder | undefined;
3525
2746
  HasBaseType(baseEntityTypeName: string, configurationSource: ConfigurationSource): InternalEntityTypeBuilder | undefined;
3526
2747
  HasBaseType(baseEntityType: EntityType, configurationSource: ConfigurationSource): InternalEntityTypeBuilder | undefined;
3527
- HasChangeTrackingStrategy(changeTrackingStrategy: Nullable_1<ChangeTrackingStrategy>, configurationSource: ConfigurationSource): InternalTypeBaseBuilder | undefined;
3528
- HasChangeTrackingStrategy(changeTrackingStrategy: Nullable_1<ChangeTrackingStrategy>, fromDataAnnotation?: boolean): IConventionTypeBaseBuilder | undefined;
3529
2748
  HasConstructorBinding(constructorBinding: InstantiationBinding, configurationSource: ConfigurationSource): IConventionEntityTypeBuilder | undefined;
3530
2749
  HasData(data: IEnumerable_1<unknown>, configurationSource: ConfigurationSource): InternalEntityTypeBuilder | undefined;
3531
2750
  HasDiscriminator(configurationSource: ConfigurationSource): DiscriminatorBuilder | undefined;
@@ -3540,17 +2759,12 @@ export interface InternalEntityTypeBuilder$instance extends InternalTypeBaseBuil
3540
2759
  HasKey(propertyNames: IReadOnlyList_1<System_Internal.String>, configurationSource: ConfigurationSource): InternalKeyBuilder | undefined;
3541
2760
  HasKey(clrMembers: IReadOnlyList_1<MemberInfo>, configurationSource: ConfigurationSource): InternalKeyBuilder | undefined;
3542
2761
  HasKey(properties: IReadOnlyList_1<Property>, configurationSource: Nullable_1<ConfigurationSource>): InternalKeyBuilder | undefined;
3543
- HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
3544
- HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionTypeBaseBuilder | undefined;
3545
- HasNoAnnotation(name: string, configurationSource: ConfigurationSource): AnnotatableBuilder_2<unknown, unknown> | undefined;
3546
- HasNoComplexProperty(complexProperty: ComplexProperty, configurationSource: ConfigurationSource): InternalTypeBaseBuilder | undefined;
3547
- HasNoComplexProperty(complexProperty: IConventionComplexProperty, fromDataAnnotation?: boolean): IConventionTypeBaseBuilder | undefined;
2762
+ HasNoDiscriminator(configurationSource: ConfigurationSource): InternalEntityTypeBuilder | undefined;
3548
2763
  HasNoDiscriminator(configurationSource: ConfigurationSource): InternalTypeBaseBuilder | undefined;
3549
2764
  HasNoIndex(index: Index, configurationSource: ConfigurationSource): InternalEntityTypeBuilder | undefined;
3550
2765
  HasNoKey(key: Key, configurationSource: ConfigurationSource): InternalEntityTypeBuilder | undefined;
3551
2766
  HasNoKey(configurationSource: ConfigurationSource): InternalEntityTypeBuilder | undefined;
3552
2767
  HasNoNavigation(navigation: Navigation, configurationSource: ConfigurationSource): InternalEntityTypeBuilder | undefined;
3553
- HasNoProperty(property: IConventionProperty, fromDataAnnotation?: boolean): IConventionTypeBaseBuilder | undefined;
3554
2768
  HasNoRelationship(foreignKey: ForeignKey, configurationSource: ConfigurationSource): InternalEntityTypeBuilder | undefined;
3555
2769
  HasNoServiceProperty(serviceProperty: ServiceProperty, configurationSource: ConfigurationSource): InternalEntityTypeBuilder | undefined;
3556
2770
  HasNoSkipNavigation(skipNavigation: SkipNavigation, configurationSource: ConfigurationSource): InternalEntityTypeBuilder | undefined;
@@ -3581,26 +2795,14 @@ export interface InternalEntityTypeBuilder$instance extends InternalTypeBaseBuil
3581
2795
  HasSkipNavigation(navigation: MemberIdentity, targetEntityType: EntityType, configurationSource: Nullable_1<ConfigurationSource>, collection?: Nullable_1<System_Internal.Boolean>, onDependent?: Nullable_1<System_Internal.Boolean>): InternalSkipNavigationBuilder | undefined;
3582
2796
  HasSkipNavigation(navigation: MemberIdentity, targetEntityType: EntityType, navigationType: Type, configurationSource: Nullable_1<ConfigurationSource>, collection?: Nullable_1<System_Internal.Boolean>, onDependent?: Nullable_1<System_Internal.Boolean>): InternalSkipNavigationBuilder | undefined;
3583
2797
  HasTrigger(modelName: string, configurationSource: ConfigurationSource): InternalTriggerBuilder | undefined;
3584
- IndexerProperty(propertyType: Type, propertyName: string, configurationSource: Nullable_1<ConfigurationSource>, skipTypeCheck?: boolean): InternalPropertyBuilder | undefined;
3585
- IndexerProperty(propertyType: Type, propertyName: string, fromDataAnnotation?: boolean): IConventionPropertyBuilder | undefined;
3586
- IsIgnored(name: string, configurationSource: Nullable_1<ConfigurationSource>): boolean;
3587
- IsIgnored(memberName: string, fromDataAnnotation?: boolean): boolean;
2798
+ Ignore(name: string, configurationSource: ConfigurationSource): InternalEntityTypeBuilder | undefined;
3588
2799
  IsOwned(owned: boolean, configurationSource: ConfigurationSource, futureOwnership?: ForeignKey): InternalEntityTypeBuilder | undefined;
3589
2800
  Navigation(memberInfo: MemberInfo): IMutableNavigationBase;
3590
2801
  Navigation(navigationName: string): IMutableNavigationBase;
3591
2802
  PrimaryKey(propertyNames: IReadOnlyList_1<System_Internal.String>, configurationSource: ConfigurationSource): InternalKeyBuilder | undefined;
3592
2803
  PrimaryKey(clrMembers: IReadOnlyList_1<MemberInfo>, configurationSource: ConfigurationSource): InternalKeyBuilder | undefined;
3593
2804
  PrimaryKey(properties: IReadOnlyList_1<Property>, configurationSource: ConfigurationSource): InternalKeyBuilder | undefined;
3594
- Property(propertyType: Type, propertyName: string, configurationSource: Nullable_1<ConfigurationSource>, skipTypeCheck?: boolean): InternalPropertyBuilder | undefined;
3595
- Property(propertyType: Type, propertyName: string, typeConfigurationSource: Nullable_1<ConfigurationSource>, configurationSource: Nullable_1<ConfigurationSource>, skipTypeCheck?: boolean): InternalPropertyBuilder | undefined;
3596
- Property(propertyName: string, configurationSource: Nullable_1<ConfigurationSource>): InternalPropertyBuilder | undefined;
3597
- Property(memberInfo: MemberInfo, configurationSource: Nullable_1<ConfigurationSource>): InternalPropertyBuilder | undefined;
3598
- Property(propertyType: Type, propertyName: string, memberInfo: MemberInfo, typeConfigurationSource: Nullable_1<ConfigurationSource>, configurationSource: Nullable_1<ConfigurationSource>, skipTypeCheck?: boolean): InternalPropertyBuilder | undefined;
3599
- Property(propertyType: Type, propertyName: string, setTypeConfigurationSource?: boolean, fromDataAnnotation?: boolean): IConventionPropertyBuilder | undefined;
3600
- Property(memberInfo: MemberInfo, fromDataAnnotation?: boolean): IConventionPropertyBuilder | undefined;
3601
2805
  RemoveMembersInHierarchy(propertyName: string, configurationSource: ConfigurationSource): void;
3602
- RemoveUnusedImplicitProperties(properties: IReadOnlyList_1<IConventionProperty>): InternalTypeBaseBuilder;
3603
- RemoveUnusedImplicitProperties(properties: IReadOnlyList_1<IConventionProperty>): IConventionTypeBaseBuilder;
3604
2806
  ServiceProperty(memberInfo: MemberInfo, configurationSource: Nullable_1<ConfigurationSource>): InternalServicePropertyBuilder | undefined;
3605
2807
  ServiceProperty(serviceType: Type, memberInfo: MemberInfo, configurationSource: Nullable_1<ConfigurationSource>): InternalServicePropertyBuilder | undefined;
3606
2808
  ShouldReuniquifyTemporaryProperties(foreignKey: ForeignKey): boolean;
@@ -3636,15 +2838,7 @@ export interface InternalEntityTypeMappingFragmentBuilder$instance extends Annot
3636
2838
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Builders_IConventionEntityTypeMappingFragmentBuilder: never;
3637
2839
 
3638
2840
  CanExcludeTableFromMigrations(excludedFromMigrations: Nullable_1<System_Internal.Boolean>, configurationSource: ConfigurationSource): boolean;
3639
- CanRemoveAnnotation(name: string, configurationSource: ConfigurationSource): boolean;
3640
- CanRemoveAnnotation(name: string, fromDataAnnotation?: boolean): boolean;
3641
- CanSetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): boolean;
3642
- CanSetAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): boolean;
3643
2841
  ExcludeTableFromMigrations(excludedFromMigrations: Nullable_1<System_Internal.Boolean>, configurationSource: ConfigurationSource): InternalEntityTypeMappingFragmentBuilder | undefined;
3644
- HasAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): AnnotatableBuilder_2<EntityTypeMappingFragment, IConventionModelBuilder>;
3645
- HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
3646
- HasNoAnnotation(name: string, configurationSource: ConfigurationSource): AnnotatableBuilder_2<EntityTypeMappingFragment, IConventionModelBuilder>;
3647
- HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
3648
2842
  }
3649
2843
 
3650
2844
 
@@ -3669,10 +2863,6 @@ export interface InternalForeignKeyBuilder$instance extends AnnotatableBuilder_2
3669
2863
 
3670
2864
  Attach(entityTypeBuilder: InternalEntityTypeBuilder): InternalForeignKeyBuilder | undefined;
3671
2865
  CanInvert(newForeignKeyProperties: IReadOnlyList_1<Property>, configurationSource: Nullable_1<ConfigurationSource>): boolean;
3672
- CanRemoveAnnotation(name: string, configurationSource: ConfigurationSource): boolean;
3673
- CanRemoveAnnotation(name: string, fromDataAnnotation?: boolean): boolean;
3674
- CanSetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): boolean;
3675
- CanSetAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): boolean;
3676
2866
  CanSetDeleteBehavior(deleteBehavior: Nullable_1<DeleteBehavior>, configurationSource: Nullable_1<ConfigurationSource>): boolean;
3677
2867
  CanSetEntityTypes(principalEntityType: EntityType, dependentEntityType: EntityType, configurationSource: Nullable_1<ConfigurationSource>): boolean;
3678
2868
  CanSetEntityTypes(principalEntityType: EntityType, dependentEntityType: EntityType, configurationSource: Nullable_1<ConfigurationSource>, shouldResetToPrincipal: boolean, shouldResetToDependent: boolean): boolean;
@@ -3689,8 +2879,6 @@ export interface InternalForeignKeyBuilder$instance extends AnnotatableBuilder_2
3689
2879
  CanSetPrincipalKey(propertyNames: IReadOnlyList_1<System_Internal.String>, configurationSource: Nullable_1<ConfigurationSource>): boolean;
3690
2880
  CanSetPrincipalKey(properties: IReadOnlyList_1<Property>, configurationSource: Nullable_1<ConfigurationSource>): boolean;
3691
2881
  DependentEntityType(dependentEntityType: EntityType, configurationSource: ConfigurationSource): InternalForeignKeyBuilder | undefined;
3692
- HasAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): AnnotatableBuilder_2<ForeignKey, InternalModelBuilder>;
3693
- HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
3694
2882
  HasEntityTypes(principalEntityType: EntityType, dependentEntityType: EntityType, configurationSource: ConfigurationSource): InternalForeignKeyBuilder | undefined;
3695
2883
  HasForeignKey(properties: IReadOnlyList_1<MemberInfo>, configurationSource: ConfigurationSource): InternalForeignKeyBuilder | undefined;
3696
2884
  HasForeignKey(propertyNames: IReadOnlyList_1<System_Internal.String>, configurationSource: ConfigurationSource): InternalForeignKeyBuilder | undefined;
@@ -3705,8 +2893,6 @@ export interface InternalForeignKeyBuilder$instance extends AnnotatableBuilder_2
3705
2893
  HasNavigations(navigationToPrincipal: Nullable_1<MemberIdentity>, navigationToDependent: Nullable_1<MemberIdentity>, configurationSource: ConfigurationSource): InternalForeignKeyBuilder | undefined;
3706
2894
  HasNavigations(navigationToPrincipalName: string, navigationToDependentName: string, principalEntityType: EntityType, dependentEntityType: EntityType, configurationSource: ConfigurationSource): InternalForeignKeyBuilder | undefined;
3707
2895
  HasNavigations(navigationToPrincipal: MemberInfo, navigationToDependent: MemberInfo, principalEntityType: EntityType, dependentEntityType: EntityType, configurationSource: ConfigurationSource): InternalForeignKeyBuilder | undefined;
3708
- HasNoAnnotation(name: string, configurationSource: ConfigurationSource): AnnotatableBuilder_2<ForeignKey, InternalModelBuilder>;
3709
- HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
3710
2896
  HasPrincipalKey(members: IReadOnlyList_1<MemberInfo>, configurationSource: ConfigurationSource): InternalForeignKeyBuilder | undefined;
3711
2897
  HasPrincipalKey(propertyNames: IReadOnlyList_1<System_Internal.String>, configurationSource: ConfigurationSource): InternalForeignKeyBuilder | undefined;
3712
2898
  HasPrincipalKey(properties: IReadOnlyList_1<Property>, configurationSource: ConfigurationSource): InternalForeignKeyBuilder | undefined;
@@ -3747,16 +2933,8 @@ export interface InternalIndexBuilder$instance extends AnnotatableBuilder_2<Inde
3747
2933
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Builders_IConventionIndexBuilder: never;
3748
2934
 
3749
2935
  Attach(entityTypeBuilder: InternalEntityTypeBuilder): InternalIndexBuilder | undefined;
3750
- CanRemoveAnnotation(name: string, configurationSource: ConfigurationSource): boolean;
3751
- CanRemoveAnnotation(name: string, fromDataAnnotation?: boolean): boolean;
3752
- CanSetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): boolean;
3753
- CanSetAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): boolean;
3754
2936
  CanSetIsDescending(descending: IReadOnlyList_1<System_Internal.Boolean>, configurationSource: Nullable_1<ConfigurationSource>): boolean;
3755
2937
  CanSetIsUnique(unique: Nullable_1<System_Internal.Boolean>, configurationSource: Nullable_1<ConfigurationSource>): boolean;
3756
- HasAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): AnnotatableBuilder_2<Index, InternalModelBuilder>;
3757
- HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
3758
- HasNoAnnotation(name: string, configurationSource: ConfigurationSource): AnnotatableBuilder_2<Index, InternalModelBuilder>;
3759
- HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
3760
2938
  IsDescending(descending: IReadOnlyList_1<System_Internal.Boolean>, configurationSource: ConfigurationSource): InternalIndexBuilder | undefined;
3761
2939
  IsUnique(unique: Nullable_1<System_Internal.Boolean>, configurationSource: ConfigurationSource): InternalIndexBuilder | undefined;
3762
2940
  }
@@ -3782,14 +2960,6 @@ export interface InternalKeyBuilder$instance extends AnnotatableBuilder_2<Key, I
3782
2960
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Builders_IConventionKeyBuilder: never;
3783
2961
 
3784
2962
  Attach(entityTypeBuilder: InternalEntityTypeBuilder, primaryKeyConfigurationSource: Nullable_1<ConfigurationSource>): InternalKeyBuilder | undefined;
3785
- CanRemoveAnnotation(name: string, configurationSource: ConfigurationSource): boolean;
3786
- CanRemoveAnnotation(name: string, fromDataAnnotation?: boolean): boolean;
3787
- CanSetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): boolean;
3788
- CanSetAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): boolean;
3789
- HasAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): AnnotatableBuilder_2<Key, InternalModelBuilder>;
3790
- HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
3791
- HasNoAnnotation(name: string, configurationSource: ConfigurationSource): AnnotatableBuilder_2<Key, InternalModelBuilder>;
3792
- HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
3793
2963
  }
3794
2964
 
3795
2965
 
@@ -3816,11 +2986,7 @@ export interface InternalModelBuilder$instance extends AnnotatableBuilder_2<Mode
3816
2986
  CanHaveEntity(type: TypeIdentity, configurationSource: ConfigurationSource, shouldBeOwned: Nullable_1<System_Internal.Boolean>, shouldThrow?: boolean): boolean;
3817
2987
  CanIgnore(type: Type, configurationSource: ConfigurationSource): boolean;
3818
2988
  CanIgnore(name: string, configurationSource: ConfigurationSource): boolean;
3819
- CanRemoveAnnotation(name: string, configurationSource: ConfigurationSource): boolean;
3820
- CanRemoveAnnotation(name: string, fromDataAnnotation?: boolean): boolean;
3821
2989
  CanRemoveEntityType(entityType: EntityType, configurationSource: ConfigurationSource): boolean;
3822
- CanSetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): boolean;
3823
- CanSetAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): boolean;
3824
2990
  CanSetChangeTrackingStrategy(changeTrackingStrategy: Nullable_1<ChangeTrackingStrategy>, configurationSource: ConfigurationSource): boolean;
3825
2991
  CanSetEmbeddedDiscriminatorName(name: string, configurationSource: ConfigurationSource): boolean;
3826
2992
  CanSetPropertyAccessMode(propertyAccessMode: Nullable_1<PropertyAccessMode>, configurationSource: ConfigurationSource): boolean;
@@ -3829,12 +2995,8 @@ export interface InternalModelBuilder$instance extends AnnotatableBuilder_2<Mode
3829
2995
  Entity(type: Type, configurationSource: ConfigurationSource, shouldBeOwned?: Nullable_1<System_Internal.Boolean>): InternalEntityTypeBuilder | undefined;
3830
2996
  Entity(name: string, definingNavigationName: string, definingEntityType: EntityType, configurationSource: ConfigurationSource): InternalEntityTypeBuilder | undefined;
3831
2997
  Entity(type: Type, definingNavigationName: string, definingEntityType: EntityType, configurationSource: ConfigurationSource): InternalEntityTypeBuilder | undefined;
3832
- HasAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): AnnotatableBuilder_2<Model, InternalModelBuilder>;
3833
- HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
3834
2998
  HasChangeTrackingStrategy(changeTrackingStrategy: Nullable_1<ChangeTrackingStrategy>, configurationSource: ConfigurationSource): InternalModelBuilder | undefined;
3835
2999
  HasEmbeddedDiscriminatorName(name: string, configurationSource: ConfigurationSource): InternalModelBuilder | undefined;
3836
- HasNoAnnotation(name: string, configurationSource: ConfigurationSource): AnnotatableBuilder_2<Model, InternalModelBuilder>;
3837
- HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
3838
3000
  HasNoEntityType(entityType: EntityType, configurationSource: ConfigurationSource): InternalModelBuilder | undefined;
3839
3001
  Ignore(type: Type, configurationSource: ConfigurationSource): InternalModelBuilder | undefined;
3840
3002
  Ignore(name: string, configurationSource: ConfigurationSource): InternalModelBuilder | undefined;
@@ -3868,25 +3030,15 @@ export interface InternalNavigationBuilder$instance extends InternalPropertyBase
3868
3030
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Builders_IConventionPropertyBaseBuilder_1: never;
3869
3031
 
3870
3032
  AutoInclude(autoInclude: Nullable_1<System_Internal.Boolean>, configurationSource: ConfigurationSource): InternalNavigationBuilder | undefined;
3871
- CanRemoveAnnotation(name: string, fromDataAnnotation?: boolean): boolean;
3872
- CanRemoveAnnotation(name: string, configurationSource: ConfigurationSource): boolean;
3873
- CanSetAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): boolean;
3874
- CanSetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): boolean;
3875
3033
  CanSetAutoInclude(autoInclude: Nullable_1<System_Internal.Boolean>, configurationSource: ConfigurationSource): boolean;
3876
- CanSetField(fieldName: string, configurationSource: Nullable_1<ConfigurationSource>): boolean;
3877
- CanSetField(fieldInfo: FieldInfo, configurationSource: Nullable_1<ConfigurationSource>): boolean;
3878
3034
  CanSetIsRequired(required: Nullable_1<System_Internal.Boolean>, configurationSource: ConfigurationSource): boolean;
3879
3035
  CanSetLazyLoadingEnabled(lazyLoadingEnabled: Nullable_1<System_Internal.Boolean>, configurationSource: ConfigurationSource): boolean;
3880
- CanSetPropertyAccessMode(propertyAccessMode: Nullable_1<PropertyAccessMode>, configurationSource: Nullable_1<ConfigurationSource>): boolean;
3881
3036
  EnableLazyLoading(lazyLoadingEnabled: Nullable_1<System_Internal.Boolean>, configurationSource: ConfigurationSource): InternalNavigationBuilder | undefined;
3882
- HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
3883
- HasAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): AnnotatableBuilder_2<unknown, unknown>;
3884
3037
  HasField(fieldName: string, configurationSource: ConfigurationSource): InternalNavigationBuilder | undefined;
3885
- HasField(fieldName: string, configurationSource: ConfigurationSource): IConventionNavigationBuilder;
3038
+ HasField(fieldInfo: FieldInfo, configurationSource: ConfigurationSource): InternalNavigationBuilder | undefined;
3886
3039
  HasField(fieldInfo: FieldInfo, configurationSource: ConfigurationSource): IConventionNavigationBuilder;
3887
- HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
3888
- HasNoAnnotation(name: string, configurationSource: ConfigurationSource): AnnotatableBuilder_2<unknown, unknown>;
3889
3040
  IsRequired(required: Nullable_1<System_Internal.Boolean>, configurationSource: ConfigurationSource): InternalNavigationBuilder | undefined;
3041
+ UsePropertyAccessMode(propertyAccessMode: Nullable_1<PropertyAccessMode>, configurationSource: ConfigurationSource): InternalNavigationBuilder | undefined;
3890
3042
  UsePropertyAccessMode(propertyAccessMode: Nullable_1<PropertyAccessMode>, configurationSource: ConfigurationSource): IConventionNavigationBuilder;
3891
3043
  }
3892
3044
 
@@ -3926,19 +3078,11 @@ export interface InternalPropertyBaseBuilder_2$instance<TBuilder extends IConven
3926
3078
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Builders_IConventionAnnotatableBuilder: never;
3927
3079
 
3928
3080
  readonly This: TBuilder;
3929
- CanRemoveAnnotation(name: string, configurationSource: ConfigurationSource): boolean;
3930
- CanRemoveAnnotation(name: string, fromDataAnnotation?: boolean): boolean;
3931
- CanSetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): boolean;
3932
- CanSetAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): boolean;
3933
3081
  CanSetField(fieldName: string, configurationSource: Nullable_1<ConfigurationSource>): boolean;
3934
3082
  CanSetField(fieldInfo: FieldInfo, configurationSource: Nullable_1<ConfigurationSource>): boolean;
3935
3083
  CanSetPropertyAccessMode(propertyAccessMode: Nullable_1<PropertyAccessMode>, configurationSource: Nullable_1<ConfigurationSource>): boolean;
3936
- HasAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): AnnotatableBuilder_2<TPropertyBase, InternalModelBuilder>;
3937
- HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
3938
3084
  HasField(fieldName: string, configurationSource: ConfigurationSource): TBuilder | undefined;
3939
3085
  HasField(fieldInfo: FieldInfo, configurationSource: ConfigurationSource): TBuilder | undefined;
3940
- HasNoAnnotation(name: string, configurationSource: ConfigurationSource): AnnotatableBuilder_2<TPropertyBase, InternalModelBuilder>;
3941
- HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
3942
3086
  UsePropertyAccessMode(propertyAccessMode: Nullable_1<PropertyAccessMode>, configurationSource: ConfigurationSource): TBuilder | undefined;
3943
3087
  }
3944
3088
 
@@ -3964,24 +3108,17 @@ export interface InternalPropertyBuilder$instance extends InternalPropertyBaseBu
3964
3108
  AfterSave(behavior: Nullable_1<PropertySaveBehavior>, configurationSource: ConfigurationSource): InternalPropertyBuilder | undefined;
3965
3109
  Attach(typeBaseBuilder: InternalTypeBaseBuilder): InternalPropertyBuilder | undefined;
3966
3110
  BeforeSave(behavior: Nullable_1<PropertySaveBehavior>, configurationSource: ConfigurationSource): InternalPropertyBuilder | undefined;
3967
- CanRemoveAnnotation(name: string, fromDataAnnotation?: boolean): boolean;
3968
- CanRemoveAnnotation(name: string, configurationSource: ConfigurationSource): boolean;
3969
3111
  CanSetAfterSave(behavior: Nullable_1<PropertySaveBehavior>, configurationSource: Nullable_1<ConfigurationSource>): boolean;
3970
- CanSetAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): boolean;
3971
- CanSetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): boolean;
3972
3112
  CanSetBeforeSave(behavior: Nullable_1<PropertySaveBehavior>, configurationSource: Nullable_1<ConfigurationSource>): boolean;
3973
3113
  CanSetConversion(converter: ValueConverter, configurationSource: Nullable_1<ConfigurationSource>): boolean;
3974
3114
  CanSetConversion(providerClrType: Type, configurationSource: Nullable_1<ConfigurationSource>): boolean;
3975
3115
  CanSetConverter(converterType: Type, configurationSource: Nullable_1<ConfigurationSource>): boolean;
3976
3116
  CanSetElementType(elementType: Type, configurationSource: Nullable_1<ConfigurationSource>): boolean;
3977
- CanSetField(fieldName: string, configurationSource: Nullable_1<ConfigurationSource>): boolean;
3978
- CanSetField(fieldInfo: FieldInfo, configurationSource: Nullable_1<ConfigurationSource>): boolean;
3979
3117
  CanSetIsConcurrencyToken(concurrencyToken: Nullable_1<System_Internal.Boolean>, configurationSource: Nullable_1<ConfigurationSource>): boolean;
3980
3118
  CanSetIsRequired(required: Nullable_1<System_Internal.Boolean>, configurationSource: Nullable_1<ConfigurationSource>): boolean;
3981
3119
  CanSetIsUnicode(unicode: Nullable_1<System_Internal.Boolean>, configurationSource: Nullable_1<ConfigurationSource>): boolean;
3982
3120
  CanSetMaxLength(maxLength: Nullable_1<System_Internal.Int32>, configurationSource: Nullable_1<ConfigurationSource>): boolean;
3983
3121
  CanSetPrecision(precision: Nullable_1<System_Internal.Int32>, configurationSource: Nullable_1<ConfigurationSource>): boolean;
3984
- CanSetPropertyAccessMode(propertyAccessMode: Nullable_1<PropertyAccessMode>, configurationSource: Nullable_1<ConfigurationSource>): boolean;
3985
3122
  CanSetProviderValueComparer(comparer: ValueComparer, configurationSource: Nullable_1<ConfigurationSource>): boolean;
3986
3123
  CanSetProviderValueComparer(comparerType: Type, configurationSource: Nullable_1<ConfigurationSource>): boolean;
3987
3124
  CanSetScale(scale: Nullable_1<System_Internal.Int32>, configurationSource: Nullable_1<ConfigurationSource>): boolean;
@@ -3992,17 +3129,13 @@ export interface InternalPropertyBuilder$instance extends InternalPropertyBaseBu
3992
3129
  CanSetValueGenerated(valueGenerated: Nullable_1<ValueGenerated>, configurationSource: Nullable_1<ConfigurationSource>): boolean;
3993
3130
  CanSetValueGenerator(factory: Func_3<IProperty, IEntityType, ValueGenerator>, configurationSource: Nullable_1<ConfigurationSource>): boolean;
3994
3131
  CanSetValueGeneratorFactory(factory: Type, configurationSource: Nullable_1<ConfigurationSource>): boolean;
3995
- HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
3996
- HasAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): AnnotatableBuilder_2<unknown, unknown>;
3997
3132
  HasConversion(converter: ValueConverter, configurationSource: ConfigurationSource): InternalPropertyBuilder | undefined;
3998
3133
  HasConversion(providerClrType: Type, configurationSource: ConfigurationSource): InternalPropertyBuilder | undefined;
3999
3134
  HasConverter(converterType: Type, configurationSource: ConfigurationSource): InternalPropertyBuilder | undefined;
4000
3135
  HasField(fieldName: string, configurationSource: ConfigurationSource): InternalPropertyBuilder | undefined;
4001
- HasField(fieldName: string, configurationSource: ConfigurationSource): IConventionPropertyBuilder;
3136
+ HasField(fieldInfo: FieldInfo, configurationSource: ConfigurationSource): InternalPropertyBuilder | undefined;
4002
3137
  HasField(fieldInfo: FieldInfo, configurationSource: ConfigurationSource): IConventionPropertyBuilder;
4003
3138
  HasMaxLength(maxLength: Nullable_1<System_Internal.Int32>, configurationSource: ConfigurationSource): InternalPropertyBuilder | undefined;
4004
- HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
4005
- HasNoAnnotation(name: string, configurationSource: ConfigurationSource): AnnotatableBuilder_2<unknown, unknown>;
4006
3139
  HasPrecision(precision: Nullable_1<System_Internal.Int32>, configurationSource: ConfigurationSource): InternalPropertyBuilder | undefined;
4007
3140
  HasProviderValueComparer(comparer: ValueComparer, configurationSource: ConfigurationSource): InternalPropertyBuilder | undefined;
4008
3141
  HasProviderValueComparer(comparerType: Type, configurationSource: ConfigurationSource): InternalPropertyBuilder | undefined;
@@ -4018,6 +3151,7 @@ export interface InternalPropertyBuilder$instance extends InternalPropertyBaseBu
4018
3151
  IsRequired(required: Nullable_1<System_Internal.Boolean>, configurationSource: ConfigurationSource): InternalPropertyBuilder | undefined;
4019
3152
  IsUnicode(unicode: Nullable_1<System_Internal.Boolean>, configurationSource: ConfigurationSource): InternalPropertyBuilder | undefined;
4020
3153
  SetElementType(elementType: Type, configurationSource: ConfigurationSource): InternalElementTypeBuilder | undefined;
3154
+ UsePropertyAccessMode(propertyAccessMode: Nullable_1<PropertyAccessMode>, configurationSource: ConfigurationSource): InternalPropertyBuilder | undefined;
4021
3155
  UsePropertyAccessMode(propertyAccessMode: Nullable_1<PropertyAccessMode>, configurationSource: ConfigurationSource): IConventionPropertyBuilder;
4022
3156
  ValueGenerated(valueGenerated: Nullable_1<ValueGenerated>, configurationSource: ConfigurationSource): InternalPropertyBuilder | undefined;
4023
3157
  }
@@ -4043,16 +3177,8 @@ export interface InternalRelationalPropertyOverridesBuilder$instance extends Ann
4043
3177
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Builders_IConventionAnnotatableBuilder: never;
4044
3178
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Builders_IConventionRelationalPropertyOverridesBuilder: never;
4045
3179
 
4046
- CanRemoveAnnotation(name: string, configurationSource: ConfigurationSource): boolean;
4047
- CanRemoveAnnotation(name: string, fromDataAnnotation?: boolean): boolean;
4048
- CanSetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): boolean;
4049
- CanSetAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): boolean;
4050
3180
  CanSetColumnName(name: string, configurationSource: ConfigurationSource): boolean;
4051
- HasAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): AnnotatableBuilder_2<RelationalPropertyOverrides, IConventionModelBuilder>;
4052
- HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
4053
3181
  HasColumnName(name: string, configurationSource: ConfigurationSource): InternalRelationalPropertyOverridesBuilder | undefined;
4054
- HasNoAnnotation(name: string, configurationSource: ConfigurationSource): AnnotatableBuilder_2<RelationalPropertyOverrides, IConventionModelBuilder>;
4055
- HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
4056
3182
  }
4057
3183
 
4058
3184
 
@@ -4075,22 +3201,14 @@ export interface InternalSequenceBuilder$instance extends AnnotatableBuilder_2<S
4075
3201
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Builders_IConventionAnnotatableBuilder: never;
4076
3202
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Builders_IConventionSequenceBuilder: never;
4077
3203
 
4078
- CanRemoveAnnotation(name: string, configurationSource: ConfigurationSource): boolean;
4079
- CanRemoveAnnotation(name: string, fromDataAnnotation?: boolean): boolean;
4080
- CanSetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): boolean;
4081
- CanSetAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): boolean;
4082
3204
  CanSetIncrementsBy(increment: Nullable_1<System_Internal.Int32>, configurationSource: ConfigurationSource): boolean;
4083
3205
  CanSetIsCyclic(cyclic: Nullable_1<System_Internal.Boolean>, configurationSource: ConfigurationSource): boolean;
4084
3206
  CanSetMax(maximum: Nullable_1<System_Internal.Int64>, configurationSource: ConfigurationSource): boolean;
4085
3207
  CanSetMin(minimum: Nullable_1<System_Internal.Int64>, configurationSource: ConfigurationSource): boolean;
4086
3208
  CanSetStartsAt(startValue: Nullable_1<System_Internal.Int64>, configurationSource: ConfigurationSource): boolean;
4087
3209
  CanSetType(type: Type, configurationSource: ConfigurationSource): boolean;
4088
- HasAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): AnnotatableBuilder_2<Sequence, IConventionModelBuilder>;
4089
- HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
4090
3210
  HasMax(maximum: Nullable_1<System_Internal.Int64>, configurationSource: ConfigurationSource): IConventionSequenceBuilder | undefined;
4091
3211
  HasMin(minimum: Nullable_1<System_Internal.Int64>, configurationSource: ConfigurationSource): IConventionSequenceBuilder | undefined;
4092
- HasNoAnnotation(name: string, configurationSource: ConfigurationSource): AnnotatableBuilder_2<Sequence, IConventionModelBuilder>;
4093
- HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
4094
3212
  HasType(type: Type, configurationSource: ConfigurationSource): IConventionSequenceBuilder | undefined;
4095
3213
  IncrementsBy(increment: Nullable_1<System_Internal.Int32>, configurationSource: ConfigurationSource): IConventionSequenceBuilder | undefined;
4096
3214
  IsCyclic(cyclic: Nullable_1<System_Internal.Boolean>, configurationSource: ConfigurationSource): IConventionSequenceBuilder | undefined;
@@ -4119,22 +3237,12 @@ export interface InternalServicePropertyBuilder$instance extends InternalPropert
4119
3237
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Builders_IConventionServicePropertyBuilder: never;
4120
3238
 
4121
3239
  Attach(entityTypeBuilder: InternalEntityTypeBuilder): InternalServicePropertyBuilder | undefined;
4122
- CanRemoveAnnotation(name: string, fromDataAnnotation?: boolean): boolean;
4123
- CanRemoveAnnotation(name: string, configurationSource: ConfigurationSource): boolean;
4124
- CanSetAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): boolean;
4125
- CanSetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): boolean;
4126
- CanSetField(fieldName: string, configurationSource: Nullable_1<ConfigurationSource>): boolean;
4127
- CanSetField(fieldInfo: FieldInfo, configurationSource: Nullable_1<ConfigurationSource>): boolean;
4128
3240
  CanSetParameterBinding(parameterBinding: ServiceParameterBinding, configurationSource: Nullable_1<ConfigurationSource>): boolean;
4129
- CanSetPropertyAccessMode(propertyAccessMode: Nullable_1<PropertyAccessMode>, configurationSource: Nullable_1<ConfigurationSource>): boolean;
4130
- HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
4131
- HasAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): AnnotatableBuilder_2<unknown, unknown>;
4132
3241
  HasField(fieldName: string, configurationSource: ConfigurationSource): InternalServicePropertyBuilder | undefined;
4133
- HasField(fieldName: string, configurationSource: ConfigurationSource): IConventionServicePropertyBuilder;
3242
+ HasField(fieldInfo: FieldInfo, configurationSource: ConfigurationSource): InternalServicePropertyBuilder | undefined;
4134
3243
  HasField(fieldInfo: FieldInfo, configurationSource: ConfigurationSource): IConventionServicePropertyBuilder;
4135
- HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
4136
- HasNoAnnotation(name: string, configurationSource: ConfigurationSource): AnnotatableBuilder_2<unknown, unknown>;
4137
3244
  HasParameterBinding(parameterBinding: ServiceParameterBinding, configurationSource: ConfigurationSource): InternalServicePropertyBuilder | undefined;
3245
+ UsePropertyAccessMode(propertyAccessMode: Nullable_1<PropertyAccessMode>, configurationSource: ConfigurationSource): InternalServicePropertyBuilder | undefined;
4138
3246
  UsePropertyAccessMode(propertyAccessMode: Nullable_1<PropertyAccessMode>, configurationSource: ConfigurationSource): IConventionServicePropertyBuilder;
4139
3247
  }
4140
3248
 
@@ -4162,27 +3270,13 @@ export interface InternalSkipNavigationBuilder$instance extends InternalProperty
4162
3270
 
4163
3271
  Attach(entityTypeBuilder?: InternalEntityTypeBuilder, targetEntityType?: EntityType, inverseBuilder?: InternalSkipNavigationBuilder): InternalSkipNavigationBuilder | undefined;
4164
3272
  AutoInclude(autoInclude: Nullable_1<System_Internal.Boolean>, configurationSource: ConfigurationSource): InternalSkipNavigationBuilder | undefined;
4165
- CanRemoveAnnotation(name: string, fromDataAnnotation?: boolean): boolean;
4166
- CanRemoveAnnotation(name: string, configurationSource: ConfigurationSource): boolean;
4167
- CanSetAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): boolean;
4168
- CanSetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): boolean;
4169
3273
  CanSetAutoInclude(autoInclude: Nullable_1<System_Internal.Boolean>, configurationSource: ConfigurationSource): boolean;
4170
- CanSetField(fieldName: string, configurationSource: Nullable_1<ConfigurationSource>): boolean;
4171
- CanSetField(fieldInfo: FieldInfo, configurationSource: Nullable_1<ConfigurationSource>): boolean;
4172
3274
  CanSetForeignKey(foreignKey: ForeignKey, configurationSource: Nullable_1<ConfigurationSource>): boolean;
4173
3275
  CanSetInverse(inverse: SkipNavigation, configurationSource: Nullable_1<ConfigurationSource>): boolean;
4174
3276
  CanSetLazyLoadingEnabled(lazyLoadingEnabled: Nullable_1<System_Internal.Boolean>, configurationSource: ConfigurationSource): boolean;
4175
- CanSetPropertyAccessMode(propertyAccessMode: Nullable_1<PropertyAccessMode>, configurationSource: Nullable_1<ConfigurationSource>): boolean;
4176
3277
  EnableLazyLoading(lazyLoadingEnabled: Nullable_1<System_Internal.Boolean>, configurationSource: ConfigurationSource): InternalSkipNavigationBuilder | undefined;
4177
- HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
4178
- HasAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): AnnotatableBuilder_2<unknown, unknown>;
4179
- HasField(fieldName: string, configurationSource: ConfigurationSource): IConventionSkipNavigationBuilder;
4180
- HasField(fieldInfo: FieldInfo, configurationSource: ConfigurationSource): IConventionSkipNavigationBuilder;
4181
3278
  HasForeignKey(foreignKey: ForeignKey, configurationSource: ConfigurationSource): InternalSkipNavigationBuilder | undefined;
4182
3279
  HasInverse(inverse: SkipNavigation, configurationSource: ConfigurationSource): InternalSkipNavigationBuilder | undefined;
4183
- HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
4184
- HasNoAnnotation(name: string, configurationSource: ConfigurationSource): AnnotatableBuilder_2<unknown, unknown>;
4185
- UsePropertyAccessMode(propertyAccessMode: Nullable_1<PropertyAccessMode>, configurationSource: ConfigurationSource): IConventionSkipNavigationBuilder;
4186
3280
  }
4187
3281
 
4188
3282
 
@@ -4212,18 +3306,10 @@ export interface InternalStoredProcedureBuilder$instance extends AnnotatableBuil
4212
3306
  CanHaveRowsAffectedParameter(configurationSource: ConfigurationSource): boolean;
4213
3307
  CanHaveRowsAffectedResultColumn(configurationSource: ConfigurationSource): boolean;
4214
3308
  CanHaveRowsAffectedReturn(rowsAffectedReturned: boolean, configurationSource: ConfigurationSource): boolean;
4215
- CanRemoveAnnotation(name: string, configurationSource: ConfigurationSource): boolean;
4216
- CanRemoveAnnotation(name: string, fromDataAnnotation?: boolean): boolean;
4217
- CanSetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): boolean;
4218
- CanSetAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): boolean;
4219
3309
  CanSetName(name: string, configurationSource: ConfigurationSource): boolean;
4220
3310
  CanSetSchema(schema: string, configurationSource: ConfigurationSource): boolean;
4221
- HasAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): AnnotatableBuilder_2<StoredProcedure, IConventionModelBuilder>;
4222
- HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
4223
3311
  HasName(name: string, configurationSource: ConfigurationSource): InternalStoredProcedureBuilder | undefined;
4224
3312
  HasName(name: string, schema: string, configurationSource: ConfigurationSource): InternalStoredProcedureBuilder | undefined;
4225
- HasNoAnnotation(name: string, configurationSource: ConfigurationSource): AnnotatableBuilder_2<StoredProcedure, IConventionModelBuilder>;
4226
- HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
4227
3313
  HasOriginalValueParameter(propertyName: string, configurationSource: ConfigurationSource): InternalStoredProcedureParameterBuilder | undefined;
4228
3314
  HasOriginalValueParameter<TDerivedEntity, TProperty>(propertyExpression: Expression_1<Func_2<TDerivedEntity, TProperty>>, configurationSource: ConfigurationSource): InternalStoredProcedureParameterBuilder | undefined;
4229
3315
  HasParameter(propertyName: string, configurationSource: ConfigurationSource): InternalStoredProcedureParameterBuilder | undefined;
@@ -4258,18 +3344,10 @@ export interface InternalStoredProcedureParameterBuilder$instance extends Annota
4258
3344
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Builders_IConventionAnnotatableBuilder: never;
4259
3345
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Builders_IConventionStoredProcedureParameterBuilder: never;
4260
3346
 
4261
- CanRemoveAnnotation(name: string, configurationSource: ConfigurationSource): boolean;
4262
- CanRemoveAnnotation(name: string, fromDataAnnotation?: boolean): boolean;
4263
- CanSetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): boolean;
4264
- CanSetAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): boolean;
4265
3347
  CanSetDirection(direction: ParameterDirection, configurationSource: ConfigurationSource): boolean;
4266
3348
  CanSetName(name: string, configurationSource: ConfigurationSource): boolean;
4267
- HasAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): AnnotatableBuilder_2<StoredProcedureParameter, IConventionModelBuilder>;
4268
- HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
4269
3349
  HasDirection(direction: ParameterDirection, configurationSource: ConfigurationSource): InternalStoredProcedureParameterBuilder | undefined;
4270
3350
  HasName(name: string, configurationSource: ConfigurationSource): InternalStoredProcedureParameterBuilder | undefined;
4271
- HasNoAnnotation(name: string, configurationSource: ConfigurationSource): AnnotatableBuilder_2<StoredProcedureParameter, IConventionModelBuilder>;
4272
- HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
4273
3351
  }
4274
3352
 
4275
3353
 
@@ -4292,16 +3370,8 @@ export interface InternalStoredProcedureResultColumnBuilder$instance extends Ann
4292
3370
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Builders_IConventionAnnotatableBuilder: never;
4293
3371
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Builders_IConventionStoredProcedureResultColumnBuilder: never;
4294
3372
 
4295
- CanRemoveAnnotation(name: string, configurationSource: ConfigurationSource): boolean;
4296
- CanRemoveAnnotation(name: string, fromDataAnnotation?: boolean): boolean;
4297
- CanSetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): boolean;
4298
- CanSetAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): boolean;
4299
3373
  CanSetName(name: string, configurationSource: ConfigurationSource): boolean;
4300
- HasAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): AnnotatableBuilder_2<StoredProcedureResultColumn, IConventionModelBuilder>;
4301
- HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
4302
3374
  HasName(name: string, configurationSource: ConfigurationSource): InternalStoredProcedureResultColumnBuilder | undefined;
4303
- HasNoAnnotation(name: string, configurationSource: ConfigurationSource): AnnotatableBuilder_2<StoredProcedureResultColumn, IConventionModelBuilder>;
4304
- HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
4305
3375
  }
4306
3376
 
4307
3377
 
@@ -4325,14 +3395,6 @@ export interface InternalTriggerBuilder$instance extends AnnotatableBuilder_2<Tr
4325
3395
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Builders_IConventionTriggerBuilder: never;
4326
3396
 
4327
3397
  Attach(entityTypeBuilder: InternalEntityTypeBuilder): InternalTriggerBuilder | undefined;
4328
- CanRemoveAnnotation(name: string, configurationSource: ConfigurationSource): boolean;
4329
- CanRemoveAnnotation(name: string, fromDataAnnotation?: boolean): boolean;
4330
- CanSetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): boolean;
4331
- CanSetAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): boolean;
4332
- HasAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): AnnotatableBuilder_2<Trigger, IConventionModelBuilder>;
4333
- HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
4334
- HasNoAnnotation(name: string, configurationSource: ConfigurationSource): AnnotatableBuilder_2<Trigger, IConventionModelBuilder>;
4335
- HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
4336
3398
  }
4337
3399
 
4338
3400
 
@@ -4361,13 +3423,9 @@ export interface InternalTypeBaseBuilder$instance extends AnnotatableBuilder_2<T
4361
3423
  CanHaveProperty(propertyType: Type, propertyName: string, memberInfo: MemberInfo, typeConfigurationSource: Nullable_1<ConfigurationSource>, configurationSource: Nullable_1<ConfigurationSource>, checkClrProperty?: boolean): boolean;
4362
3424
  CanIgnore(name: string, configurationSource: ConfigurationSource): boolean;
4363
3425
  CanIgnore(name: string, configurationSource: ConfigurationSource, shouldThrow: boolean): boolean;
4364
- CanRemoveAnnotation(name: string, configurationSource: ConfigurationSource): boolean;
4365
- CanRemoveAnnotation(name: string, fromDataAnnotation?: boolean): boolean;
4366
3426
  CanRemoveComplexProperty(complexProperty: ComplexProperty, configurationSource: ConfigurationSource): boolean;
4367
3427
  CanRemoveDiscriminator(configurationSource: ConfigurationSource): boolean;
4368
3428
  CanRemoveProperty(property: Property, configurationSource: ConfigurationSource, canOverrideSameSource?: boolean): boolean;
4369
- CanSetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): boolean;
4370
- CanSetAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): boolean;
4371
3429
  CanSetChangeTrackingStrategy(changeTrackingStrategy: Nullable_1<ChangeTrackingStrategy>, configurationSource: ConfigurationSource): boolean;
4372
3430
  CanSetDiscriminator(name: string, type: Type, configurationSource: ConfigurationSource): boolean;
4373
3431
  CanSetPropertyAccessMode(propertyAccessMode: Nullable_1<PropertyAccessMode>, configurationSource: ConfigurationSource): boolean;
@@ -4384,11 +3442,7 @@ export interface InternalTypeBaseBuilder$instance extends AnnotatableBuilder_2<T
4384
3442
  GetOrCreateDiscriminatorProperty(type: Type, name: string, memberInfo: MemberInfo, configurationSource: ConfigurationSource): InternalPropertyBuilder | undefined;
4385
3443
  GetOrCreateProperties(propertyNames: IReadOnlyList_1<System_Internal.String>, configurationSource: Nullable_1<ConfigurationSource>, referencedProperties?: IReadOnlyList_1<Property>, required?: boolean, useDefaultType?: boolean): IReadOnlyList_1<Property> | undefined;
4386
3444
  GetOrCreateProperties(clrMembers: IEnumerable_1<MemberInfo>, configurationSource: Nullable_1<ConfigurationSource>): IReadOnlyList_1<Property> | undefined;
4387
- HasAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): AnnotatableBuilder_2<TypeBase, InternalModelBuilder>;
4388
- HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
4389
3445
  HasChangeTrackingStrategy(changeTrackingStrategy: Nullable_1<ChangeTrackingStrategy>, configurationSource: ConfigurationSource): InternalTypeBaseBuilder | undefined;
4390
- HasNoAnnotation(name: string, configurationSource: ConfigurationSource): AnnotatableBuilder_2<TypeBase, InternalModelBuilder>;
4391
- HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
4392
3446
  HasNoComplexProperty(complexProperty: ComplexProperty, configurationSource: ConfigurationSource): InternalTypeBaseBuilder | undefined;
4393
3447
  HasNoDiscriminator(configurationSource: ConfigurationSource): InternalTypeBaseBuilder | undefined;
4394
3448
  Ignore(name: string, configurationSource: ConfigurationSource): InternalTypeBaseBuilder | undefined;
@@ -4438,32 +3492,7 @@ export interface JsonColumn$instance extends Column$instance {
4438
3492
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IColumnBase: never;
4439
3493
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
4440
3494
 
4441
- AddAnnotation(name: string, value: unknown): IAnnotation;
4442
- AddAnnotation(name: string, value: unknown): Annotation;
4443
- AddAnnotation(name: string, annotation: Annotation): Annotation;
4444
- AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
4445
- AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
4446
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
4447
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
4448
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
4449
- AnnotationsToDebugString(indent?: int): string;
4450
- FindAnnotation(name: string): IAnnotation | undefined;
4451
- FindAnnotation(name: string): Annotation | undefined;
4452
- FindColumnMapping(entityType: IReadOnlyEntityType): IColumnMappingBase | undefined;
4453
- FindColumnMapping(entityType: IReadOnlyEntityType): IColumnMapping | undefined;
4454
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
4455
- FindRuntimeAnnotation(name: string): Annotation | undefined;
4456
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
4457
- GetAnnotations(): IEnumerable_1<IAnnotation>;
4458
3495
  GetDefaultStoreTypeMapping(): RelationalTypeMapping;
4459
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
4460
- GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
4461
- RemoveAnnotation(name: string): IAnnotation | undefined;
4462
- RemoveAnnotation(name: string): Annotation | undefined;
4463
- SetAnnotation(name: string, value: unknown): void;
4464
- SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
4465
- ToDebugString(options?: MetadataDebugStringOptions, indent?: int): string;
4466
- TryGetDefaultValue(defaultValue: unknown): boolean;
4467
3496
  }
4468
3497
 
4469
3498
 
@@ -4491,30 +3520,7 @@ export interface JsonColumnBase$instance extends ColumnBase_1$instance<ColumnMap
4491
3520
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IColumnBase: never;
4492
3521
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
4493
3522
 
4494
- AddAnnotation(name: string, value: unknown): IAnnotation;
4495
- AddAnnotation(name: string, value: unknown): Annotation;
4496
- AddAnnotation(name: string, annotation: Annotation): Annotation;
4497
- AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
4498
- AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
4499
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
4500
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
4501
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
4502
- AnnotationsToDebugString(indent?: int): string;
4503
- FindAnnotation(name: string): IAnnotation | undefined;
4504
- FindAnnotation(name: string): Annotation | undefined;
4505
- FindColumnMapping(entityType: IReadOnlyEntityType): IColumnMappingBase | undefined;
4506
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
4507
- FindRuntimeAnnotation(name: string): Annotation | undefined;
4508
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
4509
- GetAnnotations(): IEnumerable_1<IAnnotation>;
4510
3523
  GetDefaultStoreTypeMapping(): RelationalTypeMapping;
4511
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
4512
- GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
4513
- RemoveAnnotation(name: string): IAnnotation | undefined;
4514
- RemoveAnnotation(name: string): Annotation | undefined;
4515
- SetAnnotation(name: string, value: unknown): void;
4516
- SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
4517
- ToDebugString(options?: MetadataDebugStringOptions, indent?: int): string;
4518
3524
  }
4519
3525
 
4520
3526
 
@@ -4542,31 +3548,7 @@ export interface JsonViewColumn$instance extends ViewColumn$instance {
4542
3548
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
4543
3549
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IViewColumn: never;
4544
3550
 
4545
- AddAnnotation(name: string, value: unknown): IAnnotation;
4546
- AddAnnotation(name: string, value: unknown): Annotation;
4547
- AddAnnotation(name: string, annotation: Annotation): Annotation;
4548
- AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
4549
- AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
4550
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
4551
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
4552
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
4553
- AnnotationsToDebugString(indent?: int): string;
4554
- FindAnnotation(name: string): IAnnotation | undefined;
4555
- FindAnnotation(name: string): Annotation | undefined;
4556
- FindColumnMapping(entityType: IReadOnlyEntityType): IColumnMappingBase | undefined;
4557
- FindColumnMapping(entityType: IReadOnlyEntityType): IViewColumnMapping | undefined;
4558
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
4559
- FindRuntimeAnnotation(name: string): Annotation | undefined;
4560
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
4561
- GetAnnotations(): IEnumerable_1<IAnnotation>;
4562
3551
  GetDefaultStoreTypeMapping(): RelationalTypeMapping;
4563
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
4564
- GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
4565
- RemoveAnnotation(name: string): IAnnotation | undefined;
4566
- RemoveAnnotation(name: string): Annotation | undefined;
4567
- SetAnnotation(name: string, value: unknown): void;
4568
- SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
4569
- ToDebugString(options?: MetadataDebugStringOptions, indent?: int): string;
4570
3552
  }
4571
3553
 
4572
3554
 
@@ -4607,37 +3589,10 @@ export interface Key$instance extends ConventionAnnotatable {
4607
3589
  readonly Properties: IReadOnlyList_1<Property>;
4608
3590
  get ReferencingForeignKeys(): ISet_1<ForeignKey> | undefined;
4609
3591
  set ReferencingForeignKeys(value: ISet_1<ForeignKey> | undefined);
4610
- AddAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation;
4611
- AddAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotation;
4612
- AddAnnotation(name: string, value: unknown): IAnnotation;
4613
- AddAnnotation(name: string, value: unknown): Annotation;
4614
- AddAnnotation(name: string, annotation: Annotation): Annotation;
4615
- AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
4616
- AddAnnotations(annotations: IEnumerable_1<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
4617
- AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
4618
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
4619
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
4620
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
4621
- AnnotationsToDebugString(indent?: int): string;
4622
- FindAnnotation(name: string): ConventionAnnotation | undefined;
4623
- FindAnnotation(name: string): IConventionAnnotation | undefined;
4624
- FindAnnotation(name: string): IAnnotation | undefined;
4625
- FindAnnotation(name: string): Annotation | undefined;
4626
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
4627
- FindRuntimeAnnotation(name: string): Annotation | undefined;
4628
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
4629
- GetAnnotations(): IEnumerable_1<ConventionAnnotation>;
4630
3592
  GetConfigurationSource(): ConfigurationSource;
4631
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
4632
3593
  GetReferencingForeignKeys(): IEnumerable_1<ForeignKey>;
4633
- GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
4634
3594
  OnAnnotationSet(name: string, annotation: IConventionAnnotation, oldAnnotation: IConventionAnnotation): IConventionAnnotation | undefined;
4635
3595
  OnAnnotationSet(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
4636
- RemoveAnnotation(name: string): IAnnotation | undefined;
4637
- RemoveAnnotation(name: string): Annotation | undefined;
4638
- SetAnnotation(name: string, value: unknown): void;
4639
- SetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation | undefined;
4640
- SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
4641
3596
  SetRemovedFromModel(): void;
4642
3597
  ToString(): string;
4643
3598
  UpdateConfigurationSource(configurationSource: ConfigurationSource): void;
@@ -4712,14 +3667,6 @@ export interface Model$instance extends ConventionAnnotatable {
4712
3667
  get ScopedModelDependencies(): ModelDependencies | undefined;
4713
3668
  set ScopedModelDependencies(value: ModelDependencies | undefined);
4714
3669
  SkipDetectChanges: boolean;
4715
- AddAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation;
4716
- AddAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotation;
4717
- AddAnnotation(name: string, value: unknown): IAnnotation;
4718
- AddAnnotation(name: string, value: unknown): Annotation;
4719
- AddAnnotation(name: string, annotation: Annotation): Annotation;
4720
- AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
4721
- AddAnnotations(annotations: IEnumerable_1<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
4722
- AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
4723
3670
  AddComplex(type: Type, configurationSource: ConfigurationSource): Nullable_1<ConfigurationSource>;
4724
3671
  AddComplexType(complexType: ComplexType): void;
4725
3672
  AddEntityType(name: string, owned: boolean, configurationSource: ConfigurationSource): EntityType | undefined;
@@ -4732,18 +3679,10 @@ export interface Model$instance extends ConventionAnnotatable {
4732
3679
  AddIgnored(name: string, type: Type, configurationSource: ConfigurationSource): string | undefined;
4733
3680
  AddOwned(type: Type, configurationSource: ConfigurationSource): void;
4734
3681
  AddProperty(property: Property): void;
4735
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
4736
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
4737
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
4738
3682
  AddShared(type: Type, configurationSource: ConfigurationSource): void;
4739
- AnnotationsToDebugString(indent?: int): string;
4740
3683
  DelayConventions(): IConventionBatch;
4741
3684
  FinalizeModel(): IModel;
4742
3685
  FindActualEntityType(entityType: EntityType): EntityType | undefined;
4743
- FindAnnotation(name: string): ConventionAnnotation | undefined;
4744
- FindAnnotation(name: string): IConventionAnnotation | undefined;
4745
- FindAnnotation(name: string): IAnnotation | undefined;
4746
- FindAnnotation(name: string): Annotation | undefined;
4747
3686
  FindClrType(name: string): Type | undefined;
4748
3687
  FindComplexType(name: string): ComplexType | undefined;
4749
3688
  FindEntityType(type: Type): EntityType | undefined;
@@ -4758,11 +3697,7 @@ export interface Model$instance extends ConventionAnnotatable {
4758
3697
  FindIsOwnedConfigurationSource(type: Type): Nullable_1<ConfigurationSource>;
4759
3698
  FindIsSharedConfigurationSource(type: Type): Nullable_1<ConfigurationSource>;
4760
3699
  FindProperties(type: Type): IReadOnlySet_1<Property> | undefined;
4761
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
4762
- FindRuntimeAnnotation(name: string): Annotation | undefined;
4763
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
4764
3700
  FindTypeMappingConfiguration(propertyType: Type): ITypeMappingConfiguration | undefined;
4765
- GetAnnotations(): IEnumerable_1<ConventionAnnotation>;
4766
3701
  GetChangeTrackingStrategy(): ChangeTrackingStrategy;
4767
3702
  GetChangeTrackingStrategyConfigurationSource(): Nullable_1<ConfigurationSource>;
4768
3703
  GetDisplayName(type: Type): string;
@@ -4770,10 +3705,8 @@ export interface Model$instance extends ConventionAnnotatable {
4770
3705
  GetEmbeddedDiscriminatorNameConfigurationSource(): Nullable_1<ConfigurationSource>;
4771
3706
  GetEntityTypes(): IEnumerable_1<EntityType>;
4772
3707
  GetEntityTypes(name: string): IEnumerable_1<EntityType>;
4773
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
4774
3708
  GetPropertyAccessMode(): PropertyAccessMode;
4775
3709
  GetPropertyAccessModeConfigurationSource(): Nullable_1<ConfigurationSource>;
4776
- GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
4777
3710
  GetTypeMappingConfigurations(): IEnumerable_1<ITypeMappingConfiguration>;
4778
3711
  IsIgnored(name: string): boolean;
4779
3712
  IsIgnored(type: Type): boolean;
@@ -4784,8 +3717,6 @@ export interface Model$instance extends ConventionAnnotatable {
4784
3717
  OnAnnotationSet(name: string, annotation: IConventionAnnotation, oldAnnotation: IConventionAnnotation): IConventionAnnotation | undefined;
4785
3718
  OnAnnotationSet(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
4786
3719
  OnModelFinalized(): IModel;
4787
- RemoveAnnotation(name: string): IAnnotation | undefined;
4788
- RemoveAnnotation(name: string): Annotation | undefined;
4789
3720
  RemoveComplexType(complexType: ComplexType): void;
4790
3721
  RemoveEntityType(type: Type): EntityType | undefined;
4791
3722
  RemoveEntityType(name: string): EntityType | undefined;
@@ -4797,9 +3728,6 @@ export interface Model$instance extends ConventionAnnotatable {
4797
3728
  RemoveOwned(type: Type): string | undefined;
4798
3729
  RemoveProperty(property: Property): Property | undefined;
4799
3730
  RemoveShared(type: Type): Type | undefined;
4800
- SetAnnotation(name: string, value: unknown): void;
4801
- SetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation | undefined;
4802
- SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
4803
3731
  SetChangeTrackingStrategy(changeTrackingStrategy: Nullable_1<ChangeTrackingStrategy>, configurationSource: ConfigurationSource): Nullable_1<ChangeTrackingStrategy>;
4804
3732
  SetEmbeddedDiscriminatorName(name: string, configurationSource: ConfigurationSource): string | undefined;
4805
3733
  SetPropertyAccessMode(propertyAccessMode: Nullable_1<PropertyAccessMode>, configurationSource: ConfigurationSource): Nullable_1<PropertyAccessMode>;
@@ -4915,59 +3843,13 @@ export interface Navigation$instance extends PropertyBase$instance {
4915
3843
  readonly IsOnDependent: boolean;
4916
3844
  readonly Sentinel: unknown | undefined;
4917
3845
  readonly TargetEntityType: EntityType;
4918
- AddAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotation;
4919
- AddAnnotation(name: string, value: unknown): IAnnotation;
4920
- AddAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation;
4921
- AddAnnotation(name: string, value: unknown): Annotation;
4922
- AddAnnotation(name: string, annotation: Annotation): Annotation;
4923
- AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
4924
- AddAnnotations(annotations: IEnumerable_1<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
4925
- AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
4926
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
4927
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
4928
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
4929
- AnnotationsToDebugString(indent?: int): string;
4930
- FindAnnotation(name: string): IConventionAnnotation | undefined;
4931
- FindAnnotation(name: string): IAnnotation | undefined;
4932
- FindAnnotation(name: string): ConventionAnnotation | undefined;
4933
- FindAnnotation(name: string): Annotation | undefined;
4934
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
4935
- FindRuntimeAnnotation(name: string): Annotation | undefined;
4936
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
4937
- GetAnnotations(): IEnumerable_1<IAnnotation>;
4938
- GetCollectionAccessor(): IClrCollectionAccessor | undefined;
4939
3846
  GetConfigurationSource(): ConfigurationSource;
4940
- GetCurrentValueComparer(): IComparer_1<IUpdateEntry>;
4941
- GetFieldInfoConfigurationSource(): Nullable_1<ConfigurationSource>;
4942
- GetFieldName(): string | undefined;
4943
- GetGetter(): IClrPropertyGetter;
4944
- GetIndex(): int;
4945
- GetIndexedCollectionAccessor(): IClrIndexedCollectionAccessor;
4946
3847
  GetInverseConfigurationSource(): Nullable_1<ConfigurationSource>;
4947
- GetMemberInfo(forMaterialization: boolean, forSet: boolean): MemberInfo;
4948
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
4949
3848
  GetPropertyAccessMode(): PropertyAccessMode;
4950
- GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
4951
- GetSetter(): IClrPropertySetter;
4952
- GetShadowIndex(): int;
4953
- IsShadowProperty(): boolean;
4954
3849
  OnAnnotationSet(name: string, annotation: IConventionAnnotation, oldAnnotation: IConventionAnnotation): IConventionAnnotation | undefined;
4955
3850
  OnAnnotationSet(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
4956
- RemoveAnnotation(name: string): IAnnotation | undefined;
4957
- RemoveAnnotation(name: string): Annotation | undefined;
4958
- SetAnnotation(name: string, value: unknown): void;
4959
- SetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation | undefined;
4960
- SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
4961
- SetField(fieldName: string, configurationSource: ConfigurationSource): FieldInfo | undefined;
4962
- SetField(fieldName: string): void;
4963
- SetField(fieldName: string, fromDataAnnotation?: boolean): FieldInfo | undefined;
4964
- SetFieldInfo(fieldInfo: FieldInfo, configurationSource: ConfigurationSource): FieldInfo | undefined;
4965
- SetFieldInfo(fieldInfo: FieldInfo, fromDataAnnotation?: boolean): FieldInfo | undefined;
4966
3851
  SetInverse(inverseName: string, configurationSource: ConfigurationSource): Navigation | undefined;
4967
3852
  SetInverse(inverse: MemberInfo, configurationSource: ConfigurationSource): Navigation | undefined;
4968
- SetPropertyAccessMode(propertyAccessMode: Nullable_1<PropertyAccessMode>, configurationSource: ConfigurationSource): Nullable_1<PropertyAccessMode>;
4969
- SetPropertyAccessMode(propertyAccessMode: Nullable_1<PropertyAccessMode>): void;
4970
- SetPropertyAccessMode(propertyAccessMode: Nullable_1<PropertyAccessMode>, fromDataAnnotation?: boolean): Nullable_1<PropertyAccessMode>;
4971
3853
  SetRemovedFromModel(): void;
4972
3854
  ToString(): string;
4973
3855
  UpdateConfigurationSource(configurationSource: ConfigurationSource): void;
@@ -5077,47 +3959,19 @@ export interface Property$instance extends PropertyBase$instance {
5077
3959
  get TypeMapping(): CoreTypeMapping | undefined;
5078
3960
  set TypeMapping(value: CoreTypeMapping | undefined);
5079
3961
  ValueGenerated: ValueGenerated;
5080
- AddAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotation;
5081
- AddAnnotation(name: string, value: unknown): IAnnotation;
5082
- AddAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation;
5083
- AddAnnotation(name: string, value: unknown): Annotation;
5084
- AddAnnotation(name: string, annotation: Annotation): Annotation;
5085
- AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
5086
- AddAnnotations(annotations: IEnumerable_1<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
5087
- AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
5088
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
5089
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
5090
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
5091
- AnnotationsToDebugString(indent?: int): string;
5092
3962
  CheckAfterSaveBehavior(behavior: PropertySaveBehavior): string | undefined;
5093
3963
  CheckValueComparer(comparer: ValueComparer): string | undefined;
5094
3964
  CheckValueConverter(converter: ValueConverter): string | undefined;
5095
- FindAnnotation(name: string): IConventionAnnotation | undefined;
5096
- FindAnnotation(name: string): IAnnotation | undefined;
5097
- FindAnnotation(name: string): ConventionAnnotation | undefined;
5098
- FindAnnotation(name: string): Annotation | undefined;
5099
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
5100
- FindRuntimeAnnotation(name: string): Annotation | undefined;
5101
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
5102
3965
  GetAfterSaveBehavior(): PropertySaveBehavior;
5103
3966
  GetAfterSaveBehaviorConfigurationSource(): Nullable_1<ConfigurationSource>;
5104
- GetAnnotations(): IEnumerable_1<IAnnotation>;
5105
3967
  GetBeforeSaveBehavior(): PropertySaveBehavior;
5106
3968
  GetBeforeSaveBehaviorConfigurationSource(): Nullable_1<ConfigurationSource>;
5107
- GetCollectionAccessor(): IClrCollectionAccessor | undefined;
5108
- GetConfigurationSource(): ConfigurationSource;
5109
3969
  GetContainingForeignKeys(): IEnumerable_1<ForeignKey>;
5110
3970
  GetContainingIndexes(): IEnumerable_1<Index>;
5111
3971
  GetContainingKeys(): IEnumerable_1<Key>;
5112
3972
  GetConversion(throwOnValueConverterConflict?: boolean, throwOnProviderClrTypeConflict?: boolean): ValueTuple_3<ValueConverter, Type, Type>;
5113
- GetCurrentValueComparer(): IComparer_1<IUpdateEntry>;
5114
3973
  GetElementType(): ElementType | undefined;
5115
3974
  GetElementTypeConfigurationSource(): Nullable_1<ConfigurationSource>;
5116
- GetFieldInfoConfigurationSource(): Nullable_1<ConfigurationSource>;
5117
- GetFieldName(): string | undefined;
5118
- GetGetter(): IClrPropertyGetter;
5119
- GetIndex(): int;
5120
- GetIndexedCollectionAccessor(): IClrIndexedCollectionAccessor;
5121
3975
  GetIsConcurrencyTokenConfigurationSource(): Nullable_1<ConfigurationSource>;
5122
3976
  GetIsNullableConfigurationSource(): Nullable_1<ConfigurationSource>;
5123
3977
  GetIsUnicodeConfigurationSource(): Nullable_1<ConfigurationSource>;
@@ -5126,21 +3980,15 @@ export interface Property$instance extends PropertyBase$instance {
5126
3980
  GetKeyValueComparer(): ValueComparer | undefined;
5127
3981
  GetMaxLength(): Nullable_1<System_Internal.Int32>;
5128
3982
  GetMaxLengthConfigurationSource(): Nullable_1<ConfigurationSource>;
5129
- GetMemberInfo(forMaterialization: boolean, forSet: boolean): MemberInfo;
5130
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
5131
3983
  GetPrecision(): Nullable_1<System_Internal.Int32>;
5132
3984
  GetPrecisionConfigurationSource(): Nullable_1<ConfigurationSource>;
5133
- GetPropertyAccessMode(): PropertyAccessMode;
5134
3985
  GetProviderClrType(): Type | undefined;
5135
3986
  GetProviderClrTypeConfigurationSource(): Nullable_1<ConfigurationSource>;
5136
3987
  GetProviderValueComparer(): ValueComparer | undefined;
5137
3988
  GetProviderValueComparerConfigurationSource(): Nullable_1<ConfigurationSource>;
5138
- GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
5139
3989
  GetScale(): Nullable_1<System_Internal.Int32>;
5140
3990
  GetScaleConfigurationSource(): Nullable_1<ConfigurationSource>;
5141
3991
  GetSentinelConfigurationSource(): Nullable_1<ConfigurationSource>;
5142
- GetSetter(): IClrPropertySetter;
5143
- GetShadowIndex(): int;
5144
3992
  GetTypeConfigurationSource(): Nullable_1<ConfigurationSource>;
5145
3993
  GetTypeMappingConfigurationSource(): Nullable_1<ConfigurationSource>;
5146
3994
  GetValueComparer(): ValueComparer;
@@ -5153,35 +4001,21 @@ export interface Property$instance extends PropertyBase$instance {
5153
4001
  IsForeignKey(): boolean;
5154
4002
  IsIndex(): boolean;
5155
4003
  IsKey(): boolean;
5156
- IsShadowProperty(): boolean;
5157
4004
  IsUnicode(): Nullable_1<System_Internal.Boolean>;
5158
4005
  OnAnnotationSet(name: string, annotation: IConventionAnnotation, oldAnnotation: IConventionAnnotation): IConventionAnnotation | undefined;
5159
4006
  OnAnnotationSet(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
5160
4007
  OnElementTypeSet(newElementType: IElementType, oldElementType: IElementType): IElementType | undefined;
5161
4008
  OnFieldInfoSet(newFieldInfo: FieldInfo, oldFieldInfo: FieldInfo): FieldInfo | undefined;
5162
4009
  OnPropertyNullableChanged(): Nullable_1<System_Internal.Boolean>;
5163
- RemoveAnnotation(name: string): IAnnotation | undefined;
5164
- RemoveAnnotation(name: string): Annotation | undefined;
5165
4010
  SetAfterSaveBehavior(afterSaveBehavior: Nullable_1<PropertySaveBehavior>, configurationSource: ConfigurationSource): Nullable_1<PropertySaveBehavior>;
5166
- SetAnnotation(name: string, value: unknown): void;
5167
- SetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation | undefined;
5168
- SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
5169
4011
  SetBeforeSaveBehavior(beforeSaveBehavior: Nullable_1<PropertySaveBehavior>, configurationSource: ConfigurationSource): Nullable_1<PropertySaveBehavior>;
5170
4012
  SetElementType(elementType: Type, configurationSource: ConfigurationSource): ElementType | undefined;
5171
- SetField(fieldName: string, configurationSource: ConfigurationSource): FieldInfo | undefined;
5172
- SetField(fieldName: string): void;
5173
- SetField(fieldName: string, fromDataAnnotation?: boolean): FieldInfo | undefined;
5174
- SetFieldInfo(fieldInfo: FieldInfo, configurationSource: ConfigurationSource): FieldInfo | undefined;
5175
- SetFieldInfo(fieldInfo: FieldInfo, fromDataAnnotation?: boolean): FieldInfo | undefined;
5176
4013
  SetIsConcurrencyToken(concurrencyToken: Nullable_1<System_Internal.Boolean>, configurationSource: ConfigurationSource): Nullable_1<System_Internal.Boolean>;
5177
4014
  SetIsNullable(nullable: Nullable_1<System_Internal.Boolean>, configurationSource: ConfigurationSource): Nullable_1<System_Internal.Boolean>;
5178
4015
  SetIsUnicode(unicode: Nullable_1<System_Internal.Boolean>, configurationSource: ConfigurationSource): Nullable_1<System_Internal.Boolean>;
5179
4016
  SetJsonValueReaderWriterType(readerWriterType: Type, configurationSource: ConfigurationSource): Type | undefined;
5180
4017
  SetMaxLength(maxLength: Nullable_1<System_Internal.Int32>, configurationSource: ConfigurationSource): Nullable_1<System_Internal.Int32>;
5181
4018
  SetPrecision(precision: Nullable_1<System_Internal.Int32>, configurationSource: ConfigurationSource): Nullable_1<System_Internal.Int32>;
5182
- SetPropertyAccessMode(propertyAccessMode: Nullable_1<PropertyAccessMode>, configurationSource: ConfigurationSource): Nullable_1<PropertyAccessMode>;
5183
- SetPropertyAccessMode(propertyAccessMode: Nullable_1<PropertyAccessMode>): void;
5184
- SetPropertyAccessMode(propertyAccessMode: Nullable_1<PropertyAccessMode>, fromDataAnnotation?: boolean): Nullable_1<PropertyAccessMode>;
5185
4019
  SetProviderClrType(providerClrType: Type, configurationSource: ConfigurationSource): Type | undefined;
5186
4020
  SetProviderValueComparer(comparer: ValueComparer, configurationSource: ConfigurationSource): ValueComparer | undefined;
5187
4021
  SetProviderValueComparer(comparerType: Type, configurationSource: ConfigurationSource): Type | undefined;
@@ -5293,41 +4127,14 @@ export interface PropertyBase$instance extends ConventionAnnotatable {
5293
4127
  readonly Name: string;
5294
4128
  PropertyIndexes: PropertyIndexes;
5295
4129
  readonly PropertyInfo: PropertyInfo | undefined;
5296
- AddAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation;
5297
- AddAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotation;
5298
- AddAnnotation(name: string, value: unknown): IAnnotation;
5299
- AddAnnotation(name: string, value: unknown): Annotation;
5300
- AddAnnotation(name: string, annotation: Annotation): Annotation;
5301
- AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
5302
- AddAnnotations(annotations: IEnumerable_1<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
5303
- AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
5304
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
5305
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
5306
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
5307
- AnnotationsToDebugString(indent?: int): string;
5308
- FindAnnotation(name: string): ConventionAnnotation | undefined;
5309
- FindAnnotation(name: string): IConventionAnnotation | undefined;
5310
- FindAnnotation(name: string): IAnnotation | undefined;
5311
- FindAnnotation(name: string): Annotation | undefined;
5312
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
5313
- FindRuntimeAnnotation(name: string): Annotation | undefined;
5314
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
5315
- GetAnnotations(): IEnumerable_1<ConventionAnnotation>;
5316
4130
  GetConfigurationSource(): ConfigurationSource;
5317
4131
  GetCurrentValueComparer(): IComparer_1<IUpdateEntry>;
5318
4132
  GetFieldInfoConfigurationSource(): Nullable_1<ConfigurationSource>;
5319
4133
  GetIndexedCollectionAccessor(): IClrIndexedCollectionAccessor;
5320
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
5321
4134
  GetPropertyAccessMode(): PropertyAccessMode;
5322
4135
  GetPropertyAccessModeConfigurationSource(): Nullable_1<ConfigurationSource>;
5323
- GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
5324
4136
  GetSetter(): IClrPropertySetter;
5325
4137
  OnFieldInfoSet(newFieldInfo: FieldInfo, oldFieldInfo: FieldInfo): FieldInfo | undefined;
5326
- RemoveAnnotation(name: string): IAnnotation | undefined;
5327
- RemoveAnnotation(name: string): Annotation | undefined;
5328
- SetAnnotation(name: string, value: unknown): void;
5329
- SetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation | undefined;
5330
- SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
5331
4138
  SetConfigurationSource(configurationSource: ConfigurationSource): void;
5332
4139
  SetCurrentValueComparer(comparer: IComparer_1<IUpdateEntry>): void;
5333
4140
  SetField(fieldName: string, configurationSource: ConfigurationSource): FieldInfo | undefined;
@@ -5365,22 +4172,10 @@ export interface PropertyConfiguration$instance extends AnnotatableBase {
5365
4172
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_ITypeMappingConfiguration: never;
5366
4173
 
5367
4174
  readonly ClrType: Type;
5368
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
5369
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
5370
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
5371
- AnnotationsToDebugString(indent?: int): string;
5372
4175
  Apply(property: IMutableProperty): void;
5373
- FindAnnotation(name: string): Annotation | undefined;
5374
- FindAnnotation(name: string): IAnnotation | undefined;
5375
- FindRuntimeAnnotation(name: string): Annotation | undefined;
5376
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
5377
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
5378
- GetAnnotations(): IEnumerable_1<Annotation>;
5379
4176
  GetMaxLength(): Nullable_1<System_Internal.Int32>;
5380
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
5381
4177
  GetPrecision(): Nullable_1<System_Internal.Int32>;
5382
4178
  GetProviderClrType(): Type | undefined;
5383
- GetRuntimeAnnotations(): IEnumerable_1<Annotation>;
5384
4179
  GetScale(): Nullable_1<System_Internal.Int32>;
5385
4180
  GetValueConverter(): ValueConverter | undefined;
5386
4181
  IsUnicode(): Nullable_1<System_Internal.Boolean>;
@@ -5601,34 +4396,13 @@ export interface RelationalModel$instance extends Annotatable {
5601
4396
  readonly StoredProcedures: Dictionary_2<ValueTuple_2<System_Internal.String, System_Internal.String>, StoreStoredProcedure>;
5602
4397
  readonly Tables: Dictionary_2<ValueTuple_2<System_Internal.String, System_Internal.String>, Table>;
5603
4398
  readonly Views: Dictionary_2<ValueTuple_2<System_Internal.String, System_Internal.String>, View>;
5604
- AddAnnotation(name: string, value: unknown): IAnnotation;
5605
- AddAnnotation(name: string, value: unknown): Annotation;
5606
- AddAnnotation(name: string, annotation: Annotation): Annotation;
5607
- AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
5608
- AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
5609
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
5610
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
5611
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
5612
- AnnotationsToDebugString(indent?: int): string;
5613
- FindAnnotation(name: string): IAnnotation | undefined;
5614
- FindAnnotation(name: string): Annotation | undefined;
5615
4399
  FindDefaultTable(name: string): TableBase | undefined;
5616
4400
  FindFunction(name: string, schema: string, parameters: IReadOnlyList_1<System_Internal.String>): IStoreFunction | undefined;
5617
4401
  FindQuery(name: string): ISqlQuery | undefined;
5618
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
5619
- FindRuntimeAnnotation(name: string): Annotation | undefined;
5620
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
5621
4402
  FindStoredProcedure(name: string, schema: string): IStoreStoredProcedure | undefined;
5622
4403
  FindTable(name: string, schema: string): ITable | undefined;
5623
4404
  FindView(name: string, schema: string): IView | undefined;
5624
- GetAnnotations(): IEnumerable_1<IAnnotation>;
5625
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
5626
- GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
5627
4405
  MakeReadOnly(): RelationalModel;
5628
- RemoveAnnotation(name: string): IAnnotation | undefined;
5629
- RemoveAnnotation(name: string): Annotation | undefined;
5630
- SetAnnotation(name: string, value: unknown): void;
5631
- SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
5632
4406
  }
5633
4407
 
5634
4408
 
@@ -5683,35 +4457,8 @@ export interface RelationalPropertyOverrides$instance extends ConventionAnnotata
5683
4457
  readonly IsReadOnly: boolean;
5684
4458
  readonly Property: IReadOnlyProperty;
5685
4459
  readonly StoreObject: StoreObjectIdentifier;
5686
- AddAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation;
5687
- AddAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotation;
5688
- AddAnnotation(name: string, value: unknown): IAnnotation;
5689
- AddAnnotation(name: string, value: unknown): Annotation;
5690
- AddAnnotation(name: string, annotation: Annotation): Annotation;
5691
- AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
5692
- AddAnnotations(annotations: IEnumerable_1<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
5693
- AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
5694
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
5695
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
5696
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
5697
- AnnotationsToDebugString(indent?: int): string;
5698
- FindAnnotation(name: string): ConventionAnnotation | undefined;
5699
- FindAnnotation(name: string): IConventionAnnotation | undefined;
5700
- FindAnnotation(name: string): IAnnotation | undefined;
5701
- FindAnnotation(name: string): Annotation | undefined;
5702
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
5703
- FindRuntimeAnnotation(name: string): Annotation | undefined;
5704
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
5705
- GetAnnotations(): IEnumerable_1<ConventionAnnotation>;
5706
4460
  GetColumnNameConfigurationSource(): Nullable_1<ConfigurationSource>;
5707
4461
  GetConfigurationSource(): ConfigurationSource;
5708
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
5709
- GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
5710
- RemoveAnnotation(name: string): IAnnotation | undefined;
5711
- RemoveAnnotation(name: string): Annotation | undefined;
5712
- SetAnnotation(name: string, value: unknown): void;
5713
- SetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation | undefined;
5714
- SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
5715
4462
  SetColumnName(columnName: string, configurationSource: ConfigurationSource): string | undefined;
5716
4463
  SetRemovedFromModel(): void;
5717
4464
  ToString(): string;
@@ -5794,18 +4541,6 @@ export interface RuntimeStoredProcedureParameter$instance extends AnnotatableBas
5794
4541
 
5795
4542
  readonly DebugView: DebugView;
5796
4543
  readonly StoredProcedure: RuntimeStoredProcedure;
5797
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
5798
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
5799
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
5800
- AnnotationsToDebugString(indent?: int): string;
5801
- FindAnnotation(name: string): Annotation | undefined;
5802
- FindAnnotation(name: string): IAnnotation | undefined;
5803
- FindRuntimeAnnotation(name: string): Annotation | undefined;
5804
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
5805
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
5806
- GetAnnotations(): IEnumerable_1<Annotation>;
5807
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
5808
- GetRuntimeAnnotations(): IEnumerable_1<Annotation>;
5809
4544
  ToString(): string;
5810
4545
  }
5811
4546
 
@@ -5835,18 +4570,6 @@ export interface RuntimeStoredProcedureResultColumn$instance extends Annotatable
5835
4570
 
5836
4571
  readonly DebugView: DebugView;
5837
4572
  readonly StoredProcedure: RuntimeStoredProcedure;
5838
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
5839
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
5840
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
5841
- AnnotationsToDebugString(indent?: int): string;
5842
- FindAnnotation(name: string): Annotation | undefined;
5843
- FindAnnotation(name: string): IAnnotation | undefined;
5844
- FindRuntimeAnnotation(name: string): Annotation | undefined;
5845
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
5846
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
5847
- GetAnnotations(): IEnumerable_1<Annotation>;
5848
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
5849
- GetRuntimeAnnotations(): IEnumerable_1<Annotation>;
5850
4573
  ToString(): string;
5851
4574
  }
5852
4575
 
@@ -5890,40 +4613,13 @@ export interface Sequence$instance extends ConventionAnnotatable {
5890
4613
  readonly Schema: string | undefined;
5891
4614
  StartValue: long;
5892
4615
  Type: Type;
5893
- AddAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation;
5894
- AddAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotation;
5895
- AddAnnotation(name: string, value: unknown): IAnnotation;
5896
- AddAnnotation(name: string, value: unknown): Annotation;
5897
- AddAnnotation(name: string, annotation: Annotation): Annotation;
5898
- AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
5899
- AddAnnotations(annotations: IEnumerable_1<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
5900
- AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
5901
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
5902
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
5903
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
5904
- AnnotationsToDebugString(indent?: int): string;
5905
- FindAnnotation(name: string): ConventionAnnotation | undefined;
5906
- FindAnnotation(name: string): IConventionAnnotation | undefined;
5907
- FindAnnotation(name: string): IAnnotation | undefined;
5908
- FindAnnotation(name: string): Annotation | undefined;
5909
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
5910
- FindRuntimeAnnotation(name: string): Annotation | undefined;
5911
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
5912
- GetAnnotations(): IEnumerable_1<ConventionAnnotation>;
5913
4616
  GetConfigurationSource(): ConfigurationSource;
5914
4617
  GetIncrementByConfigurationSource(): Nullable_1<ConfigurationSource>;
5915
4618
  GetIsCyclicConfigurationSource(): Nullable_1<ConfigurationSource>;
5916
4619
  GetMaxValueConfigurationSource(): Nullable_1<ConfigurationSource>;
5917
4620
  GetMinValueConfigurationSource(): Nullable_1<ConfigurationSource>;
5918
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
5919
- GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
5920
4621
  GetStartValueConfigurationSource(): Nullable_1<ConfigurationSource>;
5921
4622
  GetTypeConfigurationSource(): Nullable_1<ConfigurationSource>;
5922
- RemoveAnnotation(name: string): IAnnotation | undefined;
5923
- RemoveAnnotation(name: string): Annotation | undefined;
5924
- SetAnnotation(name: string, value: unknown): void;
5925
- SetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation | undefined;
5926
- SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
5927
4623
  SetIncrementBy(incrementBy: Nullable_1<System_Internal.Int32>, configurationSource: ConfigurationSource): Nullable_1<System_Internal.Int32>;
5928
4624
  SetIsCyclic(cyclic: Nullable_1<System_Internal.Boolean>, configurationSource: ConfigurationSource): Nullable_1<System_Internal.Boolean>;
5929
4625
  SetMaxValue(maxValue: Nullable_1<System_Internal.Int64>, configurationSource: ConfigurationSource): Nullable_1<System_Internal.Int64>;
@@ -5993,56 +4689,8 @@ export interface ServiceProperty$instance extends PropertyBase$instance {
5993
4689
  readonly IsInModel: boolean;
5994
4690
  ParameterBinding: ServiceParameterBinding;
5995
4691
  readonly Sentinel: unknown | undefined;
5996
- AddAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotation;
5997
- AddAnnotation(name: string, value: unknown): IAnnotation;
5998
- AddAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation;
5999
- AddAnnotation(name: string, value: unknown): Annotation;
6000
- AddAnnotation(name: string, annotation: Annotation): Annotation;
6001
- AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
6002
- AddAnnotations(annotations: IEnumerable_1<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
6003
- AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
6004
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
6005
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
6006
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
6007
- AnnotationsToDebugString(indent?: int): string;
6008
- FindAnnotation(name: string): IConventionAnnotation | undefined;
6009
- FindAnnotation(name: string): IAnnotation | undefined;
6010
- FindAnnotation(name: string): ConventionAnnotation | undefined;
6011
- FindAnnotation(name: string): Annotation | undefined;
6012
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
6013
- FindRuntimeAnnotation(name: string): Annotation | undefined;
6014
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
6015
- GetAnnotations(): IEnumerable_1<IAnnotation>;
6016
- GetCollectionAccessor(): IClrCollectionAccessor | undefined;
6017
- GetConfigurationSource(): ConfigurationSource;
6018
- GetCurrentValueComparer(): IComparer_1<IUpdateEntry>;
6019
- GetFieldInfoConfigurationSource(): Nullable_1<ConfigurationSource>;
6020
- GetFieldName(): string | undefined;
6021
- GetGetter(): IClrPropertyGetter;
6022
- GetIndex(): int;
6023
- GetIndexedCollectionAccessor(): IClrIndexedCollectionAccessor;
6024
- GetMemberInfo(forMaterialization: boolean, forSet: boolean): MemberInfo;
6025
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
6026
4692
  GetParameterBindingConfigurationSource(): Nullable_1<ConfigurationSource>;
6027
- GetPropertyAccessMode(): PropertyAccessMode;
6028
- GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
6029
- GetSetter(): IClrPropertySetter;
6030
- GetShadowIndex(): int;
6031
- IsShadowProperty(): boolean;
6032
- RemoveAnnotation(name: string): IAnnotation | undefined;
6033
- RemoveAnnotation(name: string): Annotation | undefined;
6034
- SetAnnotation(name: string, value: unknown): void;
6035
- SetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation | undefined;
6036
- SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
6037
- SetField(fieldName: string, configurationSource: ConfigurationSource): FieldInfo | undefined;
6038
- SetField(fieldName: string): void;
6039
- SetField(fieldName: string, fromDataAnnotation?: boolean): FieldInfo | undefined;
6040
- SetFieldInfo(fieldInfo: FieldInfo, configurationSource: ConfigurationSource): FieldInfo | undefined;
6041
- SetFieldInfo(fieldInfo: FieldInfo, fromDataAnnotation?: boolean): FieldInfo | undefined;
6042
4693
  SetParameterBinding(parameterBinding: ServiceParameterBinding, configurationSource: ConfigurationSource): ServiceParameterBinding | undefined;
6043
- SetPropertyAccessMode(propertyAccessMode: Nullable_1<PropertyAccessMode>, configurationSource: ConfigurationSource): Nullable_1<PropertyAccessMode>;
6044
- SetPropertyAccessMode(propertyAccessMode: Nullable_1<PropertyAccessMode>): void;
6045
- SetPropertyAccessMode(propertyAccessMode: Nullable_1<PropertyAccessMode>, fromDataAnnotation?: boolean): Nullable_1<PropertyAccessMode>;
6046
4694
  SetRemovedFromModel(): void;
6047
4695
  ToString(): string;
6048
4696
  }
@@ -6108,60 +4756,13 @@ export interface SkipNavigation$instance extends PropertyBase$instance {
6108
4756
  readonly ManyToManyLoader: ICollectionLoader;
6109
4757
  readonly Sentinel: unknown | undefined;
6110
4758
  readonly TargetEntityType: EntityType;
6111
- AddAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotation;
6112
- AddAnnotation(name: string, value: unknown): IAnnotation;
6113
- AddAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation;
6114
- AddAnnotation(name: string, value: unknown): Annotation;
6115
- AddAnnotation(name: string, annotation: Annotation): Annotation;
6116
- AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
6117
- AddAnnotations(annotations: IEnumerable_1<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
6118
- AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
6119
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
6120
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
6121
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
6122
- AnnotationsToDebugString(indent?: int): string;
6123
- FindAnnotation(name: string): IConventionAnnotation | undefined;
6124
- FindAnnotation(name: string): IAnnotation | undefined;
6125
- FindAnnotation(name: string): ConventionAnnotation | undefined;
6126
- FindAnnotation(name: string): Annotation | undefined;
6127
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
6128
- FindRuntimeAnnotation(name: string): Annotation | undefined;
6129
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
6130
- GetAnnotations(): IEnumerable_1<IAnnotation>;
6131
- GetCollectionAccessor(): IClrCollectionAccessor | undefined;
6132
- GetConfigurationSource(): ConfigurationSource;
6133
- GetCurrentValueComparer(): IComparer_1<IUpdateEntry>;
6134
- GetFieldInfoConfigurationSource(): Nullable_1<ConfigurationSource>;
6135
- GetFieldName(): string | undefined;
6136
4759
  GetForeignKeyConfigurationSource(): Nullable_1<ConfigurationSource>;
6137
- GetGetter(): IClrPropertyGetter;
6138
- GetIndex(): int;
6139
- GetIndexedCollectionAccessor(): IClrIndexedCollectionAccessor;
6140
4760
  GetInverseConfigurationSource(): Nullable_1<ConfigurationSource>;
6141
- GetMemberInfo(forMaterialization: boolean, forSet: boolean): MemberInfo;
6142
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
6143
4761
  GetPropertyAccessMode(): PropertyAccessMode;
6144
- GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
6145
- GetSetter(): IClrPropertySetter;
6146
- GetShadowIndex(): int;
6147
- IsShadowProperty(): boolean;
6148
4762
  OnAnnotationSet(name: string, annotation: IConventionAnnotation, oldAnnotation: IConventionAnnotation): IConventionAnnotation | undefined;
6149
4763
  OnAnnotationSet(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
6150
- RemoveAnnotation(name: string): IAnnotation | undefined;
6151
- RemoveAnnotation(name: string): Annotation | undefined;
6152
- SetAnnotation(name: string, value: unknown): void;
6153
- SetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation | undefined;
6154
- SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
6155
- SetField(fieldName: string, configurationSource: ConfigurationSource): FieldInfo | undefined;
6156
- SetField(fieldName: string): void;
6157
- SetField(fieldName: string, fromDataAnnotation?: boolean): FieldInfo | undefined;
6158
- SetFieldInfo(fieldInfo: FieldInfo, configurationSource: ConfigurationSource): FieldInfo | undefined;
6159
- SetFieldInfo(fieldInfo: FieldInfo, fromDataAnnotation?: boolean): FieldInfo | undefined;
6160
4764
  SetForeignKey(foreignKey: ForeignKey, configurationSource: ConfigurationSource): ForeignKey | undefined;
6161
4765
  SetInverse(inverse: SkipNavigation, configurationSource: ConfigurationSource): SkipNavigation | undefined;
6162
- SetPropertyAccessMode(propertyAccessMode: Nullable_1<PropertyAccessMode>, configurationSource: ConfigurationSource): Nullable_1<PropertyAccessMode>;
6163
- SetPropertyAccessMode(propertyAccessMode: Nullable_1<PropertyAccessMode>): void;
6164
- SetPropertyAccessMode(propertyAccessMode: Nullable_1<PropertyAccessMode>, fromDataAnnotation?: boolean): Nullable_1<PropertyAccessMode>;
6165
4766
  SetRemovedFromModel(): void;
6166
4767
  ToString(): string;
6167
4768
  UpdateForeignKeyConfigurationSource(configurationSource: ConfigurationSource): void;
@@ -6223,33 +4824,8 @@ export interface SqlQuery$instance extends TableBase$instance {
6223
4824
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_ITableBase: never;
6224
4825
 
6225
4826
  Sql: string;
6226
- AddAnnotation(name: string, value: unknown): IAnnotation;
6227
- AddAnnotation(name: string, value: unknown): Annotation;
6228
- AddAnnotation(name: string, annotation: Annotation): Annotation;
6229
- AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
6230
- AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
6231
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
6232
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
6233
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
6234
- AnnotationsToDebugString(indent?: int): string;
6235
- FindAnnotation(name: string): IAnnotation | undefined;
6236
- FindAnnotation(name: string): Annotation | undefined;
6237
4827
  FindColumn(property: IProperty): IColumnBase | undefined;
6238
4828
  FindColumn(name: string): SqlQueryColumn | undefined;
6239
- FindColumn(name: string): IColumnBase | undefined;
6240
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
6241
- FindRuntimeAnnotation(name: string): Annotation | undefined;
6242
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
6243
- GetAnnotations(): IEnumerable_1<IAnnotation>;
6244
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
6245
- GetRowInternalForeignKeys(entityType: IEntityType): IEnumerable_1<IForeignKey>;
6246
- GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
6247
- IsOptional(typeBase: ITypeBase): boolean;
6248
- RemoveAnnotation(name: string): IAnnotation | undefined;
6249
- RemoveAnnotation(name: string): Annotation | undefined;
6250
- SetAnnotation(name: string, value: unknown): void;
6251
- SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
6252
- ToDebugString(options?: MetadataDebugStringOptions, indent?: int): string;
6253
4829
  ToString(): string;
6254
4830
  }
6255
4831
 
@@ -6280,29 +4856,6 @@ export interface SqlQueryColumn$instance extends ColumnBase_1$instance<SqlQueryC
6280
4856
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_ISqlQueryColumn: never;
6281
4857
 
6282
4858
  readonly SqlQuery: SqlQuery;
6283
- AddAnnotation(name: string, value: unknown): IAnnotation;
6284
- AddAnnotation(name: string, value: unknown): Annotation;
6285
- AddAnnotation(name: string, annotation: Annotation): Annotation;
6286
- AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
6287
- AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
6288
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
6289
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
6290
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
6291
- AnnotationsToDebugString(indent?: int): string;
6292
- FindAnnotation(name: string): IAnnotation | undefined;
6293
- FindAnnotation(name: string): Annotation | undefined;
6294
- FindColumnMapping(entityType: IReadOnlyEntityType): IColumnMappingBase | undefined;
6295
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
6296
- FindRuntimeAnnotation(name: string): Annotation | undefined;
6297
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
6298
- GetAnnotations(): IEnumerable_1<IAnnotation>;
6299
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
6300
- GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
6301
- RemoveAnnotation(name: string): IAnnotation | undefined;
6302
- RemoveAnnotation(name: string): Annotation | undefined;
6303
- SetAnnotation(name: string, value: unknown): void;
6304
- SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
6305
- ToDebugString(options?: MetadataDebugStringOptions, indent?: int): string;
6306
4859
  ToString(): string;
6307
4860
  }
6308
4861
 
@@ -6333,28 +4886,7 @@ export interface SqlQueryColumnMapping$instance extends ColumnMappingBase$instan
6333
4886
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_ISqlQueryColumnMapping: never;
6334
4887
 
6335
4888
  readonly SqlQueryMapping: ISqlQueryMapping;
6336
- AddAnnotation(name: string, value: unknown): IAnnotation;
6337
- AddAnnotation(name: string, value: unknown): Annotation;
6338
- AddAnnotation(name: string, annotation: Annotation): Annotation;
6339
- AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
6340
- AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
6341
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
6342
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
6343
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
6344
- AnnotationsToDebugString(indent?: int): string;
6345
- FindAnnotation(name: string): IAnnotation | undefined;
6346
- FindAnnotation(name: string): Annotation | undefined;
6347
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
6348
- FindRuntimeAnnotation(name: string): Annotation | undefined;
6349
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
6350
- GetAnnotations(): IEnumerable_1<IAnnotation>;
6351
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
6352
- GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
6353
4889
  GetTypeMapping(): RelationalTypeMapping;
6354
- RemoveAnnotation(name: string): IAnnotation | undefined;
6355
- RemoveAnnotation(name: string): Annotation | undefined;
6356
- SetAnnotation(name: string, value: unknown): void;
6357
- SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
6358
4890
  ToString(): string;
6359
4891
  }
6360
4892
 
@@ -6386,28 +4918,6 @@ export interface SqlQueryMapping$instance extends TableMappingBase_1$instance<Sq
6386
4918
 
6387
4919
  IsDefaultSqlQueryMapping: boolean;
6388
4920
  readonly SqlQuery: ISqlQuery;
6389
- AddAnnotation(name: string, value: unknown): IAnnotation;
6390
- AddAnnotation(name: string, value: unknown): Annotation;
6391
- AddAnnotation(name: string, annotation: Annotation): Annotation;
6392
- AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
6393
- AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
6394
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
6395
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
6396
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
6397
- AnnotationsToDebugString(indent?: int): string;
6398
- FindAnnotation(name: string): IAnnotation | undefined;
6399
- FindAnnotation(name: string): Annotation | undefined;
6400
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
6401
- FindRuntimeAnnotation(name: string): Annotation | undefined;
6402
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
6403
- GetAnnotations(): IEnumerable_1<IAnnotation>;
6404
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
6405
- GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
6406
- RemoveAnnotation(name: string): IAnnotation | undefined;
6407
- RemoveAnnotation(name: string): Annotation | undefined;
6408
- SetAnnotation(name: string, value: unknown): void;
6409
- SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
6410
- ToDebugString(options?: MetadataDebugStringOptions, indent?: int): string;
6411
4921
  ToString(): string;
6412
4922
  }
6413
4923
 
@@ -6450,46 +4960,19 @@ export interface StoredProcedure$instance extends ConventionAnnotatable {
6450
4960
  readonly ResultColumns: IReadOnlyList_1<StoredProcedureResultColumn>;
6451
4961
  get Schema(): string | undefined;
6452
4962
  set Schema(value: string | undefined);
6453
- AddAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation;
6454
- AddAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotation;
6455
- AddAnnotation(name: string, value: unknown): IAnnotation;
6456
- AddAnnotation(name: string, value: unknown): Annotation;
6457
- AddAnnotation(name: string, annotation: Annotation): Annotation;
6458
- AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
6459
- AddAnnotations(annotations: IEnumerable_1<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
6460
- AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
6461
4963
  AddOriginalValueParameter(propertyName: string): StoredProcedureParameter;
6462
4964
  AddParameter(propertyName: string): StoredProcedureParameter;
6463
4965
  AddResultColumn(propertyName: string): StoredProcedureResultColumn;
6464
4966
  AddRowsAffectedParameter(): StoredProcedureParameter;
6465
4967
  AddRowsAffectedResultColumn(): StoredProcedureResultColumn;
6466
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
6467
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
6468
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
6469
- AnnotationsToDebugString(indent?: int): string;
6470
- FindAnnotation(name: string): ConventionAnnotation | undefined;
6471
- FindAnnotation(name: string): IConventionAnnotation | undefined;
6472
- FindAnnotation(name: string): IAnnotation | undefined;
6473
- FindAnnotation(name: string): Annotation | undefined;
6474
4968
  FindOriginalValueParameter(propertyName: string): StoredProcedureParameter | undefined;
6475
4969
  FindParameter(propertyName: string): StoredProcedureParameter | undefined;
6476
4970
  FindResultColumn(propertyName: string): StoredProcedureResultColumn | undefined;
6477
4971
  FindRowsAffectedParameter(): StoredProcedureParameter | undefined;
6478
4972
  FindRowsAffectedResultColumn(): StoredProcedureResultColumn | undefined;
6479
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
6480
- FindRuntimeAnnotation(name: string): Annotation | undefined;
6481
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
6482
- GetAnnotations(): IEnumerable_1<ConventionAnnotation>;
6483
4973
  GetConfigurationSource(): ConfigurationSource;
6484
4974
  GetNameConfigurationSource(): Nullable_1<ConfigurationSource>;
6485
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
6486
- GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
6487
4975
  GetSchemaConfigurationSource(): Nullable_1<ConfigurationSource>;
6488
- RemoveAnnotation(name: string): IAnnotation | undefined;
6489
- RemoveAnnotation(name: string): Annotation | undefined;
6490
- SetAnnotation(name: string, value: unknown): void;
6491
- SetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation | undefined;
6492
- SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
6493
4976
  SetIsRowsAffectedReturned(rowsAffectedReturned: boolean): boolean;
6494
4977
  SetName(name: string, configurationSource: ConfigurationSource): string | undefined;
6495
4978
  SetName(name: string, schema: string, configurationSource: ConfigurationSource, skipOverrides?: boolean): void;
@@ -6562,29 +5045,7 @@ export interface StoredProcedureMapping$instance extends TableMappingBase_1$inst
6562
5045
  readonly StoredProcedureIdentifier: StoreObjectIdentifier;
6563
5046
  readonly StoreStoredProcedure: IStoreStoredProcedure;
6564
5047
  readonly TableMapping: ITableMapping | undefined;
6565
- AddAnnotation(name: string, value: unknown): IAnnotation;
6566
- AddAnnotation(name: string, value: unknown): Annotation;
6567
- AddAnnotation(name: string, annotation: Annotation): Annotation;
6568
- AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
6569
- AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
6570
5048
  AddParameterMapping(parameterMapping: IStoredProcedureParameterMapping): boolean;
6571
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
6572
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
6573
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
6574
- AnnotationsToDebugString(indent?: int): string;
6575
- FindAnnotation(name: string): IAnnotation | undefined;
6576
- FindAnnotation(name: string): Annotation | undefined;
6577
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
6578
- FindRuntimeAnnotation(name: string): Annotation | undefined;
6579
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
6580
- GetAnnotations(): IEnumerable_1<IAnnotation>;
6581
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
6582
- GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
6583
- RemoveAnnotation(name: string): IAnnotation | undefined;
6584
- RemoveAnnotation(name: string): Annotation | undefined;
6585
- SetAnnotation(name: string, value: unknown): void;
6586
- SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
6587
- ToDebugString(options?: MetadataDebugStringOptions, indent?: int): string;
6588
5049
  ToString(): string;
6589
5050
  }
6590
5051
 
@@ -6627,36 +5088,9 @@ export interface StoredProcedureParameter$instance extends ConventionAnnotatable
6627
5088
  readonly PropertyName: string | undefined;
6628
5089
  readonly StoredProcedure: StoredProcedure;
6629
5090
  StoreParameter: IStoreStoredProcedureParameter;
6630
- AddAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation;
6631
- AddAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotation;
6632
- AddAnnotation(name: string, value: unknown): IAnnotation;
6633
- AddAnnotation(name: string, value: unknown): Annotation;
6634
- AddAnnotation(name: string, annotation: Annotation): Annotation;
6635
- AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
6636
- AddAnnotations(annotations: IEnumerable_1<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
6637
- AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
6638
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
6639
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
6640
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
6641
- AnnotationsToDebugString(indent?: int): string;
6642
- FindAnnotation(name: string): ConventionAnnotation | undefined;
6643
- FindAnnotation(name: string): IConventionAnnotation | undefined;
6644
- FindAnnotation(name: string): IAnnotation | undefined;
6645
- FindAnnotation(name: string): Annotation | undefined;
6646
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
6647
- FindRuntimeAnnotation(name: string): Annotation | undefined;
6648
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
6649
- GetAnnotations(): IEnumerable_1<ConventionAnnotation>;
6650
5091
  GetDirectionConfigurationSource(): Nullable_1<ConfigurationSource>;
6651
5092
  GetNameConfigurationSource(): Nullable_1<ConfigurationSource>;
6652
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
6653
- GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
6654
5093
  IsValid(direction: ParameterDirection): boolean;
6655
- RemoveAnnotation(name: string): IAnnotation | undefined;
6656
- RemoveAnnotation(name: string): Annotation | undefined;
6657
- SetAnnotation(name: string, value: unknown): void;
6658
- SetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation | undefined;
6659
- SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
6660
5094
  SetDirection(direction: ParameterDirection, configurationSource: ConfigurationSource): ParameterDirection;
6661
5095
  SetName(name: string, configurationSource: ConfigurationSource): string;
6662
5096
  SetRemovedFromModel(): void;
@@ -6695,28 +5129,7 @@ export interface StoredProcedureParameterMapping$instance extends ColumnMappingB
6695
5129
  readonly DebugView: DebugView;
6696
5130
  readonly Parameter: IStoredProcedureParameter;
6697
5131
  readonly StoredProcedureMapping: IStoredProcedureMapping;
6698
- AddAnnotation(name: string, value: unknown): IAnnotation;
6699
- AddAnnotation(name: string, value: unknown): Annotation;
6700
- AddAnnotation(name: string, annotation: Annotation): Annotation;
6701
- AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
6702
- AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
6703
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
6704
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
6705
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
6706
- AnnotationsToDebugString(indent?: int): string;
6707
- FindAnnotation(name: string): IAnnotation | undefined;
6708
- FindAnnotation(name: string): Annotation | undefined;
6709
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
6710
- FindRuntimeAnnotation(name: string): Annotation | undefined;
6711
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
6712
- GetAnnotations(): IEnumerable_1<IAnnotation>;
6713
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
6714
- GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
6715
5132
  GetTypeMapping(): RelationalTypeMapping;
6716
- RemoveAnnotation(name: string): IAnnotation | undefined;
6717
- RemoveAnnotation(name: string): Annotation | undefined;
6718
- SetAnnotation(name: string, value: unknown): void;
6719
- SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
6720
5133
  ToString(): string;
6721
5134
  }
6722
5135
 
@@ -6757,34 +5170,7 @@ export interface StoredProcedureResultColumn$instance extends ConventionAnnotata
6757
5170
  readonly PropertyName: string | undefined;
6758
5171
  readonly StoredProcedure: StoredProcedure;
6759
5172
  StoreResultColumn: IStoreStoredProcedureResultColumn;
6760
- AddAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation;
6761
- AddAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotation;
6762
- AddAnnotation(name: string, value: unknown): IAnnotation;
6763
- AddAnnotation(name: string, value: unknown): Annotation;
6764
- AddAnnotation(name: string, annotation: Annotation): Annotation;
6765
- AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
6766
- AddAnnotations(annotations: IEnumerable_1<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
6767
- AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
6768
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
6769
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
6770
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
6771
- AnnotationsToDebugString(indent?: int): string;
6772
- FindAnnotation(name: string): ConventionAnnotation | undefined;
6773
- FindAnnotation(name: string): IConventionAnnotation | undefined;
6774
- FindAnnotation(name: string): IAnnotation | undefined;
6775
- FindAnnotation(name: string): Annotation | undefined;
6776
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
6777
- FindRuntimeAnnotation(name: string): Annotation | undefined;
6778
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
6779
- GetAnnotations(): IEnumerable_1<ConventionAnnotation>;
6780
5173
  GetNameConfigurationSource(): Nullable_1<ConfigurationSource>;
6781
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
6782
- GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
6783
- RemoveAnnotation(name: string): IAnnotation | undefined;
6784
- RemoveAnnotation(name: string): Annotation | undefined;
6785
- SetAnnotation(name: string, value: unknown): void;
6786
- SetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation | undefined;
6787
- SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
6788
5174
  SetName(name: string, configurationSource: ConfigurationSource): string | undefined;
6789
5175
  SetRemovedFromModel(): void;
6790
5176
  ToString(): string;
@@ -6822,28 +5208,7 @@ export interface StoredProcedureResultColumnMapping$instance extends ColumnMappi
6822
5208
  readonly DebugView: DebugView;
6823
5209
  readonly ResultColumn: IStoredProcedureResultColumn;
6824
5210
  readonly StoredProcedureMapping: IStoredProcedureMapping;
6825
- AddAnnotation(name: string, value: unknown): IAnnotation;
6826
- AddAnnotation(name: string, value: unknown): Annotation;
6827
- AddAnnotation(name: string, annotation: Annotation): Annotation;
6828
- AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
6829
- AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
6830
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
6831
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
6832
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
6833
- AnnotationsToDebugString(indent?: int): string;
6834
- FindAnnotation(name: string): IAnnotation | undefined;
6835
- FindAnnotation(name: string): Annotation | undefined;
6836
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
6837
- FindRuntimeAnnotation(name: string): Annotation | undefined;
6838
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
6839
- GetAnnotations(): IEnumerable_1<IAnnotation>;
6840
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
6841
- GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
6842
5211
  GetTypeMapping(): RelationalTypeMapping;
6843
- RemoveAnnotation(name: string): IAnnotation | undefined;
6844
- RemoveAnnotation(name: string): Annotation | undefined;
6845
- SetAnnotation(name: string, value: unknown): void;
6846
- SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
6847
5212
  ToString(): string;
6848
5213
  }
6849
5214
 
@@ -6877,35 +5242,10 @@ export interface StoreFunction$instance extends TableBase$instance {
6877
5242
  readonly IsBuiltIn: boolean;
6878
5243
  readonly Parameters: StoreFunctionParameter[];
6879
5244
  readonly ReturnType: string | undefined;
6880
- AddAnnotation(name: string, value: unknown): IAnnotation;
6881
- AddAnnotation(name: string, value: unknown): Annotation;
6882
- AddAnnotation(name: string, annotation: Annotation): Annotation;
6883
- AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
6884
- AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
6885
5245
  AddDbFunction(dbFunction: IRuntimeDbFunction): void;
6886
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
6887
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
6888
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
6889
- AnnotationsToDebugString(indent?: int): string;
6890
- FindAnnotation(name: string): IAnnotation | undefined;
6891
- FindAnnotation(name: string): Annotation | undefined;
6892
5246
  FindColumn(property: IProperty): IColumnBase | undefined;
6893
5247
  FindColumn(name: string): FunctionColumn | undefined;
6894
- FindColumn(name: string): IColumnBase | undefined;
6895
5248
  FindParameter(propertyName: string): StoreFunctionParameter | undefined;
6896
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
6897
- FindRuntimeAnnotation(name: string): Annotation | undefined;
6898
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
6899
- GetAnnotations(): IEnumerable_1<IAnnotation>;
6900
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
6901
- GetRowInternalForeignKeys(entityType: IEntityType): IEnumerable_1<IForeignKey>;
6902
- GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
6903
- IsOptional(typeBase: ITypeBase): boolean;
6904
- RemoveAnnotation(name: string): IAnnotation | undefined;
6905
- RemoveAnnotation(name: string): Annotation | undefined;
6906
- SetAnnotation(name: string, value: unknown): void;
6907
- SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
6908
- ToDebugString(options?: MetadataDebugStringOptions, indent?: int): string;
6909
5249
  ToString(): string;
6910
5250
  }
6911
5251
 
@@ -6939,27 +5279,6 @@ export interface StoreFunctionParameter$instance extends Annotatable {
6939
5279
  readonly IsReadOnly: boolean;
6940
5280
  readonly Name: string;
6941
5281
  readonly StoreType: string;
6942
- AddAnnotation(name: string, value: unknown): IAnnotation;
6943
- AddAnnotation(name: string, value: unknown): Annotation;
6944
- AddAnnotation(name: string, annotation: Annotation): Annotation;
6945
- AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
6946
- AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
6947
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
6948
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
6949
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
6950
- AnnotationsToDebugString(indent?: int): string;
6951
- FindAnnotation(name: string): IAnnotation | undefined;
6952
- FindAnnotation(name: string): Annotation | undefined;
6953
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
6954
- FindRuntimeAnnotation(name: string): Annotation | undefined;
6955
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
6956
- GetAnnotations(): IEnumerable_1<IAnnotation>;
6957
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
6958
- GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
6959
- RemoveAnnotation(name: string): IAnnotation | undefined;
6960
- RemoveAnnotation(name: string): Annotation | undefined;
6961
- SetAnnotation(name: string, value: unknown): void;
6962
- SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
6963
5282
  ToString(): string;
6964
5283
  }
6965
5284
 
@@ -6994,39 +5313,15 @@ export interface StoreStoredProcedure$instance extends TableBase$instance {
6994
5313
  get ReturnValue(): IStoreStoredProcedureReturnValue | undefined;
6995
5314
  set ReturnValue(value: IStoreStoredProcedureReturnValue | undefined);
6996
5315
  readonly StoredProcedures: SortedSet_1<IStoredProcedure>;
6997
- AddAnnotation(name: string, value: unknown): IAnnotation;
6998
- AddAnnotation(name: string, value: unknown): Annotation;
6999
- AddAnnotation(name: string, annotation: Annotation): Annotation;
7000
- AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
7001
- AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
7002
5316
  AddParameter(parameter: IStoreStoredProcedureParameter): void;
7003
5317
  AddResultColumn(column: IStoreStoredProcedureResultColumn): void;
7004
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
7005
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
7006
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
7007
5318
  AddStoredProcedure(storedProcedure: IRuntimeStoredProcedure): void;
7008
- AnnotationsToDebugString(indent?: int): string;
7009
- FindAnnotation(name: string): IAnnotation | undefined;
7010
- FindAnnotation(name: string): Annotation | undefined;
7011
5319
  FindColumn(property: IProperty): IColumnBase | undefined;
7012
5320
  FindColumn(name: string): IColumnBase | undefined;
7013
5321
  FindParameter(name: string): IStoreStoredProcedureParameter | undefined;
7014
5322
  FindParameter(property: IProperty): IStoreStoredProcedureParameter | undefined;
7015
5323
  FindResultColumn(name: string): IStoreStoredProcedureResultColumn | undefined;
7016
5324
  FindResultColumn(property: IProperty): IStoreStoredProcedureResultColumn | undefined;
7017
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
7018
- FindRuntimeAnnotation(name: string): Annotation | undefined;
7019
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
7020
- GetAnnotations(): IEnumerable_1<IAnnotation>;
7021
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
7022
- GetRowInternalForeignKeys(entityType: IEntityType): IEnumerable_1<IForeignKey>;
7023
- GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
7024
- IsOptional(typeBase: ITypeBase): boolean;
7025
- RemoveAnnotation(name: string): IAnnotation | undefined;
7026
- RemoveAnnotation(name: string): Annotation | undefined;
7027
- SetAnnotation(name: string, value: unknown): void;
7028
- SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
7029
- ToDebugString(options?: MetadataDebugStringOptions, indent?: int): string;
7030
5325
  ToString(): string;
7031
5326
  }
7032
5327
 
@@ -7060,30 +5355,7 @@ export interface StoreStoredProcedureParameter$instance extends ColumnBase_1$ins
7060
5355
  readonly Direction: ParameterDirection;
7061
5356
  readonly Position: int;
7062
5357
  readonly StoredProcedure: StoreStoredProcedure;
7063
- AddAnnotation(name: string, value: unknown): IAnnotation;
7064
- AddAnnotation(name: string, value: unknown): Annotation;
7065
- AddAnnotation(name: string, annotation: Annotation): Annotation;
7066
- AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
7067
- AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
7068
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
7069
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
7070
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
7071
- AnnotationsToDebugString(indent?: int): string;
7072
- FindAnnotation(name: string): IAnnotation | undefined;
7073
- FindAnnotation(name: string): Annotation | undefined;
7074
- FindColumnMapping(entityType: IReadOnlyEntityType): IColumnMappingBase | undefined;
7075
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
7076
- FindRuntimeAnnotation(name: string): Annotation | undefined;
7077
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
7078
- GetAnnotations(): IEnumerable_1<IAnnotation>;
7079
5358
  GetDefaultStoreTypeMapping(): RelationalTypeMapping;
7080
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
7081
- GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
7082
- RemoveAnnotation(name: string): IAnnotation | undefined;
7083
- RemoveAnnotation(name: string): Annotation | undefined;
7084
- SetAnnotation(name: string, value: unknown): void;
7085
- SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
7086
- ToDebugString(options?: MetadataDebugStringOptions, indent?: int): string;
7087
5359
  ToString(): string;
7088
5360
  }
7089
5361
 
@@ -7116,30 +5388,7 @@ export interface StoreStoredProcedureResultColumn$instance extends ColumnBase_1$
7116
5388
  readonly DebugView: DebugView;
7117
5389
  readonly Position: int;
7118
5390
  readonly StoredProcedure: StoreStoredProcedure;
7119
- AddAnnotation(name: string, value: unknown): IAnnotation;
7120
- AddAnnotation(name: string, value: unknown): Annotation;
7121
- AddAnnotation(name: string, annotation: Annotation): Annotation;
7122
- AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
7123
- AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
7124
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
7125
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
7126
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
7127
- AnnotationsToDebugString(indent?: int): string;
7128
- FindAnnotation(name: string): IAnnotation | undefined;
7129
- FindAnnotation(name: string): Annotation | undefined;
7130
- FindColumnMapping(entityType: IReadOnlyEntityType): IColumnMappingBase | undefined;
7131
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
7132
- FindRuntimeAnnotation(name: string): Annotation | undefined;
7133
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
7134
- GetAnnotations(): IEnumerable_1<IAnnotation>;
7135
5391
  GetDefaultStoreTypeMapping(): RelationalTypeMapping;
7136
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
7137
- GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
7138
- RemoveAnnotation(name: string): IAnnotation | undefined;
7139
- RemoveAnnotation(name: string): Annotation | undefined;
7140
- SetAnnotation(name: string, value: unknown): void;
7141
- SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
7142
- ToDebugString(options?: MetadataDebugStringOptions, indent?: int): string;
7143
5392
  ToString(): string;
7144
5393
  }
7145
5394
 
@@ -7171,30 +5420,7 @@ export interface StoreStoredProcedureReturnValue$instance extends ColumnBase_1$i
7171
5420
 
7172
5421
  readonly DebugView: DebugView;
7173
5422
  readonly StoredProcedure: StoreStoredProcedure;
7174
- AddAnnotation(name: string, value: unknown): IAnnotation;
7175
- AddAnnotation(name: string, value: unknown): Annotation;
7176
- AddAnnotation(name: string, annotation: Annotation): Annotation;
7177
- AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
7178
- AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
7179
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
7180
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
7181
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
7182
- AnnotationsToDebugString(indent?: int): string;
7183
- FindAnnotation(name: string): IAnnotation | undefined;
7184
- FindAnnotation(name: string): Annotation | undefined;
7185
- FindColumnMapping(entityType: IReadOnlyEntityType): IColumnMappingBase | undefined;
7186
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
7187
- FindRuntimeAnnotation(name: string): Annotation | undefined;
7188
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
7189
- GetAnnotations(): IEnumerable_1<IAnnotation>;
7190
5423
  GetDefaultStoreTypeMapping(): RelationalTypeMapping;
7191
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
7192
- GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
7193
- RemoveAnnotation(name: string): IAnnotation | undefined;
7194
- RemoveAnnotation(name: string): Annotation | undefined;
7195
- SetAnnotation(name: string, value: unknown): void;
7196
- SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
7197
- ToDebugString(options?: MetadataDebugStringOptions, indent?: int): string;
7198
5424
  ToString(): string;
7199
5425
  }
7200
5426
 
@@ -7233,34 +5459,9 @@ export interface Table$instance extends TableBase$instance {
7233
5459
  readonly ReferencingForeignKeyConstraints: SortedSet_1<ForeignKeyConstraint>;
7234
5460
  readonly Triggers: SortedDictionary_2<System_Internal.String, ITrigger>;
7235
5461
  readonly UniqueConstraints: SortedDictionary_2<System_Internal.String, UniqueConstraint>;
7236
- AddAnnotation(name: string, value: unknown): IAnnotation;
7237
- AddAnnotation(name: string, value: unknown): Annotation;
7238
- AddAnnotation(name: string, annotation: Annotation): Annotation;
7239
- AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
7240
- AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
7241
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
7242
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
7243
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
7244
- AnnotationsToDebugString(indent?: int): string;
7245
- FindAnnotation(name: string): IAnnotation | undefined;
7246
- FindAnnotation(name: string): Annotation | undefined;
7247
5462
  FindColumn(property: IProperty): IColumnBase | undefined;
7248
5463
  FindColumn(name: string): Column | undefined;
7249
- FindColumn(name: string): IColumnBase | undefined;
7250
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
7251
- FindRuntimeAnnotation(name: string): Annotation | undefined;
7252
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
7253
5464
  FindUniqueConstraint(name: string): UniqueConstraint | undefined;
7254
- GetAnnotations(): IEnumerable_1<IAnnotation>;
7255
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
7256
- GetRowInternalForeignKeys(entityType: IEntityType): IEnumerable_1<IForeignKey>;
7257
- GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
7258
- IsOptional(typeBase: ITypeBase): boolean;
7259
- RemoveAnnotation(name: string): IAnnotation | undefined;
7260
- RemoveAnnotation(name: string): Annotation | undefined;
7261
- SetAnnotation(name: string, value: unknown): void;
7262
- SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
7263
- ToDebugString(options?: MetadataDebugStringOptions, indent?: int): string;
7264
5465
  ToString(): string;
7265
5466
  }
7266
5467
 
@@ -7303,32 +5504,11 @@ export interface TableBase$instance extends Annotatable {
7303
5504
  get RowInternalForeignKeys(): SortedDictionary_2<IEntityType, IEnumerable_1<IForeignKey>> | undefined;
7304
5505
  set RowInternalForeignKeys(value: SortedDictionary_2<IEntityType, IEnumerable_1<IForeignKey>> | undefined);
7305
5506
  readonly Schema: string | undefined;
7306
- AddAnnotation(name: string, value: unknown): IAnnotation;
7307
- AddAnnotation(name: string, value: unknown): Annotation;
7308
- AddAnnotation(name: string, annotation: Annotation): Annotation;
7309
- AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
7310
- AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
7311
5507
  AddRowInternalForeignKey(entityType: IEntityType, foreignKey: IForeignKey): void;
7312
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
7313
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
7314
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
7315
5508
  AddTypeMapping(tableMapping: ITableMappingBase, optional: Nullable_1<System_Internal.Boolean>): void;
7316
- AnnotationsToDebugString(indent?: int): string;
7317
- FindAnnotation(name: string): IAnnotation | undefined;
7318
- FindAnnotation(name: string): Annotation | undefined;
7319
5509
  FindColumn(name: string): IColumnBase | undefined;
7320
5510
  FindColumn(property: IProperty): IColumnBase | undefined;
7321
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
7322
- FindRuntimeAnnotation(name: string): Annotation | undefined;
7323
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
7324
- GetAnnotations(): IEnumerable_1<IAnnotation>;
7325
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
7326
- GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
7327
5511
  IsOptional(typeBase: ITypeBase): boolean;
7328
- RemoveAnnotation(name: string): IAnnotation | undefined;
7329
- RemoveAnnotation(name: string): Annotation | undefined;
7330
- SetAnnotation(name: string, value: unknown): void;
7331
- SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
7332
5512
  ToString(): string;
7333
5513
  }
7334
5514
 
@@ -7381,28 +5561,7 @@ export interface TableIndex$instance extends Annotatable {
7381
5561
  readonly MappedIndexes: SortedSet_1<IIndex>;
7382
5562
  readonly Name: string;
7383
5563
  readonly Table: Table;
7384
- AddAnnotation(name: string, value: unknown): IAnnotation;
7385
- AddAnnotation(name: string, value: unknown): Annotation;
7386
- AddAnnotation(name: string, annotation: Annotation): Annotation;
7387
- AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
7388
- AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
7389
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
7390
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
7391
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
7392
- AnnotationsToDebugString(indent?: int): string;
7393
- FindAnnotation(name: string): IAnnotation | undefined;
7394
- FindAnnotation(name: string): Annotation | undefined;
7395
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
7396
- FindRuntimeAnnotation(name: string): Annotation | undefined;
7397
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
7398
- GetAnnotations(): IEnumerable_1<IAnnotation>;
7399
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
7400
5564
  GetRowIndexValueFactory(): IRowIndexValueFactory;
7401
- GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
7402
- RemoveAnnotation(name: string): IAnnotation | undefined;
7403
- RemoveAnnotation(name: string): Annotation | undefined;
7404
- SetAnnotation(name: string, value: unknown): void;
7405
- SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
7406
5565
  SetRowIndexValueFactory(factory: IRowIndexValueFactory): void;
7407
5566
  ToString(): string;
7408
5567
  }
@@ -7457,29 +5616,7 @@ export interface TableMapping$instance extends TableMappingBase_1$instance<Colum
7457
5616
  set InsertStoredProcedureMapping(value: IStoredProcedureMapping | undefined);
7458
5617
  get UpdateStoredProcedureMapping(): IStoredProcedureMapping | undefined;
7459
5618
  set UpdateStoredProcedureMapping(value: IStoredProcedureMapping | undefined);
7460
- AddAnnotation(name: string, value: unknown): IAnnotation;
7461
- AddAnnotation(name: string, value: unknown): Annotation;
7462
- AddAnnotation(name: string, annotation: Annotation): Annotation;
7463
- AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
7464
- AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
7465
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
7466
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
7467
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
7468
- AnnotationsToDebugString(indent?: int): string;
7469
- FindAnnotation(name: string): IAnnotation | undefined;
7470
- FindAnnotation(name: string): Annotation | undefined;
7471
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
7472
- FindRuntimeAnnotation(name: string): Annotation | undefined;
7473
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
7474
- GetAnnotations(): IEnumerable_1<IAnnotation>;
7475
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
7476
- GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
7477
- RemoveAnnotation(name: string): IAnnotation | undefined;
7478
- RemoveAnnotation(name: string): Annotation | undefined;
7479
- SetAnnotation(name: string, value: unknown): void;
7480
- SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
7481
5619
  SetIsSharedTablePrincipal(isSharedTablePrincipal: boolean): void;
7482
- ToDebugString(options?: MetadataDebugStringOptions, indent?: int): string;
7483
5620
  ToString(): string;
7484
5621
  }
7485
5622
 
@@ -7515,28 +5652,7 @@ export interface TableMappingBase_1$instance<TColumnMapping extends IColumnMappi
7515
5652
  IsSplitEntityTypePrincipal: Nullable_1<System_Internal.Boolean>;
7516
5653
  readonly Table: ITable | TableBase;
7517
5654
  readonly TypeBase: ITypeBase;
7518
- AddAnnotation(name: string, value: unknown): IAnnotation;
7519
- AddAnnotation(name: string, value: unknown): Annotation;
7520
- AddAnnotation(name: string, annotation: Annotation): Annotation;
7521
- AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
7522
- AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
7523
5655
  AddColumnMapping(columnMapping: TColumnMapping): boolean;
7524
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
7525
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
7526
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
7527
- AnnotationsToDebugString(indent?: int): string;
7528
- FindAnnotation(name: string): IAnnotation | undefined;
7529
- FindAnnotation(name: string): Annotation | undefined;
7530
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
7531
- FindRuntimeAnnotation(name: string): Annotation | undefined;
7532
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
7533
- GetAnnotations(): IEnumerable_1<IAnnotation>;
7534
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
7535
- GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
7536
- RemoveAnnotation(name: string): IAnnotation | undefined;
7537
- RemoveAnnotation(name: string): Annotation | undefined;
7538
- SetAnnotation(name: string, value: unknown): void;
7539
- SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
7540
5656
  SetIsSharedTablePrincipal(isSharedTablePrincipal: boolean): void;
7541
5657
  ToString(): string;
7542
5658
  }
@@ -7592,34 +5708,7 @@ export interface Trigger$instance extends ConventionAnnotatable {
7592
5708
  readonly EntityType: EntityType;
7593
5709
  readonly IsInModel: boolean;
7594
5710
  readonly ModelName: string;
7595
- AddAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation;
7596
- AddAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotation;
7597
- AddAnnotation(name: string, value: unknown): IAnnotation;
7598
- AddAnnotation(name: string, value: unknown): Annotation;
7599
- AddAnnotation(name: string, annotation: Annotation): Annotation;
7600
- AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
7601
- AddAnnotations(annotations: IEnumerable_1<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
7602
- AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
7603
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
7604
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
7605
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
7606
- AnnotationsToDebugString(indent?: int): string;
7607
- FindAnnotation(name: string): ConventionAnnotation | undefined;
7608
- FindAnnotation(name: string): IConventionAnnotation | undefined;
7609
- FindAnnotation(name: string): IAnnotation | undefined;
7610
- FindAnnotation(name: string): Annotation | undefined;
7611
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
7612
- FindRuntimeAnnotation(name: string): Annotation | undefined;
7613
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
7614
- GetAnnotations(): IEnumerable_1<ConventionAnnotation>;
7615
5711
  GetConfigurationSource(): ConfigurationSource;
7616
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
7617
- GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
7618
- RemoveAnnotation(name: string): IAnnotation | undefined;
7619
- RemoveAnnotation(name: string): Annotation | undefined;
7620
- SetAnnotation(name: string, value: unknown): void;
7621
- SetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation | undefined;
7622
- SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
7623
5712
  SetRemovedFromModel(): void;
7624
5713
  ToString(): string;
7625
5714
  UpdateConfigurationSource(configurationSource: ConfigurationSource): void;
@@ -7659,8 +5748,8 @@ export interface TypeBase$instance extends ConventionAnnotatable {
7659
5748
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Internal_IRuntimeTypeBase: never;
7660
5749
 
7661
5750
  readonly BaseBuilder: InternalTypeBaseBuilder;
7662
- get BaseType(): EntityType | undefined | TypeBase | undefined;
7663
- set BaseType(value: EntityType | undefined | TypeBase | undefined);
5751
+ get BaseType(): ComplexType | undefined | TypeBase | undefined;
5752
+ set BaseType(value: ComplexType | undefined | TypeBase | undefined);
7664
5753
  readonly ClrType: Type;
7665
5754
  get ConstructorBinding(): InstantiationBinding | undefined;
7666
5755
  set ConstructorBinding(value: InstantiationBinding | undefined);
@@ -7679,14 +5768,6 @@ export interface TypeBase$instance extends ConventionAnnotatable {
7679
5768
  readonly ShadowValuesFactory: Func_2<IDictionary_2<System_Internal.String, unknown | undefined>, ISnapshot>;
7680
5769
  readonly StoreGeneratedValuesFactory: Func_1<ISnapshot>;
7681
5770
  readonly TemporaryValuesFactory: Func_2<IInternalEntry, ISnapshot>;
7682
- AddAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation;
7683
- AddAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotation;
7684
- AddAnnotation(name: string, value: unknown): IAnnotation;
7685
- AddAnnotation(name: string, value: unknown): Annotation;
7686
- AddAnnotation(name: string, annotation: Annotation): Annotation;
7687
- AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
7688
- AddAnnotations(annotations: IEnumerable_1<IConventionAnnotation>, fromDataAnnotation?: boolean): void;
7689
- AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
7690
5771
  AddComplexProperty(name: string, propertyType: Type, targetType: Type, collection: boolean, configurationSource: ConfigurationSource): ComplexProperty | undefined;
7691
5772
  AddComplexProperty(memberInfo: MemberInfo, collection: boolean, configurationSource: ConfigurationSource): ComplexProperty | undefined;
7692
5773
  AddComplexProperty(name: string, collection: boolean, configurationSource: ConfigurationSource): ComplexProperty | undefined;
@@ -7696,15 +5777,7 @@ export interface TypeBase$instance extends ConventionAnnotatable {
7696
5777
  AddProperty(memberInfo: MemberInfo, configurationSource: ConfigurationSource): Property | undefined;
7697
5778
  AddProperty(name: string, configurationSource: ConfigurationSource): Property | undefined;
7698
5779
  AddProperty(name: string, propertyType: Type, memberInfo: MemberInfo, typeConfigurationSource: Nullable_1<ConfigurationSource>, configurationSource: ConfigurationSource): Property | undefined;
7699
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
7700
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
7701
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
7702
- AnnotationsToDebugString(indent?: int): string;
7703
5780
  CalculateCounts(): PropertyCounts;
7704
- FindAnnotation(name: string): ConventionAnnotation | undefined;
7705
- FindAnnotation(name: string): IConventionAnnotation | undefined;
7706
- FindAnnotation(name: string): IAnnotation | undefined;
7707
- FindAnnotation(name: string): Annotation | undefined;
7708
5781
  FindComplexPropertiesInHierarchy(propertyName: string): IEnumerable_1<ComplexProperty>;
7709
5782
  FindComplexProperty(name: string): ComplexProperty | undefined;
7710
5783
  FindDeclaredComplexProperty(name: string): ComplexProperty | undefined;
@@ -7721,10 +5794,6 @@ export interface TypeBase$instance extends ConventionAnnotatable {
7721
5794
  FindProperties(propertyNames: IReadOnlyList_1<System_Internal.String>): IReadOnlyList_1<Property> | undefined;
7722
5795
  FindPropertiesInHierarchy(propertyName: string): IEnumerable_1<Property>;
7723
5796
  FindProperty(name: string): Property | undefined;
7724
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
7725
- FindRuntimeAnnotation(name: string): Annotation | undefined;
7726
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
7727
- GetAnnotations(): IEnumerable_1<ConventionAnnotation>;
7728
5797
  GetBaseTypeConfigurationSource(): Nullable_1<ConfigurationSource>;
7729
5798
  GetChangeTrackingStrategy(): ChangeTrackingStrategy;
7730
5799
  GetChangeTrackingStrategyConfigurationSource(): Nullable_1<ConfigurationSource>;
@@ -7747,13 +5816,11 @@ export interface TypeBase$instance extends ConventionAnnotatable {
7747
5816
  GetFlattenedValueGeneratingProperties(): IEnumerable_1<Property>;
7748
5817
  GetIgnoredMembers(): IEnumerable_1<System_Internal.String>;
7749
5818
  GetMembers(): IEnumerable_1<PropertyBase>;
7750
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
7751
5819
  GetOrCreateEmptyMaterializer(source: IStructuralTypeMaterializerSource): Func_2<MaterializationContext, unknown>;
7752
5820
  GetOrCreateMaterializer(source: IStructuralTypeMaterializerSource): Func_2<MaterializationContext, unknown>;
7753
5821
  GetProperties(): IEnumerable_1<Property>;
7754
5822
  GetPropertyAccessMode(): PropertyAccessMode;
7755
5823
  GetRootType(): TypeBase;
7756
- GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
7757
5824
  GetRuntimeFields(): IReadOnlyDictionary_2<System_Internal.String, FieldInfo>;
7758
5825
  GetRuntimeProperties(): IReadOnlyDictionary_2<System_Internal.String, PropertyInfo>;
7759
5826
  GetServiceOnlyConstructorBindingConfigurationSource(): Nullable_1<ConfigurationSource>;
@@ -7761,16 +5828,11 @@ export interface TypeBase$instance extends ConventionAnnotatable {
7761
5828
  IsAssignableFrom(derivedType: TypeBase): boolean;
7762
5829
  IsIgnored(name: string): boolean;
7763
5830
  OnTypeMemberIgnored(name: string): string | undefined;
7764
- RemoveAnnotation(name: string): IAnnotation | undefined;
7765
- RemoveAnnotation(name: string): Annotation | undefined;
7766
5831
  RemoveComplexProperty(name: string): ComplexProperty | undefined;
7767
5832
  RemoveComplexProperty(property: ComplexProperty): ComplexProperty | undefined;
7768
5833
  RemoveIgnored(name: string): string | undefined;
7769
5834
  RemoveProperty(name: string): Property | undefined;
7770
5835
  RemoveProperty(property: Property): Property | undefined;
7771
- SetAnnotation(name: string, value: unknown): void;
7772
- SetAnnotation(name: string, value: unknown, configurationSource: ConfigurationSource): ConventionAnnotation | undefined;
7773
- SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
7774
5836
  SetBaseType(newBaseType: TypeBase, configurationSource: ConfigurationSource): TypeBase | undefined;
7775
5837
  SetChangeTrackingStrategy(changeTrackingStrategy: Nullable_1<ChangeTrackingStrategy>, configurationSource: ConfigurationSource): Nullable_1<ChangeTrackingStrategy>;
7776
5838
  SetConstructorBinding(constructorBinding: InstantiationBinding, configurationSource: ConfigurationSource): InstantiationBinding | undefined;
@@ -7817,28 +5879,7 @@ export interface UniqueConstraint$instance extends Annotatable {
7817
5879
  readonly MappedKeys: SortedSet_1<IKey>;
7818
5880
  readonly Name: string;
7819
5881
  readonly Table: Table;
7820
- AddAnnotation(name: string, value: unknown): IAnnotation;
7821
- AddAnnotation(name: string, value: unknown): Annotation;
7822
- AddAnnotation(name: string, annotation: Annotation): Annotation;
7823
- AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
7824
- AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
7825
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
7826
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
7827
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
7828
- AnnotationsToDebugString(indent?: int): string;
7829
- FindAnnotation(name: string): IAnnotation | undefined;
7830
- FindAnnotation(name: string): Annotation | undefined;
7831
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
7832
- FindRuntimeAnnotation(name: string): Annotation | undefined;
7833
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
7834
- GetAnnotations(): IEnumerable_1<IAnnotation>;
7835
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
7836
5882
  GetRowKeyValueFactory(): IRowKeyValueFactory;
7837
- GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
7838
- RemoveAnnotation(name: string): IAnnotation | undefined;
7839
- RemoveAnnotation(name: string): Annotation | undefined;
7840
- SetAnnotation(name: string, value: unknown): void;
7841
- SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
7842
5883
  SetRowKeyValueFactory(factory: IRowKeyValueFactory): void;
7843
5884
  ToString(): string;
7844
5885
  }
@@ -7888,33 +5929,8 @@ export interface View$instance extends TableBase$instance {
7888
5929
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IView: never;
7889
5930
 
7890
5931
  readonly ViewDefinitionSql: string | undefined;
7891
- AddAnnotation(name: string, value: unknown): IAnnotation;
7892
- AddAnnotation(name: string, value: unknown): Annotation;
7893
- AddAnnotation(name: string, annotation: Annotation): Annotation;
7894
- AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
7895
- AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
7896
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
7897
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
7898
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
7899
- AnnotationsToDebugString(indent?: int): string;
7900
- FindAnnotation(name: string): IAnnotation | undefined;
7901
- FindAnnotation(name: string): Annotation | undefined;
7902
5932
  FindColumn(property: IProperty): IColumnBase | undefined;
7903
5933
  FindColumn(name: string): ViewColumn | undefined;
7904
- FindColumn(name: string): IColumnBase | undefined;
7905
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
7906
- FindRuntimeAnnotation(name: string): Annotation | undefined;
7907
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
7908
- GetAnnotations(): IEnumerable_1<IAnnotation>;
7909
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
7910
- GetRowInternalForeignKeys(entityType: IEntityType): IEnumerable_1<IForeignKey>;
7911
- GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
7912
- IsOptional(typeBase: ITypeBase): boolean;
7913
- RemoveAnnotation(name: string): IAnnotation | undefined;
7914
- RemoveAnnotation(name: string): Annotation | undefined;
7915
- SetAnnotation(name: string, value: unknown): void;
7916
- SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
7917
- ToDebugString(options?: MetadataDebugStringOptions, indent?: int): string;
7918
5934
  ToString(): string;
7919
5935
  }
7920
5936
 
@@ -7945,29 +5961,6 @@ export interface ViewColumn$instance extends ColumnBase_1$instance<ViewColumnMap
7945
5961
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IViewColumn: never;
7946
5962
 
7947
5963
  readonly View: View;
7948
- AddAnnotation(name: string, value: unknown): IAnnotation;
7949
- AddAnnotation(name: string, value: unknown): Annotation;
7950
- AddAnnotation(name: string, annotation: Annotation): Annotation;
7951
- AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
7952
- AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
7953
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
7954
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
7955
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
7956
- AnnotationsToDebugString(indent?: int): string;
7957
- FindAnnotation(name: string): IAnnotation | undefined;
7958
- FindAnnotation(name: string): Annotation | undefined;
7959
- FindColumnMapping(entityType: IReadOnlyEntityType): IColumnMappingBase | undefined;
7960
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
7961
- FindRuntimeAnnotation(name: string): Annotation | undefined;
7962
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
7963
- GetAnnotations(): IEnumerable_1<IAnnotation>;
7964
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
7965
- GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
7966
- RemoveAnnotation(name: string): IAnnotation | undefined;
7967
- RemoveAnnotation(name: string): Annotation | undefined;
7968
- SetAnnotation(name: string, value: unknown): void;
7969
- SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
7970
- ToDebugString(options?: MetadataDebugStringOptions, indent?: int): string;
7971
5964
  ToString(): string;
7972
5965
  }
7973
5966
 
@@ -7998,28 +5991,7 @@ export interface ViewColumnMapping$instance extends ColumnMappingBase$instance {
7998
5991
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IViewColumnMapping: never;
7999
5992
 
8000
5993
  readonly ViewMapping: IViewMapping;
8001
- AddAnnotation(name: string, value: unknown): IAnnotation;
8002
- AddAnnotation(name: string, value: unknown): Annotation;
8003
- AddAnnotation(name: string, annotation: Annotation): Annotation;
8004
- AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
8005
- AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
8006
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
8007
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
8008
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
8009
- AnnotationsToDebugString(indent?: int): string;
8010
- FindAnnotation(name: string): IAnnotation | undefined;
8011
- FindAnnotation(name: string): Annotation | undefined;
8012
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
8013
- FindRuntimeAnnotation(name: string): Annotation | undefined;
8014
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
8015
- GetAnnotations(): IEnumerable_1<IAnnotation>;
8016
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
8017
- GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
8018
5994
  GetTypeMapping(): RelationalTypeMapping;
8019
- RemoveAnnotation(name: string): IAnnotation | undefined;
8020
- RemoveAnnotation(name: string): Annotation | undefined;
8021
- SetAnnotation(name: string, value: unknown): void;
8022
- SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
8023
5995
  ToString(): string;
8024
5996
  }
8025
5997
 
@@ -8050,29 +6022,7 @@ export interface ViewMapping$instance extends TableMappingBase_1$instance<ViewCo
8050
6022
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IViewMapping: never;
8051
6023
 
8052
6024
  readonly View: IView;
8053
- AddAnnotation(name: string, value: unknown): IAnnotation;
8054
- AddAnnotation(name: string, value: unknown): Annotation;
8055
- AddAnnotation(name: string, annotation: Annotation): Annotation;
8056
- AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
8057
- AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
8058
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
8059
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
8060
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
8061
- AnnotationsToDebugString(indent?: int): string;
8062
- FindAnnotation(name: string): IAnnotation | undefined;
8063
- FindAnnotation(name: string): Annotation | undefined;
8064
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
8065
- FindRuntimeAnnotation(name: string): Annotation | undefined;
8066
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
8067
- GetAnnotations(): IEnumerable_1<IAnnotation>;
8068
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
8069
- GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
8070
- RemoveAnnotation(name: string): IAnnotation | undefined;
8071
- RemoveAnnotation(name: string): Annotation | undefined;
8072
- SetAnnotation(name: string, value: unknown): void;
8073
- SetAnnotation(name: string, annotation: Annotation, oldAnnotation: Annotation): Annotation | undefined;
8074
6025
  SetIsSharedTablePrincipal(isSharedTablePrincipal: boolean): void;
8075
- ToDebugString(options?: MetadataDebugStringOptions, indent?: int): string;
8076
6026
  ToString(): string;
8077
6027
  }
8078
6028