@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
@@ -5239,14 +5239,13 @@ export const PropertyParameterBinding: {
5239
5239
 
5240
5240
  export type PropertyParameterBinding = PropertyParameterBinding$instance;
5241
5241
 
5242
- export interface RelationalAdHocMapper$instance extends AdHocMapper$instance {
5242
+ export interface RelationalAdHocMapper$instance extends AdHocMapper$instance, IAdHocMapper$instance {
5243
5243
  readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_RelationalAdHocMapper: never;
5244
5244
 
5245
5245
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IAdHocMapper: never;
5246
5246
 
5247
5247
  readonly RelationalDependencies: RelationalAdHocMapperDependencies;
5248
5248
  BuildConventionSet(): ConventionSet;
5249
- GetOrAddEntityType(clrType: Type): RuntimeEntityType;
5250
5249
  }
5251
5250
 
5252
5251
 
@@ -5359,29 +5358,6 @@ export interface RuntimeComplexProperty$instance extends RuntimePropertyBase$ins
5359
5358
  readonly DeclaringType: RuntimeTypeBase;
5360
5359
  readonly IsCollection: boolean;
5361
5360
  readonly Sentinel: unknown | undefined;
5362
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
5363
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
5364
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
5365
- AnnotationsToDebugString(indent?: int): string;
5366
- FindAnnotation(name: string): IAnnotation | undefined;
5367
- FindAnnotation(name: string): Annotation | undefined;
5368
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
5369
- FindRuntimeAnnotation(name: string): Annotation | undefined;
5370
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
5371
- GetAnnotations(): IEnumerable_1<IAnnotation>;
5372
- GetCollectionAccessor(): IClrCollectionAccessor | undefined;
5373
- GetCurrentValueComparer(): IComparer_1<IUpdateEntry>;
5374
- GetFieldName(): string | undefined;
5375
- GetGetter(): IClrPropertyGetter;
5376
- GetIndex(): int;
5377
- GetIndexedCollectionAccessor(): IClrIndexedCollectionAccessor;
5378
- GetMemberInfo(forMaterialization: boolean, forSet: boolean): MemberInfo;
5379
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
5380
- GetPropertyAccessMode(): PropertyAccessMode;
5381
- GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
5382
- GetSetter(): IClrPropertySetter;
5383
- GetShadowIndex(): int;
5384
- IsShadowProperty(): boolean;
5385
5361
  ToString(): string;
5386
5362
  }
5387
5363
 
@@ -5421,52 +5397,13 @@ export interface RuntimeComplexType$instance extends RuntimeTypeBase$instance {
5421
5397
  readonly DebugView: DebugView;
5422
5398
  get ServiceOnlyConstructorBinding(): InstantiationBinding | undefined;
5423
5399
  set ServiceOnlyConstructorBinding(value: InstantiationBinding | undefined);
5424
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
5425
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
5426
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
5427
- AnnotationsToDebugString(indent?: int): string;
5428
5400
  CalculateCounts(): PropertyCounts;
5429
- DisplayName(): string;
5430
- DisplayName(omitSharedType: boolean): string;
5431
- FindAnnotation(name: string): IAnnotation | undefined;
5432
- FindAnnotation(name: string): Annotation | undefined;
5433
- FindComplexProperty(name: string): RuntimeComplexProperty | undefined;
5434
- FindComplexProperty(name: string): IComplexProperty | undefined;
5435
- FindComplexProperty(memberInfo: MemberInfo): IComplexProperty | undefined;
5436
- FindComplexProperty(name: string): IReadOnlyComplexProperty | undefined;
5437
- FindComplexProperty(memberInfo: MemberInfo): IReadOnlyComplexProperty | undefined;
5438
- FindDiscriminatorProperty(): IProperty | undefined;
5439
- FindDiscriminatorProperty(): IReadOnlyProperty | undefined;
5440
- FindIndexerPropertyInfo(): PropertyInfo | undefined;
5441
5401
  FindMember(name: string): RuntimePropertyBase | undefined;
5442
- FindMember(name: string): IPropertyBase | undefined;
5443
- FindMember(name: string): IReadOnlyPropertyBase | undefined;
5444
5402
  FindMembersInHierarchy(name: string): IEnumerable_1<RuntimePropertyBase>;
5445
- FindProperties(propertyNames: IEnumerable_1<System_Internal.String>): IReadOnlyList_1<RuntimeProperty> | undefined;
5446
- FindProperties(propertyNames: IReadOnlyList_1<System_Internal.String>): IReadOnlyList_1<IProperty> | undefined;
5447
- FindProperty(name: string): RuntimeProperty | undefined;
5448
- FindProperty(memberInfo: MemberInfo): IProperty | undefined;
5449
- FindProperty(name: string): IProperty | undefined;
5450
- FindProperty(name: string): IReadOnlyProperty | undefined;
5451
- FindProperty(memberInfo: MemberInfo): IReadOnlyProperty | undefined;
5452
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
5453
- FindRuntimeAnnotation(name: string): Annotation | undefined;
5454
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
5455
- GetAnnotations(): IEnumerable_1<IAnnotation>;
5456
- GetChangeTrackingStrategy(): ChangeTrackingStrategy;
5457
- GetConstructorBindingConfigurationSource(): Nullable_1<ConfigurationSource>;
5458
5403
  GetDeclaredMembers(): IEnumerable_1<RuntimePropertyBase>;
5459
- GetDerivedTypes(): IEnumerable_1<RuntimeTypeBase>;
5460
- GetDiscriminatorValue(): unknown | undefined;
5461
5404
  GetMembers(): IEnumerable_1<RuntimePropertyBase>;
5462
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
5463
5405
  GetOrCreateEmptyMaterializer(source: IStructuralTypeMaterializerSource): Func_2<MaterializationContext, unknown>;
5464
5406
  GetOrCreateMaterializer(source: IStructuralTypeMaterializerSource): Func_2<MaterializationContext, unknown>;
5465
- GetPropertyAccessMode(): PropertyAccessMode;
5466
- GetRootType(): IReadOnlyTypeBase;
5467
- GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
5468
- IsAbstract(): boolean;
5469
- IsAssignableFrom(derivedType: IReadOnlyTypeBase): boolean;
5470
5407
  SetCounts(value: PropertyCounts): void;
5471
5408
  ToString(): string;
5472
5409
  }
@@ -5505,18 +5442,6 @@ export interface RuntimeDbFunction$instance extends AnnotatableBase {
5505
5442
  get TypeMapping(): RelationalTypeMapping | undefined;
5506
5443
  set TypeMapping(value: RelationalTypeMapping | undefined);
5507
5444
  AddParameter(name: string, clrType: Type, propagatesNullability: boolean, storeType: string, typeMapping?: RelationalTypeMapping): RuntimeDbFunctionParameter;
5508
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
5509
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
5510
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
5511
- AnnotationsToDebugString(indent?: int): string;
5512
- FindAnnotation(name: string): Annotation | undefined;
5513
- FindAnnotation(name: string): IAnnotation | undefined;
5514
- FindRuntimeAnnotation(name: string): Annotation | undefined;
5515
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
5516
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
5517
- GetAnnotations(): IEnumerable_1<Annotation>;
5518
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
5519
- GetRuntimeAnnotations(): IEnumerable_1<Annotation>;
5520
5445
  ToString(): string;
5521
5446
  }
5522
5447
 
@@ -5549,18 +5474,6 @@ export interface RuntimeDbFunctionParameter$instance extends AnnotatableBase {
5549
5474
  readonly Name: string;
5550
5475
  get TypeMapping(): RelationalTypeMapping | undefined;
5551
5476
  set TypeMapping(value: RelationalTypeMapping | undefined);
5552
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
5553
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
5554
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
5555
- AnnotationsToDebugString(indent?: int): string;
5556
- FindAnnotation(name: string): Annotation | undefined;
5557
- FindAnnotation(name: string): IAnnotation | undefined;
5558
- FindRuntimeAnnotation(name: string): Annotation | undefined;
5559
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
5560
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
5561
- GetAnnotations(): IEnumerable_1<Annotation>;
5562
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
5563
- GetRuntimeAnnotations(): IEnumerable_1<Annotation>;
5564
5477
  ToString(): string;
5565
5478
  }
5566
5479
 
@@ -5593,23 +5506,11 @@ export interface RuntimeElementType$instance extends RuntimeAnnotatableBase {
5593
5506
  readonly DebugView: DebugView;
5594
5507
  readonly IsNullable: boolean;
5595
5508
  TypeMapping: CoreTypeMapping;
5596
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
5597
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
5598
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
5599
- AnnotationsToDebugString(indent?: int): string;
5600
- FindAnnotation(name: string): Annotation | undefined;
5601
- FindAnnotation(name: string): IAnnotation | undefined;
5602
- FindRuntimeAnnotation(name: string): Annotation | undefined;
5603
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
5604
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
5605
5509
  FindTypeMapping(): CoreTypeMapping | undefined;
5606
- GetAnnotations(): IEnumerable_1<IAnnotation>;
5607
5510
  GetJsonValueReaderWriter(): JsonValueReaderWriter | undefined;
5608
5511
  GetMaxLength(): Nullable_1<System_Internal.Int32>;
5609
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
5610
5512
  GetPrecision(): Nullable_1<System_Internal.Int32>;
5611
5513
  GetProviderClrType(): Type | undefined;
5612
- GetRuntimeAnnotations(): IEnumerable_1<Annotation>;
5613
5514
  GetScale(): Nullable_1<System_Internal.Int32>;
5614
5515
  GetValueComparer(): ValueComparer;
5615
5516
  GetValueConverter(): ValueConverter | undefined;
@@ -5656,75 +5557,35 @@ export interface RuntimeEntityType$instance extends RuntimeTypeBase$instance {
5656
5557
  AddIndex(properties: IReadOnlyList_1<RuntimeProperty>, name?: string, unique?: boolean): RuntimeIndex;
5657
5558
  AddKey(properties: IReadOnlyList_1<RuntimeProperty>): RuntimeKey;
5658
5559
  AddNavigation(name: string, foreignKey: RuntimeForeignKey, onDependent: boolean, clrType: Type, propertyInfo?: PropertyInfo, fieldInfo?: FieldInfo, propertyAccessMode?: PropertyAccessMode, eagerLoaded?: boolean, lazyLoadingEnabled?: boolean): RuntimeNavigation;
5659
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
5660
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
5661
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
5662
5560
  AddServiceProperty(name: string, propertyInfo?: PropertyInfo, fieldInfo?: FieldInfo, serviceType?: Type, propertyAccessMode?: PropertyAccessMode): RuntimeServiceProperty;
5663
5561
  AddSkipNavigation(name: string, targetEntityType: RuntimeEntityType, foreignKey: RuntimeForeignKey, collection: boolean, onDependent: boolean, clrType: Type, propertyInfo?: PropertyInfo, fieldInfo?: FieldInfo, propertyAccessMode?: PropertyAccessMode, eagerLoaded?: boolean, lazyLoadingEnabled?: boolean): RuntimeSkipNavigation;
5664
5562
  AddTrigger(modelName: string): RuntimeTrigger;
5665
- AnnotationsToDebugString(indent?: int): string;
5666
5563
  CalculateCounts(): PropertyCounts;
5667
- DisplayName(): string;
5668
- DisplayName(omitSharedType: boolean): string;
5669
- FindAnnotation(name: string): IAnnotation | undefined;
5670
- FindAnnotation(name: string): Annotation | undefined;
5671
- FindComplexProperty(name: string): RuntimeComplexProperty | undefined;
5672
- FindComplexProperty(name: string): IComplexProperty | undefined;
5673
- FindComplexProperty(memberInfo: MemberInfo): IComplexProperty | undefined;
5674
- FindComplexProperty(name: string): IReadOnlyComplexProperty | undefined;
5675
- FindComplexProperty(memberInfo: MemberInfo): IReadOnlyComplexProperty | undefined;
5676
5564
  FindDeclaredForeignKeys(properties: IReadOnlyList_1<IReadOnlyProperty>): IEnumerable_1<RuntimeForeignKey>;
5677
5565
  FindDeclaredTrigger(modelName: string): RuntimeTrigger | undefined;
5678
- FindDiscriminatorProperty(): IProperty | undefined;
5679
- FindDiscriminatorProperty(): IReadOnlyProperty | undefined;
5680
5566
  FindForeignKey(properties: IReadOnlyList_1<IReadOnlyProperty>, principalKey: IReadOnlyKey, principalEntityType: IReadOnlyEntityType): RuntimeForeignKey | undefined;
5681
5567
  FindIndex(properties: IReadOnlyList_1<IReadOnlyProperty>): RuntimeIndex | undefined;
5682
5568
  FindIndex(name: string): RuntimeIndex | undefined;
5683
- FindIndexerPropertyInfo(): PropertyInfo | undefined;
5684
5569
  FindKey(properties: IReadOnlyList_1<IReadOnlyProperty>): RuntimeKey | undefined;
5685
5570
  FindMember(name: string): RuntimePropertyBase | undefined;
5686
- FindMember(name: string): IPropertyBase | undefined;
5687
- FindMember(name: string): IReadOnlyPropertyBase | undefined;
5688
5571
  FindMembersInHierarchy(name: string): IEnumerable_1<RuntimePropertyBase>;
5689
5572
  FindNavigation(name: string): RuntimeNavigation | undefined;
5690
5573
  FindNavigationsInHierarchy(name: string): IEnumerable_1<RuntimeNavigation>;
5691
- FindProperties(propertyNames: IEnumerable_1<System_Internal.String>): IReadOnlyList_1<RuntimeProperty> | undefined;
5692
- FindProperties(propertyNames: IReadOnlyList_1<System_Internal.String>): IReadOnlyList_1<IProperty> | undefined;
5693
- FindProperty(name: string): RuntimeProperty | undefined;
5694
- FindProperty(memberInfo: MemberInfo): IProperty | undefined;
5695
- FindProperty(name: string): IProperty | undefined;
5696
- FindProperty(name: string): IReadOnlyProperty | undefined;
5697
- FindProperty(memberInfo: MemberInfo): IReadOnlyProperty | undefined;
5698
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
5699
- FindRuntimeAnnotation(name: string): Annotation | undefined;
5700
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
5701
5574
  FindServicePropertiesInHierarchy(propertyName: string): IEnumerable_1<RuntimeServiceProperty>;
5702
5575
  FindServiceProperty(name: string): RuntimeServiceProperty | undefined;
5703
5576
  FindSkipNavigation(name: string): RuntimeSkipNavigation | undefined;
5704
5577
  FindSkipNavigationsInHierarchy(name: string): IEnumerable_1<RuntimeSkipNavigation>;
5705
- GetAnnotations(): IEnumerable_1<IAnnotation>;
5706
- GetChangeTrackingStrategy(): ChangeTrackingStrategy;
5707
- GetConstructorBindingConfigurationSource(): Nullable_1<ConfigurationSource>;
5708
5578
  GetDeclaredForeignKeys(): List_1<RuntimeForeignKey>;
5709
5579
  GetDeclaredIndexes(): IEnumerable_1<RuntimeIndex>;
5710
5580
  GetDeclaredKeys(): IEnumerable_1<RuntimeKey>;
5711
5581
  GetDeclaredMembers(): IEnumerable_1<RuntimePropertyBase>;
5712
- GetDerivedTypes(): IEnumerable_1<RuntimeTypeBase>;
5713
- GetDiscriminatorValue(): unknown | undefined;
5714
5582
  GetForeignKeys(): IEnumerable_1<RuntimeForeignKey>;
5715
5583
  GetIndexes(): IEnumerable_1<RuntimeIndex>;
5716
5584
  GetKeys(): IEnumerable_1<RuntimeKey>;
5717
5585
  GetMembers(): IEnumerable_1<RuntimePropertyBase>;
5718
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
5719
5586
  GetOrCreateEmptyMaterializer(source: IStructuralTypeMaterializerSource): Func_2<MaterializationContext, unknown>;
5720
5587
  GetOrCreateMaterializer(source: IStructuralTypeMaterializerSource): Func_2<MaterializationContext, unknown>;
5721
- GetPropertyAccessMode(): PropertyAccessMode;
5722
- GetRootType(): IReadOnlyTypeBase;
5723
- GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
5724
5588
  GetSnapshottableMembers(): IEnumerable_1<RuntimePropertyBase>;
5725
- GetSnapshottableMembers(): IEnumerable_1<RuntimePropertyBase>;
5726
- IsAbstract(): boolean;
5727
- IsAssignableFrom(derivedType: IReadOnlyTypeBase): boolean;
5728
5589
  Reparent(model: RuntimeModel): void;
5729
5590
  SetCounts(counts: PropertyCounts): void;
5730
5591
  SetPrimaryKey(key: RuntimeKey): void;
@@ -5764,18 +5625,6 @@ export interface RuntimeEntityTypeMappingFragment$instance extends AnnotatableBa
5764
5625
  readonly EntityType: RuntimeEntityType;
5765
5626
  readonly IsTableExcludedFromMigrations: Nullable_1<System_Internal.Boolean>;
5766
5627
  readonly StoreObject: StoreObjectIdentifier;
5767
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
5768
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
5769
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
5770
- AnnotationsToDebugString(indent?: int): string;
5771
- FindAnnotation(name: string): Annotation | undefined;
5772
- FindAnnotation(name: string): IAnnotation | undefined;
5773
- FindRuntimeAnnotation(name: string): Annotation | undefined;
5774
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
5775
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
5776
- GetAnnotations(): IEnumerable_1<Annotation>;
5777
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
5778
- GetRuntimeAnnotations(): IEnumerable_1<Annotation>;
5779
5628
  ToString(): string;
5780
5629
  }
5781
5630
 
@@ -5812,18 +5661,6 @@ export interface RuntimeForeignKey$instance extends RuntimeAnnotatableBase {
5812
5661
  get ReferencingSkipNavigations(): ISet_1<RuntimeSkipNavigation> | undefined;
5813
5662
  set ReferencingSkipNavigations(value: ISet_1<RuntimeSkipNavigation> | undefined);
5814
5663
  AddNavigation(navigation: RuntimeNavigation, onDependent: boolean): void;
5815
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
5816
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
5817
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
5818
- AnnotationsToDebugString(indent?: int): string;
5819
- FindAnnotation(name: string): Annotation | undefined;
5820
- FindAnnotation(name: string): IAnnotation | undefined;
5821
- FindRuntimeAnnotation(name: string): Annotation | undefined;
5822
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
5823
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
5824
- GetAnnotations(): IEnumerable_1<IAnnotation>;
5825
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
5826
- GetRuntimeAnnotations(): IEnumerable_1<Annotation>;
5827
5664
  ToString(): string;
5828
5665
  }
5829
5666
 
@@ -5856,18 +5693,6 @@ export interface RuntimeIndex$instance extends RuntimeAnnotatableBase {
5856
5693
  readonly DeclaringEntityType: RuntimeEntityType;
5857
5694
  readonly Name: string | undefined;
5858
5695
  readonly Properties: IReadOnlyList_1<RuntimeProperty>;
5859
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
5860
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
5861
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
5862
- AnnotationsToDebugString(indent?: int): string;
5863
- FindAnnotation(name: string): Annotation | undefined;
5864
- FindAnnotation(name: string): IAnnotation | undefined;
5865
- FindRuntimeAnnotation(name: string): Annotation | undefined;
5866
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
5867
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
5868
- GetAnnotations(): IEnumerable_1<IAnnotation>;
5869
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
5870
- GetRuntimeAnnotations(): IEnumerable_1<Annotation>;
5871
5696
  ToString(): string;
5872
5697
  }
5873
5698
 
@@ -5901,18 +5726,6 @@ export interface RuntimeKey$instance extends RuntimeAnnotatableBase {
5901
5726
  readonly Properties: IReadOnlyList_1<RuntimeProperty>;
5902
5727
  get ReferencingForeignKeys(): ISet_1<RuntimeForeignKey> | undefined;
5903
5728
  set ReferencingForeignKeys(value: ISet_1<RuntimeForeignKey> | undefined);
5904
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
5905
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
5906
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
5907
- AnnotationsToDebugString(indent?: int): string;
5908
- FindAnnotation(name: string): Annotation | undefined;
5909
- FindAnnotation(name: string): IAnnotation | undefined;
5910
- FindRuntimeAnnotation(name: string): Annotation | undefined;
5911
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
5912
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
5913
- GetAnnotations(): IEnumerable_1<IAnnotation>;
5914
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
5915
- GetRuntimeAnnotations(): IEnumerable_1<Annotation>;
5916
5729
  SetIdentityMapFactory(factory: Func_2<System_Internal.Boolean, IIdentityMap>): void;
5917
5730
  SetPrincipalKeyValueFactory<TKey>(factory: IPrincipalKeyValueFactory_1<TKey>): void;
5918
5731
  ToString(): string;
@@ -5947,24 +5760,12 @@ export interface RuntimeModel$instance extends RuntimeAnnotatableBase {
5947
5760
  readonly DebugView: DebugView;
5948
5761
  ModelId: Guid;
5949
5762
  AddEntityType(name: string, type: Type, baseType?: RuntimeEntityType, sharedClrType?: boolean, changeTrackingStrategy?: ChangeTrackingStrategy, indexerPropertyInfo?: PropertyInfo, propertyBag?: boolean, discriminatorProperty?: string, discriminatorValue?: unknown, derivedTypesCount?: int, propertyCount?: int, complexPropertyCount?: int, navigationCount?: int, skipNavigationCount?: int, servicePropertyCount?: int, foreignKeyCount?: int, unnamedIndexCount?: int, namedIndexCount?: int, keyCount?: int, triggerCount?: int): RuntimeEntityType;
5950
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
5951
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
5952
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
5953
5763
  AddTypeMappingConfiguration(clrType: Type, maxLength?: Nullable_1<System_Internal.Int32>, unicode?: Nullable_1<System_Internal.Boolean>, precision?: Nullable_1<System_Internal.Int32>, scale?: Nullable_1<System_Internal.Int32>, providerPropertyType?: Type, valueConverter?: ValueConverter): RuntimeTypeMappingConfiguration;
5954
- AnnotationsToDebugString(indent?: int): string;
5955
5764
  FinalizeModel(): IModel;
5956
5765
  FindAdHocEntityType(clrType: Type): RuntimeEntityType | undefined;
5957
- FindAnnotation(name: string): Annotation | undefined;
5958
- FindAnnotation(name: string): IAnnotation | undefined;
5959
5766
  FindEntityType(name: string): RuntimeEntityType | undefined;
5960
- FindRuntimeAnnotation(name: string): Annotation | undefined;
5961
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
5962
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
5963
5767
  GetAdHocEntityTypes(): IEnumerable_1<IReadOnlyEntityType>;
5964
- GetAnnotations(): IEnumerable_1<IAnnotation>;
5965
5768
  GetOrAddAdHocEntityType(entityType: RuntimeEntityType): RuntimeEntityType;
5966
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
5967
- GetRuntimeAnnotations(): IEnumerable_1<Annotation>;
5968
5769
  SetSkipDetectChanges(skipDetectChanges: boolean): void;
5969
5770
  }
5970
5771
 
@@ -6006,29 +5807,6 @@ export interface RuntimeNavigation$instance extends RuntimePropertyBase$instance
6006
5807
  readonly ForeignKey: RuntimeForeignKey;
6007
5808
  readonly IsCollection: boolean;
6008
5809
  readonly Sentinel: unknown | undefined;
6009
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
6010
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
6011
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
6012
- AnnotationsToDebugString(indent?: int): string;
6013
- FindAnnotation(name: string): IAnnotation | undefined;
6014
- FindAnnotation(name: string): Annotation | undefined;
6015
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
6016
- FindRuntimeAnnotation(name: string): Annotation | undefined;
6017
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
6018
- GetAnnotations(): IEnumerable_1<IAnnotation>;
6019
- GetCollectionAccessor(): IClrCollectionAccessor | undefined;
6020
- GetCurrentValueComparer(): IComparer_1<IUpdateEntry>;
6021
- GetFieldName(): string | undefined;
6022
- GetGetter(): IClrPropertyGetter;
6023
- GetIndex(): int;
6024
- GetIndexedCollectionAccessor(): IClrIndexedCollectionAccessor;
6025
- GetMemberInfo(forMaterialization: boolean, forSet: boolean): MemberInfo;
6026
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
6027
- GetPropertyAccessMode(): PropertyAccessMode;
6028
- GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
6029
- GetSetter(): IClrPropertySetter;
6030
- GetShadowIndex(): int;
6031
- IsShadowProperty(): boolean;
6032
5810
  SetCollectionAccessor<TEntity, TCollection extends IEnumerable_1<TElement>, TElement>(getCollection: Func_2<TEntity, TCollection>, setCollection: Action_2<TEntity, TCollection>, setCollectionForMaterialization: Action_2<TEntity, TCollection>, createAndSetCollection: Func_3<TEntity, Action_2<TEntity, TCollection>, TCollection>, createCollection: Func_1<TCollection>): void;
6033
5811
  ToString(): string;
6034
5812
  }
@@ -6080,33 +5858,10 @@ export interface RuntimeProperty$instance extends RuntimePropertyBase$instance {
6080
5858
  set PrimaryKey(value: RuntimeKey | undefined);
6081
5859
  readonly Sentinel: unknown | undefined;
6082
5860
  TypeMapping: CoreTypeMapping;
6083
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
6084
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
6085
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
6086
- AnnotationsToDebugString(indent?: int): string;
6087
- FindAnnotation(name: string): IAnnotation | undefined;
6088
- FindAnnotation(name: string): Annotation | undefined;
6089
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
6090
- FindRuntimeAnnotation(name: string): Annotation | undefined;
6091
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
6092
- GetAnnotations(): IEnumerable_1<IAnnotation>;
6093
- GetCollectionAccessor(): IClrCollectionAccessor | undefined;
6094
- GetCurrentValueComparer(): IComparer_1<IUpdateEntry>;
6095
5861
  GetElementType(): IElementType | undefined;
6096
- GetFieldName(): string | undefined;
6097
- GetGetter(): IClrPropertyGetter;
6098
- GetIndex(): int;
6099
- GetIndexedCollectionAccessor(): IClrIndexedCollectionAccessor;
6100
5862
  GetJsonValueReaderWriter(): JsonValueReaderWriter | undefined;
6101
5863
  GetKeyValueComparer(): ValueComparer;
6102
- GetMemberInfo(forMaterialization: boolean, forSet: boolean): MemberInfo;
6103
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
6104
- GetPropertyAccessMode(): PropertyAccessMode;
6105
- GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
6106
- GetSetter(): IClrPropertySetter;
6107
- GetShadowIndex(): int;
6108
5864
  GetValueComparer(): ValueComparer;
6109
- IsShadowProperty(): boolean;
6110
5865
  SetComparer(valueComparer: ValueComparer): ValueComparer;
6111
5866
  SetElementType(clrType: Type, nullable?: boolean, maxLength?: Nullable_1<System_Internal.Int32>, unicode?: Nullable_1<System_Internal.Boolean>, precision?: Nullable_1<System_Internal.Int32>, scale?: Nullable_1<System_Internal.Int32>, providerClrType?: Type, valueConverter?: ValueConverter, valueComparer?: ValueComparer, jsonValueReaderWriter?: JsonValueReaderWriter, typeMapping?: CoreTypeMapping): RuntimeElementType;
6112
5867
  SetKeyComparer(valueComparer: ValueComparer): ValueComparer;
@@ -6149,18 +5904,6 @@ export interface RuntimePropertyBase$instance extends RuntimeAnnotatableBase {
6149
5904
  readonly IsCollection: boolean;
6150
5905
  readonly Name: string;
6151
5906
  readonly Sentinel: unknown | undefined;
6152
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
6153
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
6154
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
6155
- AnnotationsToDebugString(indent?: int): string;
6156
- FindAnnotation(name: string): Annotation | undefined;
6157
- FindAnnotation(name: string): IAnnotation | undefined;
6158
- FindRuntimeAnnotation(name: string): Annotation | undefined;
6159
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
6160
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
6161
- GetAnnotations(): IEnumerable_1<IAnnotation>;
6162
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
6163
- GetRuntimeAnnotations(): IEnumerable_1<Annotation>;
6164
5907
  SetAccessors<TProperty>(currentValueGetter: Func_2<IInternalEntry, TProperty>, preStoreGeneratedCurrentValueGetter: Func_2<IInternalEntry, TProperty>, originalValueGetter: Func_2<IInternalEntry, TProperty>, relationshipSnapshotGetter: Func_2<IInternalEntry, TProperty>): void;
6165
5908
  SetCurrentValueComparer(comparer: IComparer_1<IUpdateEntry>): void;
6166
5909
  SetGetter<TEntity, TValue>(getClrValue: Func_2<TEntity, TValue>, hasSentinel: Func_2<TEntity, System_Internal.Boolean>): void;
@@ -6200,18 +5943,6 @@ export interface RuntimeRelationalPropertyOverrides$instance extends Annotatable
6200
5943
  readonly DebugView: DebugView;
6201
5944
  readonly Property: RuntimeProperty;
6202
5945
  readonly StoreObject: StoreObjectIdentifier;
6203
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
6204
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
6205
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
6206
- AnnotationsToDebugString(indent?: int): string;
6207
- FindAnnotation(name: string): Annotation | undefined;
6208
- FindAnnotation(name: string): IAnnotation | undefined;
6209
- FindRuntimeAnnotation(name: string): Annotation | undefined;
6210
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
6211
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
6212
- GetAnnotations(): IEnumerable_1<Annotation>;
6213
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
6214
- GetRuntimeAnnotations(): IEnumerable_1<Annotation>;
6215
5946
  ToString(): string;
6216
5947
  }
6217
5948
 
@@ -6244,18 +5975,6 @@ export interface RuntimeSequence$instance extends AnnotatableBase {
6244
5975
  readonly ModelSchema: string | undefined;
6245
5976
  readonly Name: string;
6246
5977
  readonly Schema: string | undefined;
6247
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
6248
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
6249
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
6250
- AnnotationsToDebugString(indent?: int): string;
6251
- FindAnnotation(name: string): Annotation | undefined;
6252
- FindAnnotation(name: string): IAnnotation | undefined;
6253
- FindRuntimeAnnotation(name: string): Annotation | undefined;
6254
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
6255
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
6256
- GetAnnotations(): IEnumerable_1<Annotation>;
6257
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
6258
- GetRuntimeAnnotations(): IEnumerable_1<Annotation>;
6259
5978
  ToString(): string;
6260
5979
  }
6261
5980
 
@@ -6293,29 +6012,6 @@ export interface RuntimeServiceProperty$instance extends RuntimePropertyBase$ins
6293
6012
  readonly IsCollection: boolean;
6294
6013
  ParameterBinding: ServiceParameterBinding;
6295
6014
  readonly Sentinel: unknown | undefined;
6296
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
6297
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
6298
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
6299
- AnnotationsToDebugString(indent?: int): string;
6300
- FindAnnotation(name: string): IAnnotation | undefined;
6301
- FindAnnotation(name: string): Annotation | undefined;
6302
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
6303
- FindRuntimeAnnotation(name: string): Annotation | undefined;
6304
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
6305
- GetAnnotations(): IEnumerable_1<IAnnotation>;
6306
- GetCollectionAccessor(): IClrCollectionAccessor | undefined;
6307
- GetCurrentValueComparer(): IComparer_1<IUpdateEntry>;
6308
- GetFieldName(): string | undefined;
6309
- GetGetter(): IClrPropertyGetter;
6310
- GetIndex(): int;
6311
- GetIndexedCollectionAccessor(): IClrIndexedCollectionAccessor;
6312
- GetMemberInfo(forMaterialization: boolean, forSet: boolean): MemberInfo;
6313
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
6314
- GetPropertyAccessMode(): PropertyAccessMode;
6315
- GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
6316
- GetSetter(): IClrPropertySetter;
6317
- GetShadowIndex(): int;
6318
- IsShadowProperty(): boolean;
6319
6015
  ToString(): string;
6320
6016
  }
6321
6017
 
@@ -6360,29 +6056,6 @@ export interface RuntimeSkipNavigation$instance extends RuntimePropertyBase$inst
6360
6056
  readonly IsCollection: boolean;
6361
6057
  readonly Sentinel: unknown | undefined;
6362
6058
  readonly TargetEntityType: RuntimeEntityType;
6363
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
6364
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
6365
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
6366
- AnnotationsToDebugString(indent?: int): string;
6367
- FindAnnotation(name: string): IAnnotation | undefined;
6368
- FindAnnotation(name: string): Annotation | undefined;
6369
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
6370
- FindRuntimeAnnotation(name: string): Annotation | undefined;
6371
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
6372
- GetAnnotations(): IEnumerable_1<IAnnotation>;
6373
- GetCollectionAccessor(): IClrCollectionAccessor | undefined;
6374
- GetCurrentValueComparer(): IComparer_1<IUpdateEntry>;
6375
- GetFieldName(): string | undefined;
6376
- GetGetter(): IClrPropertyGetter;
6377
- GetIndex(): int;
6378
- GetIndexedCollectionAccessor(): IClrIndexedCollectionAccessor;
6379
- GetMemberInfo(forMaterialization: boolean, forSet: boolean): MemberInfo;
6380
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
6381
- GetPropertyAccessMode(): PropertyAccessMode;
6382
- GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
6383
- GetSetter(): IClrPropertySetter;
6384
- GetShadowIndex(): int;
6385
- IsShadowProperty(): boolean;
6386
6059
  SetCollectionAccessor<TEntity, TCollection extends IEnumerable_1<TElement>, TElement>(getCollection: Func_2<TEntity, TCollection>, setCollection: Action_2<TEntity, TCollection>, setCollectionForMaterialization: Action_2<TEntity, TCollection>, createAndSetCollection: Func_3<TEntity, Action_2<TEntity, TCollection>, TCollection>, createCollection: Func_1<TCollection>): void;
6387
6060
  ToString(): string;
6388
6061
  }
@@ -6421,18 +6094,6 @@ export interface RuntimeStoredProcedure$instance extends AnnotatableBase {
6421
6094
  EntityType: RuntimeEntityType;
6422
6095
  AddParameter(name: string, direction: ParameterDirection, forRowsAffected: boolean, propertyName: string, forOriginalValue: Nullable_1<System_Internal.Boolean>): RuntimeStoredProcedureParameter;
6423
6096
  AddResultColumn(name: string, forRowsAffected: boolean, propertyName: string): RuntimeStoredProcedureResultColumn;
6424
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
6425
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
6426
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
6427
- AnnotationsToDebugString(indent?: int): string;
6428
- FindAnnotation(name: string): Annotation | undefined;
6429
- FindAnnotation(name: string): IAnnotation | undefined;
6430
- FindRuntimeAnnotation(name: string): Annotation | undefined;
6431
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
6432
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
6433
- GetAnnotations(): IEnumerable_1<Annotation>;
6434
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
6435
- GetRuntimeAnnotations(): IEnumerable_1<Annotation>;
6436
6097
  ToString(): string;
6437
6098
  }
6438
6099
 
@@ -6463,18 +6124,6 @@ export interface RuntimeTrigger$instance extends RuntimeAnnotatableBase {
6463
6124
  readonly DebugView: DebugView;
6464
6125
  readonly EntityType: IEntityType;
6465
6126
  readonly ModelName: string;
6466
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
6467
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
6468
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
6469
- AnnotationsToDebugString(indent?: int): string;
6470
- FindAnnotation(name: string): Annotation | undefined;
6471
- FindAnnotation(name: string): IAnnotation | undefined;
6472
- FindRuntimeAnnotation(name: string): Annotation | undefined;
6473
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
6474
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
6475
- GetAnnotations(): IEnumerable_1<IAnnotation>;
6476
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
6477
- GetRuntimeAnnotations(): IEnumerable_1<Annotation>;
6478
6127
  ToString(): string;
6479
6128
  }
6480
6129
 
@@ -6518,14 +6167,8 @@ export interface RuntimeTypeBase$instance extends RuntimeAnnotatableBase {
6518
6167
  readonly TemporaryValuesFactory: Func_2<IInternalEntry, ISnapshot>;
6519
6168
  AddComplexProperty(name: string, clrType: Type, targetTypeName: string, targetType: Type, propertyInfo?: PropertyInfo, fieldInfo?: FieldInfo, propertyAccessMode?: PropertyAccessMode, nullable?: boolean, collection?: boolean, changeTrackingStrategy?: ChangeTrackingStrategy, indexerPropertyInfo?: PropertyInfo, propertyBag?: boolean, discriminatorProperty?: string, discriminatorValue?: unknown, propertyCount?: int, complexPropertyCount?: int): RuntimeComplexProperty;
6520
6169
  AddProperty(name: string, clrType: Type, propertyInfo?: PropertyInfo, fieldInfo?: FieldInfo, propertyAccessMode?: PropertyAccessMode, nullable?: boolean, concurrencyToken?: boolean, valueGenerated?: ValueGenerated, beforeSaveBehavior?: PropertySaveBehavior, afterSaveBehavior?: PropertySaveBehavior, maxLength?: Nullable_1<System_Internal.Int32>, unicode?: Nullable_1<System_Internal.Boolean>, precision?: Nullable_1<System_Internal.Int32>, scale?: Nullable_1<System_Internal.Int32>, providerPropertyType?: Type, valueGeneratorFactory?: Func_3<IProperty, ITypeBase, ValueGenerator>, valueConverter?: ValueConverter, valueComparer?: ValueComparer, keyValueComparer?: ValueComparer, providerValueComparer?: ValueComparer, jsonValueReaderWriter?: JsonValueReaderWriter, typeMapping?: CoreTypeMapping, sentinel?: unknown): RuntimeProperty;
6521
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
6522
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
6523
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
6524
- AnnotationsToDebugString(indent?: int): string;
6525
6170
  CalculateCounts(): PropertyCounts;
6526
6171
  FinalizeType(): void;
6527
- FindAnnotation(name: string): Annotation | undefined;
6528
- FindAnnotation(name: string): IAnnotation | undefined;
6529
6172
  FindComplexPropertiesInHierarchy(propertyName: string): IEnumerable_1<RuntimeComplexProperty>;
6530
6173
  FindComplexProperty(name: string): RuntimeComplexProperty | undefined;
6531
6174
  FindDeclaredProperty(name: string): RuntimeProperty | undefined;
@@ -6535,10 +6178,6 @@ export interface RuntimeTypeBase$instance extends RuntimeAnnotatableBase {
6535
6178
  FindProperties(propertyNames: IEnumerable_1<System_Internal.String>): IReadOnlyList_1<RuntimeProperty> | undefined;
6536
6179
  FindPropertiesInHierarchy(propertyName: string): IEnumerable_1<RuntimeProperty>;
6537
6180
  FindProperty(name: string): RuntimeProperty | undefined;
6538
- FindRuntimeAnnotation(name: string): Annotation | undefined;
6539
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
6540
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
6541
- GetAnnotations(): IEnumerable_1<IAnnotation>;
6542
6181
  GetComplexProperties(): IEnumerable_1<RuntimeComplexProperty>;
6543
6182
  GetDeclaredComplexProperties(): IEnumerable_1<RuntimeComplexProperty>;
6544
6183
  GetDeclaredMembers(): IEnumerable_1<RuntimePropertyBase>;
@@ -6550,11 +6189,9 @@ export interface RuntimeTypeBase$instance extends RuntimeAnnotatableBase {
6550
6189
  GetFlattenedProperties(): IEnumerable_1<RuntimeProperty>;
6551
6190
  GetFlattenedValueGeneratingProperties(): IEnumerable_1<RuntimeProperty>;
6552
6191
  GetMembers(): IEnumerable_1<RuntimePropertyBase>;
6553
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
6554
6192
  GetOrCreateEmptyMaterializer(source: IStructuralTypeMaterializerSource): Func_2<MaterializationContext, unknown>;
6555
6193
  GetOrCreateMaterializer(source: IStructuralTypeMaterializerSource): Func_2<MaterializationContext, unknown>;
6556
6194
  GetProperties(): IEnumerable_1<RuntimeProperty>;
6557
- GetRuntimeAnnotations(): IEnumerable_1<Annotation>;
6558
6195
  GetSnapshottableMembers(): IEnumerable_1<RuntimePropertyBase>;
6559
6196
  SetEmptyShadowValuesFactory(factory: Func_1<ISnapshot>): void;
6560
6197
  SetOriginalValuesFactory(factory: Func_2<IInternalEntry, ISnapshot>): void;
@@ -6589,18 +6226,6 @@ export interface RuntimeTypeMappingConfiguration$instance extends RuntimeAnnotat
6589
6226
  readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_ITypeMappingConfiguration: never;
6590
6227
 
6591
6228
  readonly ClrType: Type;
6592
- AddRuntimeAnnotation(name: string, value: unknown): Annotation;
6593
- AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
6594
- AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
6595
- AnnotationsToDebugString(indent?: int): string;
6596
- FindAnnotation(name: string): Annotation | undefined;
6597
- FindAnnotation(name: string): IAnnotation | undefined;
6598
- FindRuntimeAnnotation(name: string): Annotation | undefined;
6599
- FindRuntimeAnnotation(name: string): IAnnotation | undefined;
6600
- FindRuntimeAnnotationValue(name: string): unknown | undefined;
6601
- GetAnnotations(): IEnumerable_1<IAnnotation>;
6602
- GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
6603
- GetRuntimeAnnotations(): IEnumerable_1<Annotation>;
6604
6229
  }
6605
6230
 
6606
6231