@tsonic/efcore 0.1.1 → 0.1.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (60) hide show
  1. package/Microsoft.EntityFrameworkCore/bindings.json +8 -8
  2. package/Microsoft.EntityFrameworkCore/internal/index.d.ts +14 -14
  3. package/Microsoft.EntityFrameworkCore/internal/metadata.json +4 -4
  4. package/Microsoft.EntityFrameworkCore.ChangeTracking/bindings.json +12 -12
  5. package/Microsoft.EntityFrameworkCore.ChangeTracking/internal/index.d.ts +9 -9
  6. package/Microsoft.EntityFrameworkCore.ChangeTracking/internal/metadata.json +3 -3
  7. package/Microsoft.EntityFrameworkCore.ChangeTracking.Internal/bindings.json +2 -2
  8. package/Microsoft.EntityFrameworkCore.ChangeTracking.Internal/internal/index.d.ts +1 -1
  9. package/Microsoft.EntityFrameworkCore.Design/bindings.json +6 -6
  10. package/Microsoft.EntityFrameworkCore.Design/internal/index.d.ts +6 -6
  11. package/Microsoft.EntityFrameworkCore.Design/internal/metadata.json +3 -3
  12. package/Microsoft.EntityFrameworkCore.Design.Internal/bindings.json +4 -4
  13. package/Microsoft.EntityFrameworkCore.Design.Internal/internal/index.d.ts +4 -4
  14. package/Microsoft.EntityFrameworkCore.Design.Internal/internal/metadata.json +2 -2
  15. package/Microsoft.EntityFrameworkCore.Diagnostics/bindings.json +6 -6
  16. package/Microsoft.EntityFrameworkCore.Diagnostics/internal/index.d.ts +80 -80
  17. package/Microsoft.EntityFrameworkCore.Diagnostics/internal/metadata.json +3 -3
  18. package/Microsoft.EntityFrameworkCore.Infrastructure/bindings.json +2 -2
  19. package/Microsoft.EntityFrameworkCore.Infrastructure/internal/index.d.ts +4 -4
  20. package/Microsoft.EntityFrameworkCore.Infrastructure/internal/metadata.json +1 -1
  21. package/Microsoft.EntityFrameworkCore.Internal/bindings.json +6 -6
  22. package/Microsoft.EntityFrameworkCore.Internal/internal/index.d.ts +21 -21
  23. package/Microsoft.EntityFrameworkCore.Internal/internal/metadata.json +3 -3
  24. package/Microsoft.EntityFrameworkCore.Metadata/bindings.json +145 -145
  25. package/Microsoft.EntityFrameworkCore.Metadata/internal/index.d.ts +128 -128
  26. package/Microsoft.EntityFrameworkCore.Metadata/internal/metadata.json +72 -72
  27. package/Microsoft.EntityFrameworkCore.Metadata.Builders/internal/index.d.ts +24 -24
  28. package/Microsoft.EntityFrameworkCore.Metadata.Conventions/internal/index.d.ts +5 -5
  29. package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure/bindings.json +2 -2
  30. package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure/internal/index.d.ts +1 -1
  31. package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure/internal/metadata.json +1 -1
  32. package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Internal/internal/index.d.ts +2 -2
  33. package/Microsoft.EntityFrameworkCore.Metadata.Internal/bindings.json +30 -30
  34. package/Microsoft.EntityFrameworkCore.Metadata.Internal/internal/index.d.ts +116 -116
  35. package/Microsoft.EntityFrameworkCore.Metadata.Internal/internal/metadata.json +15 -15
  36. package/Microsoft.EntityFrameworkCore.Migrations/bindings.json +2 -2
  37. package/Microsoft.EntityFrameworkCore.Migrations/internal/index.d.ts +3 -3
  38. package/Microsoft.EntityFrameworkCore.Migrations/internal/metadata.json +1 -1
  39. package/Microsoft.EntityFrameworkCore.Migrations.Operations.Builders/internal/index.d.ts +1 -1
  40. package/Microsoft.EntityFrameworkCore.Query/bindings.json +71 -71
  41. package/Microsoft.EntityFrameworkCore.Query/internal/index.d.ts +75 -75
  42. package/Microsoft.EntityFrameworkCore.Query/internal/metadata.json +33 -33
  43. package/Microsoft.EntityFrameworkCore.Query.Internal/bindings.json +6 -6
  44. package/Microsoft.EntityFrameworkCore.Query.Internal/internal/index.d.ts +9 -9
  45. package/Microsoft.EntityFrameworkCore.Query.Internal/internal/metadata.json +1 -1
  46. package/Microsoft.EntityFrameworkCore.Query.SqlExpressions/bindings.json +47 -47
  47. package/Microsoft.EntityFrameworkCore.Query.SqlExpressions/internal/index.d.ts +25 -25
  48. package/Microsoft.EntityFrameworkCore.Query.SqlExpressions/internal/metadata.json +6 -6
  49. package/Microsoft.EntityFrameworkCore.Storage/bindings.json +47 -47
  50. package/Microsoft.EntityFrameworkCore.Storage/internal/index.d.ts +51 -51
  51. package/Microsoft.EntityFrameworkCore.Storage/internal/metadata.json +23 -23
  52. package/Microsoft.EntityFrameworkCore.Storage.Internal/bindings.json +2 -2
  53. package/Microsoft.EntityFrameworkCore.Storage.Internal/internal/index.d.ts +1 -1
  54. package/Microsoft.EntityFrameworkCore.Storage.Internal/internal/metadata.json +1 -1
  55. package/Microsoft.EntityFrameworkCore.Storage.Json/internal/index.d.ts +2 -2
  56. package/Microsoft.EntityFrameworkCore.Storage.ValueConversion/bindings.json +4 -4
  57. package/Microsoft.EntityFrameworkCore.Storage.ValueConversion/internal/index.d.ts +2 -2
  58. package/Microsoft.EntityFrameworkCore.Storage.ValueConversion/internal/metadata.json +2 -2
  59. package/__internal/extensions/index.d.ts +7 -7
  60. package/package.json +1 -1
@@ -244,12 +244,12 @@ export type ConcurrencyDetectorCriticalSectionDisposer = ConcurrencyDetectorCrit
244
244
  export interface DbSetProperty$instance {
245
245
  readonly name: string;
246
246
  readonly setter: IClrPropertySetter | undefined;
247
- readonly type_: Type;
247
+ readonly type: Type;
248
248
  }
249
249
 
250
250
 
251
251
  export const DbSetProperty: {
252
- new(name: string, type_: Type, setter: IClrPropertySetter): DbSetProperty;
252
+ new(name: string, type: Type, setter: IClrPropertySetter): DbSetProperty;
253
253
  };
254
254
 
255
255
 
@@ -1242,7 +1242,7 @@ export abstract class ExpressionExtensions$instance {
1242
1242
  static createEFPropertyExpression(target: Expression, propertyDeclaringType: Type, propertyType: Type, propertyName: string, makeNullable: boolean): Expression;
1243
1243
  static createEqualsExpression(left: Expression, right: Expression, negated?: boolean): Expression;
1244
1244
  static createKeyValuesExpression(target: Expression, properties: IReadOnlyList<IProperty>, makeNullable?: boolean): Expression;
1245
- static createValueBufferReadValueExpression(valueBuffer: Expression, type_: Type, index: int, property: IPropertyBase): Expression;
1245
+ static createValueBufferReadValueExpression(valueBuffer: Expression, type: Type, index: int, property: IPropertyBase): Expression;
1246
1246
  static getMemberAccess(memberAccessExpression: LambdaExpression): MemberInfo;
1247
1247
  static getMemberAccessList(memberAccessExpression: LambdaExpression): IReadOnlyList<MemberInfo>;
1248
1248
  static getPropertyAccess(propertyAccessExpression: LambdaExpression): PropertyInfo;
@@ -1295,7 +1295,7 @@ export abstract class RelationalPropertyExtensions$instance {
1295
1295
  export type RelationalPropertyExtensions = RelationalPropertyExtensions$instance;
1296
1296
 
1297
1297
  export abstract class TypeExtensions$instance {
1298
- static shortDisplayName(type_: Type): string;
1298
+ static shortDisplayName(type: Type): string;
1299
1299
  }
1300
1300
 
1301
1301
 
@@ -1242,7 +1242,7 @@
1242
1242
  {
1243
1243
  "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Infrastructure.DbSetProperty::Type:System.Type",
1244
1244
  "clrName": "Type",
1245
- "tsEmitName": "type_",
1245
+ "tsEmitName": "type",
1246
1246
  "normalizedSignature": "Type|:System.Type|static=false|accessor=get",
1247
1247
  "provenance": "Original",
1248
1248
  "emitScope": "ClassSurface",
@@ -493,7 +493,7 @@
493
493
  {
494
494
  "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Internal.IDbContextPool::Return(Microsoft.EntityFrameworkCore.Internal.IDbContextPoolable):System.Void",
495
495
  "clrName": "Return",
496
- "tsEmitName": "return_",
496
+ "tsEmitName": "return",
497
497
  "metadataToken": 100673692,
498
498
  "canonicalSignature": "(Microsoft.EntityFrameworkCore.Internal.IDbContextPoolable):System.Void",
499
499
  "normalizedSignature": "Return|(Microsoft.EntityFrameworkCore.Internal.IDbContextPoolable):System.Void|static=false",
@@ -535,7 +535,7 @@
535
535
  }
536
536
  },
537
537
  {
538
- "tsName": "return_",
538
+ "tsName": "return",
539
539
  "isStatic": false,
540
540
  "tsSignatureId": "Return|(Microsoft.EntityFrameworkCore.Internal.IDbContextPoolable):System.Void|static=false",
541
541
  "target": {
@@ -580,7 +580,7 @@
580
580
  {
581
581
  "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Internal.IDbContextPool::Return(Microsoft.EntityFrameworkCore.Internal.IDbContextPoolable):System.Void",
582
582
  "clrName": "Return",
583
- "tsEmitName": "return_",
583
+ "tsEmitName": "return",
584
584
  "metadataToken": 100673692,
585
585
  "canonicalSignature": "(Microsoft.EntityFrameworkCore.Internal.IDbContextPoolable):System.Void",
586
586
  "normalizedSignature": "Return|(Microsoft.EntityFrameworkCore.Internal.IDbContextPoolable):System.Void|static=false",
@@ -622,7 +622,7 @@
622
622
  }
623
623
  },
624
624
  {
625
- "tsName": "return_",
625
+ "tsName": "return",
626
626
  "isStatic": false,
627
627
  "tsSignatureId": "Return|(Microsoft.EntityFrameworkCore.Internal.IDbContextPoolable):System.Void|static=false",
628
628
  "target": {
@@ -3194,7 +3194,7 @@
3194
3194
  {
3195
3195
  "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Internal.DbContextPool\u00601::Return(Microsoft.EntityFrameworkCore.Internal.IDbContextPoolable):System.Void",
3196
3196
  "clrName": "Return",
3197
- "tsEmitName": "return_",
3197
+ "tsEmitName": "return",
3198
3198
  "metadataToken": 100673577,
3199
3199
  "canonicalSignature": "(Microsoft.EntityFrameworkCore.Internal.IDbContextPoolable):System.Void",
3200
3200
  "normalizedSignature": "Return|(Microsoft.EntityFrameworkCore.Internal.IDbContextPoolable):System.Void|static=false",
@@ -3329,7 +3329,7 @@
3329
3329
  }
3330
3330
  },
3331
3331
  {
3332
- "tsName": "return_",
3332
+ "tsName": "return",
3333
3333
  "isStatic": false,
3334
3334
  "tsSignatureId": "Return|(Microsoft.EntityFrameworkCore.Internal.IDbContextPoolable):System.Void|static=false",
3335
3335
  "target": {
@@ -79,7 +79,7 @@ export type IDbContextFactorySource_1<TContext extends DbContext> = IDbContextFa
79
79
 
80
80
  export interface IDbContextPool$instance {
81
81
  rent(): IDbContextPoolable;
82
- return_(context: IDbContextPoolable): void;
82
+ return(context: IDbContextPoolable): void;
83
83
  returnAsync(context: IDbContextPoolable, cancellationToken?: CancellationToken): ValueTask;
84
84
  }
85
85
 
@@ -88,7 +88,7 @@ export type IDbContextPool = IDbContextPool$instance;
88
88
 
89
89
  export interface IDbContextPool_1$instance<TContext extends DbContext> extends IDbContextPool {
90
90
  rent(): IDbContextPoolable;
91
- return_(context: IDbContextPoolable): void;
91
+ return(context: IDbContextPoolable): void;
92
92
  returnAsync(context: IDbContextPoolable, cancellationToken?: CancellationToken): ValueTask;
93
93
  }
94
94
 
@@ -123,8 +123,8 @@ export interface IDbContextServices$instance {
123
123
  export type IDbContextServices = IDbContextServices$instance;
124
124
 
125
125
  export interface IDbSetCache$instance {
126
- getOrAddSet(source: IDbSetSource, entityTypeName: string, type_: Type): unknown;
127
- getOrAddSet(source: IDbSetSource, type_: Type): unknown;
126
+ getOrAddSet(source: IDbSetSource, entityTypeName: string, type: Type): unknown;
127
+ getOrAddSet(source: IDbSetSource, type: Type): unknown;
128
128
  getSets(): IEnumerable__System_Collections_Generic<unknown>;
129
129
  }
130
130
 
@@ -139,8 +139,8 @@ export interface IDbSetInitializer$instance {
139
139
  export type IDbSetInitializer = IDbSetInitializer$instance;
140
140
 
141
141
  export interface IDbSetSource$instance {
142
- create(context: DbContext, name: string, type_: Type): unknown;
143
- create(context: DbContext, type_: Type): unknown;
142
+ create(context: DbContext, name: string, type: Type): unknown;
143
+ create(context: DbContext, type: Type): unknown;
144
144
  }
145
145
 
146
146
 
@@ -188,14 +188,14 @@ export interface IEntityFinder_1$instance<TEntity> extends IEntityFinder {
188
188
  export type IEntityFinder_1<TEntity> = IEntityFinder_1$instance<TEntity>;
189
189
 
190
190
  export interface IEntityFinderFactory$instance {
191
- create(type_: IEntityType): IEntityFinder;
191
+ create(type: IEntityType): IEntityFinder;
192
192
  }
193
193
 
194
194
 
195
195
  export type IEntityFinderFactory = IEntityFinderFactory$instance;
196
196
 
197
197
  export interface IEntityFinderSource$instance {
198
- create(stateManager: IStateManager, setSource: IDbSetSource, setCache: IDbSetCache, type_: IEntityType): IEntityFinder;
198
+ create(stateManager: IStateManager, setSource: IDbSetSource, setCache: IDbSetCache, type: IEntityType): IEntityFinder;
199
199
  }
200
200
 
201
201
 
@@ -332,7 +332,7 @@ export interface DbContextPool_1$instance<TContext extends DbContext> extends ID
332
332
  dispose(): void;
333
333
  disposeAsync(): ValueTask;
334
334
  rent(): IDbContextPoolable;
335
- return_(context: IDbContextPoolable): void;
335
+ return(context: IDbContextPoolable): void;
336
336
  returnAsync(context: IDbContextPoolable, cancellationToken?: CancellationToken): ValueTask;
337
337
  }
338
338
 
@@ -427,8 +427,8 @@ export type DbSetInitializer = DbSetInitializer$instance & __DbSetInitializer$vi
427
427
 
428
428
 
429
429
  export interface DbSetSource$instance {
430
- create(context: DbContext, type_: Type): unknown;
431
- create(context: DbContext, name: string, type_: Type): unknown;
430
+ create(context: DbContext, type: Type): unknown;
431
+ create(context: DbContext, name: string, type: Type): unknown;
432
432
  }
433
433
 
434
434
 
@@ -498,7 +498,7 @@ export type EntityFinderCollectionLoaderAdapter = EntityFinderCollectionLoaderAd
498
498
 
499
499
 
500
500
  export interface EntityFinderFactory$instance {
501
- create(type_: IEntityType): IEntityFinder;
501
+ create(type: IEntityType): IEntityFinder;
502
502
  }
503
503
 
504
504
 
@@ -517,7 +517,7 @@ export type EntityFinderFactory = EntityFinderFactory$instance & __EntityFinderF
517
517
 
518
518
 
519
519
  export interface EntityFinderSource$instance {
520
- create(stateManager: IStateManager, setSource: IDbSetSource, setCache: IDbSetCache, type_: IEntityType): IEntityFinder;
520
+ create(stateManager: IStateManager, setSource: IDbSetSource, setCache: IDbSetCache, type: IEntityType): IEntityFinder;
521
521
  }
522
522
 
523
523
 
@@ -806,10 +806,10 @@ export type TupleExtensions = TupleExtensions$instance;
806
806
 
807
807
  export abstract class TypeBaseExtensions$instance {
808
808
  static displayName(entityType: TypeBase): string;
809
- static getComplexProperty(type_: ITypeBase, name: string): IComplexProperty;
810
- static getOwnedName(type_: IReadOnlyTypeBase, simpleName: string, ownershipNavigation: string): string;
811
- static getRuntimeFields(type_: IReadOnlyTypeBase): IReadOnlyDictionary<System_Internal.String, FieldInfo>;
812
- static getRuntimeProperties(type_: IReadOnlyTypeBase): IReadOnlyDictionary<System_Internal.String, PropertyInfo>;
809
+ static getComplexProperty(type: ITypeBase, name: string): IComplexProperty;
810
+ static getOwnedName(type: IReadOnlyTypeBase, simpleName: string, ownershipNavigation: string): string;
811
+ static getRuntimeFields(type: IReadOnlyTypeBase): IReadOnlyDictionary<System_Internal.String, FieldInfo>;
812
+ static getRuntimeProperties(type: IReadOnlyTypeBase): IReadOnlyDictionary<System_Internal.String, PropertyInfo>;
813
813
  static shortName(entityType: TypeBase): string;
814
814
  }
815
815
 
@@ -817,10 +817,10 @@ export abstract class TypeBaseExtensions$instance {
817
817
  export type TypeBaseExtensions = TypeBaseExtensions$instance;
818
818
 
819
819
  export abstract class TypeExtensions$instance {
820
- static findIndexerProperty(type_: Type): PropertyInfo | undefined;
821
- static generateParameterName(type_: Type): string;
822
- static getFieldInfo(type_: Type, fieldName: string): FieldInfo | undefined;
823
- static isDefaultValue(type_: Type, value: unknown): boolean;
820
+ static findIndexerProperty(type: Type): PropertyInfo | undefined;
821
+ static generateParameterName(type: Type): string;
822
+ static getFieldInfo(type: Type, fieldName: string): FieldInfo | undefined;
823
+ static isDefaultValue(type: Type, value: unknown): boolean;
824
824
  }
825
825
 
826
826
 
@@ -365,7 +365,7 @@
365
365
  {
366
366
  "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Internal.IDbContextPool::Return(Microsoft.EntityFrameworkCore.Internal.IDbContextPoolable):System.Void",
367
367
  "clrName": "Return",
368
- "tsEmitName": "return_",
368
+ "tsEmitName": "return",
369
369
  "normalizedSignature": "Return|(Microsoft.EntityFrameworkCore.Internal.IDbContextPoolable):System.Void|static=false",
370
370
  "provenance": "Original",
371
371
  "emitScope": "ClassSurface",
@@ -430,7 +430,7 @@
430
430
  {
431
431
  "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Internal.IDbContextPool::Return(Microsoft.EntityFrameworkCore.Internal.IDbContextPoolable):System.Void",
432
432
  "clrName": "Return",
433
- "tsEmitName": "return_",
433
+ "tsEmitName": "return",
434
434
  "normalizedSignature": "Return|(Microsoft.EntityFrameworkCore.Internal.IDbContextPoolable):System.Void|static=false",
435
435
  "provenance": "Original",
436
436
  "emitScope": "ClassSurface",
@@ -2249,7 +2249,7 @@
2249
2249
  {
2250
2250
  "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Internal.DbContextPool\u00601::Return(Microsoft.EntityFrameworkCore.Internal.IDbContextPoolable):System.Void",
2251
2251
  "clrName": "Return",
2252
- "tsEmitName": "return_",
2252
+ "tsEmitName": "return",
2253
2253
  "normalizedSignature": "Return|(Microsoft.EntityFrameworkCore.Internal.IDbContextPoolable):System.Void|static=false",
2254
2254
  "provenance": "Original",
2255
2255
  "emitScope": "ClassSurface",