@tsonic/efcore 10.0.5 → 10.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Microsoft.EntityFrameworkCore/internal/index.d.ts +599 -529
- package/Microsoft.EntityFrameworkCore.ChangeTracking/internal/index.d.ts +193 -155
- package/Microsoft.EntityFrameworkCore.ChangeTracking.Internal/internal/index.d.ts +385 -291
- package/Microsoft.EntityFrameworkCore.Design/internal/index.d.ts +123 -103
- package/Microsoft.EntityFrameworkCore.Design.Internal/internal/index.d.ts +22 -10
- package/Microsoft.EntityFrameworkCore.Diagnostics/internal/index.d.ts +443 -261
- package/Microsoft.EntityFrameworkCore.Diagnostics.Internal/internal/index.d.ts +66 -42
- package/Microsoft.EntityFrameworkCore.Infrastructure/internal/index.d.ts +215 -145
- package/Microsoft.EntityFrameworkCore.Infrastructure.Internal/internal/index.d.ts +39 -29
- package/Microsoft.EntityFrameworkCore.Internal/internal/index.d.ts +140 -122
- package/Microsoft.EntityFrameworkCore.Metadata/internal/index.d.ts +1139 -1035
- package/Microsoft.EntityFrameworkCore.Metadata.Builders/internal/index.d.ts +510 -476
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions/internal/index.d.ts +363 -307
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure/internal/index.d.ts +13 -7
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Internal/internal/index.d.ts +25 -21
- package/Microsoft.EntityFrameworkCore.Metadata.Internal/internal/index.d.ts +1557 -1305
- package/Microsoft.EntityFrameworkCore.Migrations/internal/index.d.ts +91 -67
- package/Microsoft.EntityFrameworkCore.Migrations.Internal/internal/index.d.ts +78 -74
- package/Microsoft.EntityFrameworkCore.Migrations.Operations/internal/index.d.ts +271 -207
- package/Microsoft.EntityFrameworkCore.Migrations.Operations.Builders/internal/index.d.ts +22 -20
- package/Microsoft.EntityFrameworkCore.Query/internal/index.d.ts +389 -241
- package/Microsoft.EntityFrameworkCore.Query.Internal/internal/index.d.ts +354 -267
- package/Microsoft.EntityFrameworkCore.Query.SqlExpressions/internal/index.d.ts +188 -120
- package/Microsoft.EntityFrameworkCore.Scaffolding/internal/index.d.ts +21 -15
- package/Microsoft.EntityFrameworkCore.Scaffolding.Metadata/internal/index.d.ts +93 -73
- package/Microsoft.EntityFrameworkCore.Storage/internal/index.d.ts +357 -239
- package/Microsoft.EntityFrameworkCore.Storage.Internal/internal/index.d.ts +51 -35
- package/Microsoft.EntityFrameworkCore.Storage.Json/internal/index.d.ts +85 -25
- package/Microsoft.EntityFrameworkCore.Storage.ValueConversion/internal/index.d.ts +137 -43
- package/Microsoft.EntityFrameworkCore.Storage.ValueConversion.Internal/internal/index.d.ts +54 -32
- package/Microsoft.EntityFrameworkCore.Update/internal/index.d.ts +92 -68
- package/Microsoft.EntityFrameworkCore.Update.Internal/internal/index.d.ts +121 -91
- package/Microsoft.EntityFrameworkCore.ValueGeneration/internal/index.d.ts +53 -23
- package/Microsoft.EntityFrameworkCore.ValueGeneration.Internal/internal/index.d.ts +44 -6
- package/Microsoft.Extensions.DependencyInjection/internal/index.d.ts +13 -13
- package/System.Transactions/internal/index.d.ts +3 -3
- package/__internal/extensions/index.d.ts +1462 -1465
- package/package.json +4 -4
|
@@ -20,12 +20,12 @@ import type { ValueConverter, ValueConverter_2 } from "../../Microsoft.EntityFra
|
|
|
20
20
|
import type { CoreTypeMapping, RelationalTypeMapping } from "../../Microsoft.EntityFrameworkCore.Storage/internal/index.js";
|
|
21
21
|
import type { ValueGenerator, ValueGeneratorFactory } from "../../Microsoft.EntityFrameworkCore.ValueGeneration/internal/index.js";
|
|
22
22
|
import type { ChangeTrackingStrategy, DeleteBehavior, PropertyAccessMode } from "../../Microsoft.EntityFrameworkCore/internal/index.js";
|
|
23
|
-
import type {
|
|
24
|
-
import type { ParameterDirection } from "@tsonic/dotnet/System.Data.js";
|
|
25
|
-
import
|
|
26
|
-
import type {
|
|
27
|
-
import
|
|
28
|
-
import type {
|
|
23
|
+
import type { IEnumerable_1, IReadOnlyList_1 } from "@tsonic/dotnet/System.Collections.Generic/internal/index.js";
|
|
24
|
+
import type { ParameterDirection } from "@tsonic/dotnet/System.Data/internal/index.js";
|
|
25
|
+
import type { Expression_1, LambdaExpression } from "@tsonic/dotnet/System.Linq.Expressions/internal/index.js";
|
|
26
|
+
import type { FieldInfo, MemberInfo } from "@tsonic/dotnet/System.Reflection/internal/index.js";
|
|
27
|
+
import * as System_Internal from "@tsonic/dotnet/System/internal/index.js";
|
|
28
|
+
import type { Action_1, Boolean as ClrBoolean, Func_1, Func_2, Func_3, Int32, Int64, IServiceProvider, Nullable_1, Object as ClrObject, String as ClrString, Type, Void } from "@tsonic/dotnet/System/internal/index.js";
|
|
29
29
|
|
|
30
30
|
export interface IConventionAnnotatableBuilder$instance {
|
|
31
31
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Builders_IConventionAnnotatableBuilder: never;
|
|
@@ -66,19 +66,19 @@ export interface IConventionComplexPropertyBuilder$instance extends IConventionP
|
|
|
66
66
|
CanSetAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): boolean;
|
|
67
67
|
CanSetField(fieldInfo: FieldInfo, fromDataAnnotation?: boolean): boolean;
|
|
68
68
|
CanSetField(fieldName: string, fromDataAnnotation?: boolean): boolean;
|
|
69
|
-
CanSetIsRequired(required:
|
|
69
|
+
CanSetIsRequired(required: Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): boolean;
|
|
70
70
|
HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
|
|
71
71
|
HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionComplexPropertyBuilder | undefined;
|
|
72
72
|
HasField(fieldInfo: FieldInfo, fromDataAnnotation?: boolean): IConventionComplexPropertyBuilder | undefined;
|
|
73
73
|
HasField(fieldInfo: FieldInfo, fromDataAnnotation?: boolean): IConventionComplexPropertyBuilder;
|
|
74
74
|
HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
|
|
75
75
|
HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionComplexPropertyBuilder | undefined;
|
|
76
|
-
IsRequired(required:
|
|
76
|
+
IsRequired(required: Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): IConventionComplexPropertyBuilder | undefined;
|
|
77
77
|
CanRemoveAnnotation(name: string, fromDataAnnotation?: boolean): boolean;
|
|
78
|
-
CanSetPropertyAccessMode(propertyAccessMode:
|
|
78
|
+
CanSetPropertyAccessMode(propertyAccessMode: Nullable_1<PropertyAccessMode>, fromDataAnnotation?: boolean): boolean;
|
|
79
79
|
HasAnnotation2(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionComplexPropertyBuilder;
|
|
80
80
|
HasNoAnnotation2(name: string, fromDataAnnotation?: boolean): IConventionComplexPropertyBuilder;
|
|
81
|
-
UsePropertyAccessMode(propertyAccessMode:
|
|
81
|
+
UsePropertyAccessMode(propertyAccessMode: Nullable_1<PropertyAccessMode>, fromDataAnnotation?: boolean): IConventionComplexPropertyBuilder;
|
|
82
82
|
}
|
|
83
83
|
|
|
84
84
|
|
|
@@ -97,18 +97,18 @@ export interface IConventionComplexTypeBuilder$instance extends IConventionTypeB
|
|
|
97
97
|
CanRemoveDiscriminator(fromDataAnnotation?: boolean): boolean;
|
|
98
98
|
CanRemoveProperty(property: IConventionProperty, fromDataAnnotation?: boolean): boolean;
|
|
99
99
|
CanSetAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): boolean;
|
|
100
|
-
CanSetChangeTrackingStrategy(changeTrackingStrategy:
|
|
100
|
+
CanSetChangeTrackingStrategy(changeTrackingStrategy: Nullable_1<ChangeTrackingStrategy>, fromDataAnnotation?: boolean): boolean;
|
|
101
101
|
CanSetDiscriminator(name: string, type: Type, fromDataAnnotation?: boolean): boolean;
|
|
102
102
|
CanSetDiscriminator(type: Type, fromDataAnnotation?: boolean): boolean;
|
|
103
103
|
ComplexProperty(memberInfo: MemberInfo, complexType?: Type, fromDataAnnotation?: boolean): IConventionComplexPropertyBuilder | undefined;
|
|
104
104
|
ComplexProperty(propertyType: Type, propertyName: string, complexType?: Type, fromDataAnnotation?: boolean): IConventionComplexPropertyBuilder | undefined;
|
|
105
|
-
GetOrCreateProperties(memberInfos:
|
|
106
|
-
GetOrCreateProperties(propertyNames:
|
|
105
|
+
GetOrCreateProperties(memberInfos: IEnumerable_1<MemberInfo>, fromDataAnnotation?: boolean): IReadOnlyList_1<IConventionProperty> | undefined;
|
|
106
|
+
GetOrCreateProperties(propertyNames: IReadOnlyList_1<System_Internal.String>, fromDataAnnotation?: boolean): IReadOnlyList_1<IConventionProperty> | undefined;
|
|
107
107
|
HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
|
|
108
108
|
HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionComplexTypeBuilder | undefined;
|
|
109
109
|
HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionTypeBaseBuilder | undefined;
|
|
110
|
-
HasChangeTrackingStrategy(changeTrackingStrategy:
|
|
111
|
-
HasChangeTrackingStrategy(changeTrackingStrategy:
|
|
110
|
+
HasChangeTrackingStrategy(changeTrackingStrategy: Nullable_1<ChangeTrackingStrategy>, fromDataAnnotation?: boolean): IConventionComplexTypeBuilder | undefined;
|
|
111
|
+
HasChangeTrackingStrategy(changeTrackingStrategy: Nullable_1<ChangeTrackingStrategy>, fromDataAnnotation?: boolean): IConventionTypeBaseBuilder | undefined;
|
|
112
112
|
HasDiscriminator(fromDataAnnotation?: boolean): IConventionComplexTypeDiscriminatorBuilder | undefined;
|
|
113
113
|
HasDiscriminator(memberInfo: MemberInfo, fromDataAnnotation?: boolean): IConventionComplexTypeDiscriminatorBuilder | undefined;
|
|
114
114
|
HasDiscriminator(name: string, fromDataAnnotation?: boolean): IConventionComplexTypeDiscriminatorBuilder | undefined;
|
|
@@ -126,8 +126,8 @@ export interface IConventionComplexTypeBuilder$instance extends IConventionTypeB
|
|
|
126
126
|
IsIgnored(memberName: string, fromDataAnnotation?: boolean): boolean;
|
|
127
127
|
Property(memberInfo: MemberInfo, fromDataAnnotation?: boolean): IConventionPropertyBuilder | undefined;
|
|
128
128
|
Property(propertyType: Type, propertyName: string, setTypeConfigurationSource?: boolean, fromDataAnnotation?: boolean): IConventionPropertyBuilder | undefined;
|
|
129
|
-
RemoveUnusedImplicitProperties(properties:
|
|
130
|
-
RemoveUnusedImplicitProperties(properties:
|
|
129
|
+
RemoveUnusedImplicitProperties(properties: IReadOnlyList_1<IConventionProperty>): IConventionComplexTypeBuilder;
|
|
130
|
+
RemoveUnusedImplicitProperties(properties: IReadOnlyList_1<IConventionProperty>): IConventionTypeBaseBuilder;
|
|
131
131
|
CanRemoveAnnotation(name: string, fromDataAnnotation?: boolean): boolean;
|
|
132
132
|
HasAnnotation2(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionTypeBaseBuilder | undefined;
|
|
133
133
|
HasNoAnnotation2(name: string, fromDataAnnotation?: boolean): IConventionTypeBaseBuilder | undefined;
|
|
@@ -155,14 +155,14 @@ export interface IConventionDbFunctionBuilder$instance extends IConventionAnnota
|
|
|
155
155
|
CanSetAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): boolean;
|
|
156
156
|
CanSetIsBuiltIn(builtIn: boolean, fromDataAnnotation?: boolean): boolean;
|
|
157
157
|
CanSetName(name: string, fromDataAnnotation?: boolean): boolean;
|
|
158
|
-
CanSetTranslation(translation:
|
|
158
|
+
CanSetTranslation(translation: Func_2<IReadOnlyList_1<SqlExpression>, SqlExpression>, fromDataAnnotation?: boolean): boolean;
|
|
159
159
|
CanSetTypeMapping(typeMapping: RelationalTypeMapping, fromDataAnnotation?: boolean): boolean;
|
|
160
160
|
HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
|
|
161
161
|
HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionDbFunctionBuilder | undefined;
|
|
162
162
|
HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
|
|
163
163
|
HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionDbFunctionBuilder | undefined;
|
|
164
164
|
HasParameter(name: string, fromDataAnnotation?: boolean): IConventionDbFunctionParameterBuilder;
|
|
165
|
-
HasTranslation(translation:
|
|
165
|
+
HasTranslation(translation: Func_2<IReadOnlyList_1<SqlExpression>, SqlExpression>, fromDataAnnotation?: boolean): IConventionDbFunctionBuilder | undefined;
|
|
166
166
|
HasTypeMapping(typeMapping: RelationalTypeMapping, fromDataAnnotation?: boolean): IConventionDbFunctionBuilder | undefined;
|
|
167
167
|
IsBuiltIn(builtIn: boolean, fromDataAnnotation?: boolean): IConventionDbFunctionBuilder | undefined;
|
|
168
168
|
CanRemoveAnnotation(name: string, fromDataAnnotation?: boolean): boolean;
|
|
@@ -214,7 +214,7 @@ export interface IConventionElementTypeBuilder$instance extends IConventionAnnot
|
|
|
214
214
|
CanSetAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): boolean;
|
|
215
215
|
CanSetConversion(converter: ValueConverter, fromDataAnnotation?: boolean): boolean;
|
|
216
216
|
CanSetConversion(providerClrType: Type, fromDataAnnotation?: boolean): boolean;
|
|
217
|
-
CanSetIsRequired(required:
|
|
217
|
+
CanSetIsRequired(required: Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): boolean;
|
|
218
218
|
CanSetTypeMapping(typeMapping: CoreTypeMapping, fromDataAnnotation?: boolean): boolean;
|
|
219
219
|
CanSetValueComparer(comparer: ValueComparer, fromDataAnnotation?: boolean): boolean;
|
|
220
220
|
HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
|
|
@@ -225,7 +225,7 @@ export interface IConventionElementTypeBuilder$instance extends IConventionAnnot
|
|
|
225
225
|
HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionElementTypeBuilder | undefined;
|
|
226
226
|
HasTypeMapping(typeMapping: CoreTypeMapping, fromDataAnnotation?: boolean): IConventionElementTypeBuilder | undefined;
|
|
227
227
|
HasValueComparer(comparer: ValueComparer, fromDataAnnotation?: boolean): IConventionElementTypeBuilder | undefined;
|
|
228
|
-
IsRequired(required:
|
|
228
|
+
IsRequired(required: Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): IConventionElementTypeBuilder | undefined;
|
|
229
229
|
}
|
|
230
230
|
|
|
231
231
|
|
|
@@ -254,30 +254,30 @@ export interface IConventionEntityTypeBuilder$instance extends IConventionTypeBa
|
|
|
254
254
|
CanRemoveSkipNavigation(skipNavigation: IConventionSkipNavigation, fromDataAnnotation?: boolean): boolean;
|
|
255
255
|
CanSetAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): boolean;
|
|
256
256
|
CanSetBaseType(baseEntityType: IConventionEntityType, fromDataAnnotation?: boolean): boolean;
|
|
257
|
-
CanSetChangeTrackingStrategy(changeTrackingStrategy:
|
|
257
|
+
CanSetChangeTrackingStrategy(changeTrackingStrategy: Nullable_1<ChangeTrackingStrategy>, fromDataAnnotation?: boolean): boolean;
|
|
258
258
|
CanSetDiscriminator(type: Type, fromDataAnnotation?: boolean): boolean;
|
|
259
259
|
CanSetDiscriminator(name: string, type: Type, fromDataAnnotation?: boolean): boolean;
|
|
260
|
-
CanSetPrimaryKey(propertyNames:
|
|
260
|
+
CanSetPrimaryKey(propertyNames: IReadOnlyList_1<System_Internal.String>, fromDataAnnotation?: boolean): boolean;
|
|
261
261
|
CanSetQueryFilter(filter: LambdaExpression, fromDataAnnotation?: boolean): boolean;
|
|
262
262
|
CanSetQueryFilter(filterKey: string, filter: LambdaExpression, fromDataAnnotation?: boolean): boolean;
|
|
263
263
|
ComplexProperty(memberInfo: MemberInfo, complexType?: Type, fromDataAnnotation?: boolean): IConventionComplexPropertyBuilder | undefined;
|
|
264
264
|
ComplexProperty(propertyType: Type, propertyName: string, complexType?: Type, fromDataAnnotation?: boolean): IConventionComplexPropertyBuilder | undefined;
|
|
265
|
-
GetOrCreateProperties(memberInfos:
|
|
266
|
-
GetOrCreateProperties(propertyNames:
|
|
267
|
-
GetTargetEntityTypeBuilder(targetClrType: Type, navigationInfo: MemberInfo, createIfMissing?: boolean, targetShouldBeOwned?:
|
|
265
|
+
GetOrCreateProperties(memberInfos: IEnumerable_1<MemberInfo>, fromDataAnnotation?: boolean): IReadOnlyList_1<IConventionProperty> | undefined;
|
|
266
|
+
GetOrCreateProperties(propertyNames: IReadOnlyList_1<System_Internal.String>, fromDataAnnotation?: boolean): IReadOnlyList_1<IConventionProperty> | undefined;
|
|
267
|
+
GetTargetEntityTypeBuilder(targetClrType: Type, navigationInfo: MemberInfo, createIfMissing?: boolean, targetShouldBeOwned?: Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): IConventionEntityTypeBuilder | undefined;
|
|
268
268
|
HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
|
|
269
269
|
HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionEntityTypeBuilder | undefined;
|
|
270
270
|
HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionTypeBaseBuilder | undefined;
|
|
271
271
|
HasBaseType(baseEntityType: IConventionEntityType, fromDataAnnotation?: boolean): IConventionEntityTypeBuilder | undefined;
|
|
272
|
-
HasChangeTrackingStrategy(changeTrackingStrategy:
|
|
273
|
-
HasChangeTrackingStrategy(changeTrackingStrategy:
|
|
272
|
+
HasChangeTrackingStrategy(changeTrackingStrategy: Nullable_1<ChangeTrackingStrategy>, fromDataAnnotation?: boolean): IConventionEntityTypeBuilder | undefined;
|
|
273
|
+
HasChangeTrackingStrategy(changeTrackingStrategy: Nullable_1<ChangeTrackingStrategy>, fromDataAnnotation?: boolean): IConventionTypeBaseBuilder | undefined;
|
|
274
274
|
HasDiscriminator(fromDataAnnotation?: boolean): IConventionDiscriminatorBuilder | undefined;
|
|
275
275
|
HasDiscriminator(memberInfo: MemberInfo, fromDataAnnotation?: boolean): IConventionDiscriminatorBuilder | undefined;
|
|
276
276
|
HasDiscriminator(name: string, fromDataAnnotation?: boolean): IConventionDiscriminatorBuilder | undefined;
|
|
277
277
|
HasDiscriminator(name: string, type: Type, fromDataAnnotation?: boolean): IConventionDiscriminatorBuilder | undefined;
|
|
278
278
|
HasDiscriminator(type: Type, fromDataAnnotation?: boolean): IConventionDiscriminatorBuilder | undefined;
|
|
279
|
-
HasIndex(propertyNames:
|
|
280
|
-
HasIndex(propertyNames:
|
|
279
|
+
HasIndex(propertyNames: IReadOnlyList_1<System_Internal.String>, fromDataAnnotation?: boolean): IConventionIndexBuilder | undefined;
|
|
280
|
+
HasIndex(propertyNames: IReadOnlyList_1<System_Internal.String>, name: string, fromDataAnnotation?: boolean): IConventionIndexBuilder | undefined;
|
|
281
281
|
HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
|
|
282
282
|
HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionEntityTypeBuilder | undefined;
|
|
283
283
|
HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionTypeBaseBuilder | undefined;
|
|
@@ -286,12 +286,12 @@ export interface IConventionEntityTypeBuilder$instance extends IConventionTypeBa
|
|
|
286
286
|
HasNoIndex(index: IConventionIndex, fromDataAnnotation?: boolean): IConventionEntityTypeBuilder | undefined;
|
|
287
287
|
HasNoKey(key: IConventionKey, fromDataAnnotation?: boolean): IConventionEntityTypeBuilder | undefined;
|
|
288
288
|
HasNoKey(fromDataAnnotation?: boolean): IConventionEntityTypeBuilder | undefined;
|
|
289
|
-
HasNoKey(properties:
|
|
289
|
+
HasNoKey(properties: IReadOnlyList_1<IConventionProperty>, fromDataAnnotation?: boolean): IConventionEntityTypeBuilder | undefined;
|
|
290
290
|
HasNoNavigation(navigation: IConventionNavigation, fromDataAnnotation?: boolean): IConventionEntityTypeBuilder | undefined;
|
|
291
291
|
HasNoProperty(property: IConventionProperty, fromDataAnnotation?: boolean): IConventionEntityTypeBuilder | undefined;
|
|
292
292
|
HasNoProperty(property: IConventionProperty, fromDataAnnotation?: boolean): IConventionTypeBaseBuilder | undefined;
|
|
293
293
|
HasNoRelationship(foreignKey: IConventionForeignKey, fromDataAnnotation?: boolean): IConventionEntityTypeBuilder | undefined;
|
|
294
|
-
HasNoRelationship(properties:
|
|
294
|
+
HasNoRelationship(properties: IReadOnlyList_1<IConventionProperty>, principalKey: IConventionKey, principalEntityType: IConventionEntityType, fromDataAnnotation?: boolean): IConventionEntityTypeBuilder | undefined;
|
|
295
295
|
HasNoServiceProperty(serviceProperty: IConventionServiceProperty, fromDataAnnotation?: boolean): IConventionEntityTypeBuilder | undefined;
|
|
296
296
|
HasNoSkipNavigation(skipNavigation: IConventionSkipNavigation, fromDataAnnotation?: boolean): IConventionEntityTypeBuilder | undefined;
|
|
297
297
|
HasOwnership(targetEntityType: IConventionEntityType, navigation: MemberInfo, fromDataAnnotation?: boolean): IConventionForeignKeyBuilder | undefined;
|
|
@@ -306,22 +306,22 @@ export interface IConventionEntityTypeBuilder$instance extends IConventionTypeBa
|
|
|
306
306
|
HasQueryFilter(filterKey: string, filter: LambdaExpression, fromDataAnnotation?: boolean): IConventionEntityTypeBuilder | undefined;
|
|
307
307
|
HasRelationship(principalEntityType: IConventionEntityType, principalKey: IConventionKey, fromDataAnnotation?: boolean): IConventionForeignKeyBuilder | undefined;
|
|
308
308
|
HasRelationship(targetEntityType: IConventionEntityType, fromDataAnnotation?: boolean): IConventionForeignKeyBuilder | undefined;
|
|
309
|
-
HasRelationship(principalEntityType: IConventionEntityType, dependentProperties:
|
|
310
|
-
HasRelationship(principalEntityType: IConventionEntityType, dependentProperties:
|
|
309
|
+
HasRelationship(principalEntityType: IConventionEntityType, dependentProperties: IReadOnlyList_1<IConventionProperty>, principalKey: IConventionKey, fromDataAnnotation?: boolean): IConventionForeignKeyBuilder | undefined;
|
|
310
|
+
HasRelationship(principalEntityType: IConventionEntityType, dependentProperties: IReadOnlyList_1<IConventionProperty>, fromDataAnnotation?: boolean): IConventionForeignKeyBuilder | undefined;
|
|
311
311
|
HasRelationship(targetEntityType: IConventionEntityType, navigation: MemberInfo, setTargetAsPrincipal?: boolean, fromDataAnnotation?: boolean): IConventionForeignKeyBuilder | undefined;
|
|
312
312
|
HasRelationship(targetEntityType: IConventionEntityType, navigation: MemberInfo, inverseNavigation: MemberInfo, setTargetAsPrincipal?: boolean, fromDataAnnotation?: boolean): IConventionForeignKeyBuilder | undefined;
|
|
313
313
|
HasRelationship(targetEntityType: IConventionEntityType, navigationName: string, setTargetAsPrincipal?: boolean, fromDataAnnotation?: boolean): IConventionForeignKeyBuilder | undefined;
|
|
314
314
|
HasRelationship(targetEntityType: IConventionEntityType, navigationName: string, inverseNavigationName: string, setTargetAsPrincipal?: boolean, fromDataAnnotation?: boolean): IConventionForeignKeyBuilder | undefined;
|
|
315
|
-
HasSkipNavigation(navigation: MemberInfo, targetEntityType: IConventionEntityType, collection?:
|
|
316
|
-
HasSkipNavigation(navigation: MemberInfo, targetEntityType: IConventionEntityType, inverseNavigation: MemberInfo, collections?:
|
|
317
|
-
HasSkipNavigation(navigationName: string, targetEntityType: IConventionEntityType, navigationType?: Type, collection?:
|
|
315
|
+
HasSkipNavigation(navigation: MemberInfo, targetEntityType: IConventionEntityType, collection?: Nullable_1<System_Internal.Boolean>, onDependent?: Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): IConventionSkipNavigationBuilder | undefined;
|
|
316
|
+
HasSkipNavigation(navigation: MemberInfo, targetEntityType: IConventionEntityType, inverseNavigation: MemberInfo, collections?: Nullable_1<System_Internal.Boolean>, onDependent?: Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): IConventionSkipNavigationBuilder | undefined;
|
|
317
|
+
HasSkipNavigation(navigationName: string, targetEntityType: IConventionEntityType, navigationType?: Type, collection?: Nullable_1<System_Internal.Boolean>, onDependent?: Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): IConventionSkipNavigationBuilder | undefined;
|
|
318
318
|
HasTrigger(modelName: string, fromDataAnnotation?: boolean): IConventionTriggerBuilder | undefined;
|
|
319
319
|
IndexerProperty(propertyType: Type, propertyName: string, fromDataAnnotation?: boolean): IConventionPropertyBuilder | undefined;
|
|
320
|
-
PrimaryKey(properties:
|
|
320
|
+
PrimaryKey(properties: IReadOnlyList_1<IConventionProperty>, fromDataAnnotation?: boolean): IConventionKeyBuilder | undefined;
|
|
321
321
|
Property(memberInfo: MemberInfo, fromDataAnnotation?: boolean): IConventionPropertyBuilder | undefined;
|
|
322
322
|
Property(propertyType: Type, propertyName: string, setTypeConfigurationSource?: boolean, fromDataAnnotation?: boolean): IConventionPropertyBuilder | undefined;
|
|
323
|
-
RemoveUnusedImplicitProperties(properties:
|
|
324
|
-
RemoveUnusedImplicitProperties(properties:
|
|
323
|
+
RemoveUnusedImplicitProperties(properties: IReadOnlyList_1<IConventionProperty>): IConventionEntityTypeBuilder;
|
|
324
|
+
RemoveUnusedImplicitProperties(properties: IReadOnlyList_1<IConventionProperty>): IConventionTypeBaseBuilder;
|
|
325
325
|
ServiceProperty(memberInfo: MemberInfo, fromDataAnnotation?: boolean): IConventionServicePropertyBuilder | undefined;
|
|
326
326
|
ServiceProperty(serviceType: Type, memberInfo: MemberInfo, fromDataAnnotation?: boolean): IConventionServicePropertyBuilder | undefined;
|
|
327
327
|
CanRemoveAnnotation(name: string, fromDataAnnotation?: boolean): boolean;
|
|
@@ -353,11 +353,11 @@ export interface IConventionForeignKeyBuilder$instance extends IConventionAnnota
|
|
|
353
353
|
|
|
354
354
|
readonly Metadata: IConventionForeignKey;
|
|
355
355
|
readonly ModelBuilder: IConventionModelBuilder;
|
|
356
|
-
CanInvert(newForeignKeyProperties:
|
|
356
|
+
CanInvert(newForeignKeyProperties: IReadOnlyList_1<IConventionProperty>, fromDataAnnotation?: boolean): boolean;
|
|
357
357
|
CanRemoveAnnotation(name: string, fromDataAnnotation?: boolean): boolean;
|
|
358
358
|
CanSetAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): boolean;
|
|
359
359
|
CanSetEntityTypes(principalEntityType: IConventionEntityType, dependentEntityType: IConventionEntityType, fromDataAnnotation?: boolean): boolean;
|
|
360
|
-
CanSetIsRequired(required:
|
|
360
|
+
CanSetIsRequired(required: Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): boolean;
|
|
361
361
|
CanSetNavigation(property: MemberInfo, pointsToPrincipal: boolean, fromDataAnnotation?: boolean): boolean;
|
|
362
362
|
CanSetNavigation(name: string, pointsToPrincipal: boolean, fromDataAnnotation?: boolean): boolean;
|
|
363
363
|
CanSetNavigations(navigationToPrincipal: MemberInfo, navigationToDependent: MemberInfo, fromDataAnnotation?: boolean): boolean;
|
|
@@ -365,14 +365,14 @@ export interface IConventionForeignKeyBuilder$instance extends IConventionAnnota
|
|
|
365
365
|
HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
|
|
366
366
|
HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionForeignKeyBuilder | undefined;
|
|
367
367
|
HasEntityTypes(principalEntityType: IConventionEntityType, dependentEntityType: IConventionEntityType, fromDataAnnotation?: boolean): IConventionForeignKeyBuilder | undefined;
|
|
368
|
-
HasForeignKey(propertyNames:
|
|
368
|
+
HasForeignKey(propertyNames: IReadOnlyList_1<System_Internal.String>, fromDataAnnotation?: boolean): IConventionForeignKeyBuilder | undefined;
|
|
369
369
|
HasNavigation(property: MemberInfo, pointsToPrincipal: boolean, fromDataAnnotation?: boolean): IConventionForeignKeyBuilder | undefined;
|
|
370
370
|
HasNavigation(name: string, pointsToPrincipal: boolean, fromDataAnnotation?: boolean): IConventionForeignKeyBuilder | undefined;
|
|
371
371
|
HasNavigations(navigationToPrincipal: MemberInfo, navigationToDependent: MemberInfo, fromDataAnnotation?: boolean): IConventionForeignKeyBuilder | undefined;
|
|
372
372
|
HasNavigations(navigationToPrincipalName: string, navigationToDependentName: string, fromDataAnnotation?: boolean): IConventionForeignKeyBuilder | undefined;
|
|
373
373
|
HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
|
|
374
374
|
HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionForeignKeyBuilder | undefined;
|
|
375
|
-
IsRequired(required:
|
|
375
|
+
IsRequired(required: Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): IConventionForeignKeyBuilder | undefined;
|
|
376
376
|
}
|
|
377
377
|
|
|
378
378
|
|
|
@@ -385,14 +385,14 @@ export interface IConventionIndexBuilder$instance extends IConventionAnnotatable
|
|
|
385
385
|
readonly ModelBuilder: IConventionModelBuilder;
|
|
386
386
|
CanRemoveAnnotation(name: string, fromDataAnnotation?: boolean): boolean;
|
|
387
387
|
CanSetAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): boolean;
|
|
388
|
-
CanSetIsDescending(descending:
|
|
389
|
-
CanSetIsUnique(unique:
|
|
388
|
+
CanSetIsDescending(descending: IReadOnlyList_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): boolean;
|
|
389
|
+
CanSetIsUnique(unique: Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): boolean;
|
|
390
390
|
HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
|
|
391
391
|
HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionIndexBuilder | undefined;
|
|
392
392
|
HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
|
|
393
393
|
HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionIndexBuilder | undefined;
|
|
394
|
-
IsDescending(descending:
|
|
395
|
-
IsUnique(unique:
|
|
394
|
+
IsDescending(descending: IReadOnlyList_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): IConventionIndexBuilder | undefined;
|
|
395
|
+
IsUnique(unique: Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): IConventionIndexBuilder | undefined;
|
|
396
396
|
}
|
|
397
397
|
|
|
398
398
|
|
|
@@ -422,22 +422,22 @@ export interface IConventionModelBuilder$instance extends IConventionAnnotatable
|
|
|
422
422
|
CanHaveSharedTypeEntity(name: string, type: Type, fromDataAnnotation?: boolean): boolean;
|
|
423
423
|
CanRemoveEntity(entityType: IConventionEntityType, fromDataAnnotation?: boolean): boolean;
|
|
424
424
|
CanSetAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): boolean;
|
|
425
|
-
CanSetChangeTrackingStrategy(changeTrackingStrategy:
|
|
425
|
+
CanSetChangeTrackingStrategy(changeTrackingStrategy: Nullable_1<ChangeTrackingStrategy>, fromDataAnnotation?: boolean): boolean;
|
|
426
426
|
ComplexType(type: Type, fromDataAnnotation?: boolean): IConventionModelBuilder | undefined;
|
|
427
|
-
Entity(name: string, shouldBeOwned?:
|
|
427
|
+
Entity(name: string, shouldBeOwned?: Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): IConventionEntityTypeBuilder | undefined;
|
|
428
428
|
Entity(name: string, definingNavigationName: string, definingEntityType: IConventionEntityType, fromDataAnnotation?: boolean): IConventionEntityTypeBuilder | undefined;
|
|
429
|
-
Entity(type: Type, shouldBeOwned?:
|
|
429
|
+
Entity(type: Type, shouldBeOwned?: Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): IConventionEntityTypeBuilder | undefined;
|
|
430
430
|
Entity(type: Type, definingNavigationName: string, definingEntityType: IConventionEntityType, fromDataAnnotation?: boolean): IConventionEntityTypeBuilder | undefined;
|
|
431
431
|
HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
|
|
432
432
|
HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionModelBuilder | undefined;
|
|
433
|
-
HasChangeTrackingStrategy(changeTrackingStrategy:
|
|
433
|
+
HasChangeTrackingStrategy(changeTrackingStrategy: Nullable_1<ChangeTrackingStrategy>, fromDataAnnotation?: boolean): IConventionModelBuilder | undefined;
|
|
434
434
|
HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
|
|
435
435
|
HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionModelBuilder | undefined;
|
|
436
436
|
HasNoEntityType(entityType: IConventionEntityType, fromDataAnnotation?: boolean): IConventionModelBuilder | undefined;
|
|
437
437
|
IsIgnored(typeName: string, fromDataAnnotation?: boolean): boolean;
|
|
438
438
|
IsIgnored(type: Type, fromDataAnnotation?: boolean): boolean;
|
|
439
439
|
Owned(type: Type, fromDataAnnotation?: boolean): IConventionOwnedEntityTypeBuilder | undefined;
|
|
440
|
-
SharedTypeEntity(name: string, type: Type, shouldBeOwned?:
|
|
440
|
+
SharedTypeEntity(name: string, type: Type, shouldBeOwned?: Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): IConventionEntityTypeBuilder | undefined;
|
|
441
441
|
CanRemoveAnnotation(name: string, fromDataAnnotation?: boolean): boolean;
|
|
442
442
|
}
|
|
443
443
|
|
|
@@ -449,9 +449,9 @@ export interface IConventionNavigationBuilder$instance extends IConventionProper
|
|
|
449
449
|
|
|
450
450
|
readonly Metadata: IConventionNavigation;
|
|
451
451
|
readonly ModelBuilder: IConventionModelBuilder;
|
|
452
|
-
AutoInclude(autoInclude:
|
|
452
|
+
AutoInclude(autoInclude: Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): IConventionNavigationBuilder | undefined;
|
|
453
453
|
CanSetAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): boolean;
|
|
454
|
-
CanSetAutoInclude(autoInclude:
|
|
454
|
+
CanSetAutoInclude(autoInclude: Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): boolean;
|
|
455
455
|
CanSetField(fieldInfo: FieldInfo, fromDataAnnotation?: boolean): boolean;
|
|
456
456
|
CanSetField(fieldName: string, fromDataAnnotation?: boolean): boolean;
|
|
457
457
|
HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
|
|
@@ -461,10 +461,10 @@ export interface IConventionNavigationBuilder$instance extends IConventionProper
|
|
|
461
461
|
HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
|
|
462
462
|
HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionNavigationBuilder | undefined;
|
|
463
463
|
CanRemoveAnnotation(name: string, fromDataAnnotation?: boolean): boolean;
|
|
464
|
-
CanSetPropertyAccessMode(propertyAccessMode:
|
|
464
|
+
CanSetPropertyAccessMode(propertyAccessMode: Nullable_1<PropertyAccessMode>, fromDataAnnotation?: boolean): boolean;
|
|
465
465
|
HasAnnotation2(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionNavigationBuilder;
|
|
466
466
|
HasNoAnnotation2(name: string, fromDataAnnotation?: boolean): IConventionNavigationBuilder;
|
|
467
|
-
UsePropertyAccessMode(propertyAccessMode:
|
|
467
|
+
UsePropertyAccessMode(propertyAccessMode: Nullable_1<PropertyAccessMode>, fromDataAnnotation?: boolean): IConventionNavigationBuilder;
|
|
468
468
|
}
|
|
469
469
|
|
|
470
470
|
|
|
@@ -486,13 +486,13 @@ export interface IConventionPropertyBaseBuilder_1$instance<TBuilder extends ICon
|
|
|
486
486
|
CanSetAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): boolean;
|
|
487
487
|
CanSetField(fieldInfo: FieldInfo, fromDataAnnotation?: boolean): boolean;
|
|
488
488
|
CanSetField(fieldName: string, fromDataAnnotation?: boolean): boolean;
|
|
489
|
-
CanSetPropertyAccessMode(propertyAccessMode:
|
|
489
|
+
CanSetPropertyAccessMode(propertyAccessMode: Nullable_1<PropertyAccessMode>, fromDataAnnotation?: boolean): boolean;
|
|
490
490
|
HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
|
|
491
491
|
HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): TBuilder | undefined;
|
|
492
492
|
HasField(fieldInfo: FieldInfo, fromDataAnnotation?: boolean): TBuilder | undefined;
|
|
493
493
|
HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
|
|
494
494
|
HasNoAnnotation(name: string, fromDataAnnotation?: boolean): TBuilder | undefined;
|
|
495
|
-
UsePropertyAccessMode(propertyAccessMode:
|
|
495
|
+
UsePropertyAccessMode(propertyAccessMode: Nullable_1<PropertyAccessMode>, fromDataAnnotation?: boolean): TBuilder | undefined;
|
|
496
496
|
CanRemoveAnnotation(name: string, fromDataAnnotation?: boolean): boolean;
|
|
497
497
|
}
|
|
498
498
|
|
|
@@ -508,11 +508,11 @@ export interface IConventionPropertyBuilder$instance extends IConventionProperty
|
|
|
508
508
|
CanSetConversion(converter: ValueConverter, fromDataAnnotation?: boolean): boolean;
|
|
509
509
|
CanSetField(fieldInfo: FieldInfo, fromDataAnnotation?: boolean): boolean;
|
|
510
510
|
CanSetField(fieldName: string, fromDataAnnotation?: boolean): boolean;
|
|
511
|
-
CanSetIsRequired(required:
|
|
511
|
+
CanSetIsRequired(required: Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): boolean;
|
|
512
512
|
CanSetSentinel(sentinel: unknown, fromDataAnnotation?: boolean): boolean;
|
|
513
513
|
CanSetTypeMapping(typeMapping: CoreTypeMapping, fromDataAnnotation?: boolean): boolean;
|
|
514
514
|
CanSetValueComparer(comparer: ValueComparer, fromDataAnnotation?: boolean): boolean;
|
|
515
|
-
CanSetValueGenerator(factory:
|
|
515
|
+
CanSetValueGenerator(factory: Func_3<IProperty, ITypeBase, ValueGenerator>, fromDataAnnotation?: boolean): boolean;
|
|
516
516
|
CanSetValueGeneratorFactory(valueGeneratorFactoryType: Type, fromDataAnnotation?: boolean): boolean;
|
|
517
517
|
HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
|
|
518
518
|
HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionPropertyBuilder | undefined;
|
|
@@ -524,15 +524,15 @@ export interface IConventionPropertyBuilder$instance extends IConventionProperty
|
|
|
524
524
|
HasSentinel(sentinel: unknown, fromDataAnnotation?: boolean): IConventionPropertyBuilder | undefined;
|
|
525
525
|
HasTypeMapping(typeMapping: CoreTypeMapping, fromDataAnnotation?: boolean): IConventionPropertyBuilder | undefined;
|
|
526
526
|
HasValueComparer(comparer: ValueComparer, fromDataAnnotation?: boolean): IConventionPropertyBuilder | undefined;
|
|
527
|
-
HasValueGenerator(factory:
|
|
527
|
+
HasValueGenerator(factory: Func_3<IProperty, ITypeBase, ValueGenerator>, fromDataAnnotation?: boolean): IConventionPropertyBuilder | undefined;
|
|
528
528
|
HasValueGenerator(valueGeneratorType: Type, fromDataAnnotation?: boolean): IConventionPropertyBuilder | undefined;
|
|
529
|
-
IsRequired(required:
|
|
529
|
+
IsRequired(required: Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): IConventionPropertyBuilder | undefined;
|
|
530
530
|
SetElementType(elementType: Type, fromDataAnnotation?: boolean): IConventionElementTypeBuilder | undefined;
|
|
531
531
|
CanRemoveAnnotation(name: string, fromDataAnnotation?: boolean): boolean;
|
|
532
|
-
CanSetPropertyAccessMode(propertyAccessMode:
|
|
532
|
+
CanSetPropertyAccessMode(propertyAccessMode: Nullable_1<PropertyAccessMode>, fromDataAnnotation?: boolean): boolean;
|
|
533
533
|
HasAnnotation2(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionPropertyBuilder;
|
|
534
534
|
HasNoAnnotation2(name: string, fromDataAnnotation?: boolean): IConventionPropertyBuilder;
|
|
535
|
-
UsePropertyAccessMode(propertyAccessMode:
|
|
535
|
+
UsePropertyAccessMode(propertyAccessMode: Nullable_1<PropertyAccessMode>, fromDataAnnotation?: boolean): IConventionPropertyBuilder;
|
|
536
536
|
}
|
|
537
537
|
|
|
538
538
|
|
|
@@ -559,14 +559,14 @@ export interface IConventionSequenceBuilder$instance extends IConventionAnnotata
|
|
|
559
559
|
readonly ModelBuilder: IConventionModelBuilder;
|
|
560
560
|
CanRemoveAnnotation(name: string, fromDataAnnotation?: boolean): boolean;
|
|
561
561
|
CanSetAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): boolean;
|
|
562
|
-
CanSetIncrementsBy(increment:
|
|
562
|
+
CanSetIncrementsBy(increment: Nullable_1<System_Internal.Int32>, fromDataAnnotation?: boolean): boolean;
|
|
563
563
|
CanSetType(type: Type, fromDataAnnotation?: boolean): boolean;
|
|
564
564
|
HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
|
|
565
565
|
HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionSequenceBuilder | undefined;
|
|
566
566
|
HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
|
|
567
567
|
HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionSequenceBuilder | undefined;
|
|
568
568
|
HasType(type: Type, fromDataAnnotation?: boolean): IConventionSequenceBuilder | undefined;
|
|
569
|
-
IncrementsBy(increment:
|
|
569
|
+
IncrementsBy(increment: Nullable_1<System_Internal.Int32>, fromDataAnnotation?: boolean): IConventionSequenceBuilder | undefined;
|
|
570
570
|
}
|
|
571
571
|
|
|
572
572
|
|
|
@@ -581,7 +581,7 @@ export interface IConventionServicePropertyBuilder$instance extends IConventionP
|
|
|
581
581
|
CanSetField(fieldInfo: FieldInfo, fromDataAnnotation?: boolean): boolean;
|
|
582
582
|
CanSetField(fieldName: string, fromDataAnnotation?: boolean): boolean;
|
|
583
583
|
CanSetParameterBinding(parameterBinding: ServiceParameterBinding, fromDataAnnotation?: boolean): boolean;
|
|
584
|
-
CanSetPropertyAccessMode(propertyAccessMode:
|
|
584
|
+
CanSetPropertyAccessMode(propertyAccessMode: Nullable_1<PropertyAccessMode>, fromDataAnnotation?: boolean): boolean;
|
|
585
585
|
HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
|
|
586
586
|
HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionServicePropertyBuilder | undefined;
|
|
587
587
|
HasField(fieldInfo: FieldInfo, fromDataAnnotation?: boolean): IConventionServicePropertyBuilder | undefined;
|
|
@@ -589,8 +589,8 @@ export interface IConventionServicePropertyBuilder$instance extends IConventionP
|
|
|
589
589
|
HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
|
|
590
590
|
HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionServicePropertyBuilder | undefined;
|
|
591
591
|
HasParameterBinding(parameterBinding: ServiceParameterBinding, fromDataAnnotation?: boolean): IConventionServicePropertyBuilder | undefined;
|
|
592
|
-
UsePropertyAccessMode(propertyAccessMode:
|
|
593
|
-
UsePropertyAccessMode(propertyAccessMode:
|
|
592
|
+
UsePropertyAccessMode(propertyAccessMode: Nullable_1<PropertyAccessMode>, fromDataAnnotation?: boolean): IConventionServicePropertyBuilder | undefined;
|
|
593
|
+
UsePropertyAccessMode(propertyAccessMode: Nullable_1<PropertyAccessMode>, fromDataAnnotation?: boolean): IConventionServicePropertyBuilder;
|
|
594
594
|
CanRemoveAnnotation(name: string, fromDataAnnotation?: boolean): boolean;
|
|
595
595
|
HasAnnotation2(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionServicePropertyBuilder;
|
|
596
596
|
HasNoAnnotation2(name: string, fromDataAnnotation?: boolean): IConventionServicePropertyBuilder;
|
|
@@ -604,9 +604,9 @@ export interface IConventionSkipNavigationBuilder$instance extends IConventionPr
|
|
|
604
604
|
|
|
605
605
|
readonly Metadata: IConventionSkipNavigation;
|
|
606
606
|
readonly ModelBuilder: IConventionModelBuilder;
|
|
607
|
-
AutoInclude(autoInclude:
|
|
607
|
+
AutoInclude(autoInclude: Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): IConventionSkipNavigationBuilder | undefined;
|
|
608
608
|
CanSetAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): boolean;
|
|
609
|
-
CanSetAutoInclude(autoInclude:
|
|
609
|
+
CanSetAutoInclude(autoInclude: Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): boolean;
|
|
610
610
|
CanSetField(fieldInfo: FieldInfo, fromDataAnnotation?: boolean): boolean;
|
|
611
611
|
CanSetField(fieldName: string, fromDataAnnotation?: boolean): boolean;
|
|
612
612
|
CanSetForeignKey(foreignKey: IConventionForeignKey, fromDataAnnotation?: boolean): boolean;
|
|
@@ -620,10 +620,10 @@ export interface IConventionSkipNavigationBuilder$instance extends IConventionPr
|
|
|
620
620
|
HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
|
|
621
621
|
HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionSkipNavigationBuilder | undefined;
|
|
622
622
|
CanRemoveAnnotation(name: string, fromDataAnnotation?: boolean): boolean;
|
|
623
|
-
CanSetPropertyAccessMode(propertyAccessMode:
|
|
623
|
+
CanSetPropertyAccessMode(propertyAccessMode: Nullable_1<PropertyAccessMode>, fromDataAnnotation?: boolean): boolean;
|
|
624
624
|
HasAnnotation2(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionSkipNavigationBuilder;
|
|
625
625
|
HasNoAnnotation2(name: string, fromDataAnnotation?: boolean): IConventionSkipNavigationBuilder;
|
|
626
|
-
UsePropertyAccessMode(propertyAccessMode:
|
|
626
|
+
UsePropertyAccessMode(propertyAccessMode: Nullable_1<PropertyAccessMode>, fromDataAnnotation?: boolean): IConventionSkipNavigationBuilder;
|
|
627
627
|
}
|
|
628
628
|
|
|
629
629
|
|
|
@@ -717,16 +717,16 @@ export interface IConventionTypeBaseBuilder$instance extends IConventionAnnotata
|
|
|
717
717
|
CanRemoveDiscriminator(fromDataAnnotation?: boolean): boolean;
|
|
718
718
|
CanRemoveProperty(property: IConventionProperty, fromDataAnnotation?: boolean): boolean;
|
|
719
719
|
CanSetAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): boolean;
|
|
720
|
-
CanSetChangeTrackingStrategy(changeTrackingStrategy:
|
|
720
|
+
CanSetChangeTrackingStrategy(changeTrackingStrategy: Nullable_1<ChangeTrackingStrategy>, fromDataAnnotation?: boolean): boolean;
|
|
721
721
|
CanSetDiscriminator(name: string, type: Type, fromDataAnnotation?: boolean): boolean;
|
|
722
722
|
CanSetDiscriminator(type: Type, fromDataAnnotation?: boolean): boolean;
|
|
723
723
|
ComplexProperty(memberInfo: MemberInfo, complexType?: Type, fromDataAnnotation?: boolean): IConventionComplexPropertyBuilder | undefined;
|
|
724
724
|
ComplexProperty(propertyType: Type, propertyName: string, complexType?: Type, fromDataAnnotation?: boolean): IConventionComplexPropertyBuilder | undefined;
|
|
725
|
-
GetOrCreateProperties(memberInfos:
|
|
726
|
-
GetOrCreateProperties(propertyNames:
|
|
725
|
+
GetOrCreateProperties(memberInfos: IEnumerable_1<MemberInfo>, fromDataAnnotation?: boolean): IReadOnlyList_1<IConventionProperty> | undefined;
|
|
726
|
+
GetOrCreateProperties(propertyNames: IReadOnlyList_1<System_Internal.String>, fromDataAnnotation?: boolean): IReadOnlyList_1<IConventionProperty> | undefined;
|
|
727
727
|
HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
|
|
728
728
|
HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionTypeBaseBuilder | undefined;
|
|
729
|
-
HasChangeTrackingStrategy(changeTrackingStrategy:
|
|
729
|
+
HasChangeTrackingStrategy(changeTrackingStrategy: Nullable_1<ChangeTrackingStrategy>, fromDataAnnotation?: boolean): IConventionTypeBaseBuilder | undefined;
|
|
730
730
|
HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
|
|
731
731
|
HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionTypeBaseBuilder | undefined;
|
|
732
732
|
HasNoComplexProperty(complexProperty: IConventionComplexProperty, fromDataAnnotation?: boolean): IConventionTypeBaseBuilder | undefined;
|
|
@@ -735,7 +735,7 @@ export interface IConventionTypeBaseBuilder$instance extends IConventionAnnotata
|
|
|
735
735
|
IsIgnored(memberName: string, fromDataAnnotation?: boolean): boolean;
|
|
736
736
|
Property(memberInfo: MemberInfo, fromDataAnnotation?: boolean): IConventionPropertyBuilder | undefined;
|
|
737
737
|
Property(propertyType: Type, propertyName: string, setTypeConfigurationSource?: boolean, fromDataAnnotation?: boolean): IConventionPropertyBuilder | undefined;
|
|
738
|
-
RemoveUnusedImplicitProperties(properties:
|
|
738
|
+
RemoveUnusedImplicitProperties(properties: IReadOnlyList_1<IConventionProperty>): IConventionTypeBaseBuilder;
|
|
739
739
|
CanRemoveAnnotation(name: string, fromDataAnnotation?: boolean): boolean;
|
|
740
740
|
}
|
|
741
741
|
|
|
@@ -743,6 +743,8 @@ export interface IConventionTypeBaseBuilder$instance extends IConventionAnnotata
|
|
|
743
743
|
export type IConventionTypeBaseBuilder = IConventionTypeBaseBuilder$instance;
|
|
744
744
|
|
|
745
745
|
export interface CheckConstraintBuilder$instance {
|
|
746
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_CheckConstraintBuilder: never;
|
|
747
|
+
|
|
746
748
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
747
749
|
|
|
748
750
|
readonly Builder: InternalCheckConstraintBuilder;
|
|
@@ -764,12 +766,12 @@ export interface __CheckConstraintBuilder$views {
|
|
|
764
766
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionCheckConstraintBuilder>;
|
|
765
767
|
}
|
|
766
768
|
|
|
767
|
-
export interface CheckConstraintBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionCheckConstraintBuilder> {}
|
|
768
|
-
|
|
769
769
|
export type CheckConstraintBuilder = CheckConstraintBuilder$instance & __CheckConstraintBuilder$views;
|
|
770
770
|
|
|
771
771
|
|
|
772
772
|
export interface CollectionCollectionBuilder$instance {
|
|
773
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_CollectionCollectionBuilder: never;
|
|
774
|
+
|
|
773
775
|
readonly LeftEntityType: IMutableEntityType;
|
|
774
776
|
readonly LeftNavigation: IMutableSkipNavigation;
|
|
775
777
|
readonly ModelBuilder: InternalModelBuilder;
|
|
@@ -781,19 +783,19 @@ export interface CollectionCollectionBuilder$instance {
|
|
|
781
783
|
UsingEntity(joinEntityType: Type): EntityTypeBuilder;
|
|
782
784
|
UsingEntity(joinEntityName: string): EntityTypeBuilder;
|
|
783
785
|
UsingEntity(joinEntityName: string, joinEntityType: Type): EntityTypeBuilder;
|
|
784
|
-
UsingEntity(configureJoinEntityType:
|
|
785
|
-
UsingEntity(joinEntityType: Type, configureJoinEntityType:
|
|
786
|
-
UsingEntity(joinEntityName: string, configureJoinEntityType:
|
|
787
|
-
UsingEntity(joinEntityName: string, joinEntityType: Type, configureJoinEntityType:
|
|
788
|
-
UsingEntity(configureRight:
|
|
789
|
-
UsingEntity(joinEntityType: Type, configureRight:
|
|
790
|
-
UsingEntity(joinEntityName: string, configureRight:
|
|
791
|
-
UsingEntity(joinEntityName: string, joinEntityType: Type, configureRight:
|
|
792
|
-
UsingEntity(configureRight:
|
|
793
|
-
UsingEntity(joinEntityType: Type, configureRight:
|
|
794
|
-
UsingEntity(joinEntityName: string, configureRight:
|
|
795
|
-
UsingEntity(joinEntityName: string, joinEntityType: Type, configureRight:
|
|
796
|
-
UsingEntity(joinEntityName: string, joinEntityType: Type, configureRight:
|
|
786
|
+
UsingEntity(configureJoinEntityType: Action_1<EntityTypeBuilder>): EntityTypeBuilder;
|
|
787
|
+
UsingEntity(joinEntityType: Type, configureJoinEntityType: Action_1<EntityTypeBuilder>): EntityTypeBuilder;
|
|
788
|
+
UsingEntity(joinEntityName: string, configureJoinEntityType: Action_1<EntityTypeBuilder>): EntityTypeBuilder;
|
|
789
|
+
UsingEntity(joinEntityName: string, joinEntityType: Type, configureJoinEntityType: Action_1<EntityTypeBuilder>): EntityTypeBuilder;
|
|
790
|
+
UsingEntity(configureRight: Func_2<EntityTypeBuilder, ReferenceCollectionBuilder>, configureLeft: Func_2<EntityTypeBuilder, ReferenceCollectionBuilder>): EntityTypeBuilder;
|
|
791
|
+
UsingEntity(joinEntityType: Type, configureRight: Func_2<EntityTypeBuilder, ReferenceCollectionBuilder>, configureLeft: Func_2<EntityTypeBuilder, ReferenceCollectionBuilder>): EntityTypeBuilder;
|
|
792
|
+
UsingEntity(joinEntityName: string, configureRight: Func_2<EntityTypeBuilder, ReferenceCollectionBuilder>, configureLeft: Func_2<EntityTypeBuilder, ReferenceCollectionBuilder>): EntityTypeBuilder;
|
|
793
|
+
UsingEntity(joinEntityName: string, joinEntityType: Type, configureRight: Func_2<EntityTypeBuilder, ReferenceCollectionBuilder>, configureLeft: Func_2<EntityTypeBuilder, ReferenceCollectionBuilder>): EntityTypeBuilder;
|
|
794
|
+
UsingEntity(configureRight: Func_2<EntityTypeBuilder, ReferenceCollectionBuilder>, configureLeft: Func_2<EntityTypeBuilder, ReferenceCollectionBuilder>, configureJoinEntityType: Action_1<EntityTypeBuilder>): EntityTypeBuilder;
|
|
795
|
+
UsingEntity(joinEntityType: Type, configureRight: Func_2<EntityTypeBuilder, ReferenceCollectionBuilder>, configureLeft: Func_2<EntityTypeBuilder, ReferenceCollectionBuilder>, configureJoinEntityType: Action_1<EntityTypeBuilder>): EntityTypeBuilder;
|
|
796
|
+
UsingEntity(joinEntityName: string, configureRight: Func_2<EntityTypeBuilder, ReferenceCollectionBuilder>, configureLeft: Func_2<EntityTypeBuilder, ReferenceCollectionBuilder>, configureJoinEntityType: Action_1<EntityTypeBuilder>): EntityTypeBuilder;
|
|
797
|
+
UsingEntity(joinEntityName: string, joinEntityType: Type, configureRight: Func_2<EntityTypeBuilder, ReferenceCollectionBuilder>, configureLeft: Func_2<EntityTypeBuilder, ReferenceCollectionBuilder>, configureJoinEntityType: Action_1<EntityTypeBuilder>): EntityTypeBuilder;
|
|
798
|
+
UsingEntity(joinEntityName: string, joinEntityType: Type, configureRight: Func_2<IMutableEntityType, IMutableForeignKey>, configureLeft: Func_2<IMutableEntityType, IMutableForeignKey>): IMutableEntityType;
|
|
797
799
|
}
|
|
798
800
|
|
|
799
801
|
|
|
@@ -805,38 +807,40 @@ export const CollectionCollectionBuilder: {
|
|
|
805
807
|
export type CollectionCollectionBuilder = CollectionCollectionBuilder$instance;
|
|
806
808
|
|
|
807
809
|
export interface CollectionCollectionBuilder_2$instance<TLeftEntity, TRightEntity> extends CollectionCollectionBuilder {
|
|
810
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_CollectionCollectionBuilder_2: never;
|
|
811
|
+
|
|
808
812
|
UsingEntity<TJoinEntity>(): EntityTypeBuilder_1<TJoinEntity>;
|
|
809
813
|
UsingEntity<TJoinEntity>(joinEntityName: string): EntityTypeBuilder_1<TJoinEntity>;
|
|
810
|
-
UsingEntity(configureJoinEntityType:
|
|
811
|
-
UsingEntity(joinEntityType: Type, configureJoinEntityType:
|
|
812
|
-
UsingEntity(joinEntityName: string, configureJoinEntityType:
|
|
813
|
-
UsingEntity(joinEntityName: string, joinEntityType: Type, configureJoinEntityType:
|
|
814
|
-
UsingEntity<TJoinEntity>(configureJoinEntityType:
|
|
815
|
-
UsingEntity<TJoinEntity>(joinEntityName: string, configureJoinEntityType:
|
|
816
|
-
UsingEntity<TJoinEntity>(configureRight:
|
|
817
|
-
UsingEntity<TJoinEntity>(joinEntityName: string, configureRight:
|
|
818
|
-
UsingEntity(configureRight:
|
|
819
|
-
UsingEntity(joinEntityType: Type, configureRight:
|
|
820
|
-
UsingEntity(joinEntityName: string, configureRight:
|
|
821
|
-
UsingEntity(joinEntityName: string, joinEntityType: Type, configureRight:
|
|
822
|
-
UsingEntity<TJoinEntity>(configureRight:
|
|
823
|
-
UsingEntity<TJoinEntity>(joinEntityName: string, configureRight:
|
|
814
|
+
UsingEntity(configureJoinEntityType: Action_1<EntityTypeBuilder>): EntityTypeBuilder_1<TRightEntity>;
|
|
815
|
+
UsingEntity(joinEntityType: Type, configureJoinEntityType: Action_1<EntityTypeBuilder>): EntityTypeBuilder_1<TRightEntity>;
|
|
816
|
+
UsingEntity(joinEntityName: string, configureJoinEntityType: Action_1<EntityTypeBuilder>): EntityTypeBuilder_1<TRightEntity>;
|
|
817
|
+
UsingEntity(joinEntityName: string, joinEntityType: Type, configureJoinEntityType: Action_1<EntityTypeBuilder>): EntityTypeBuilder_1<TRightEntity>;
|
|
818
|
+
UsingEntity<TJoinEntity>(configureJoinEntityType: Action_1<EntityTypeBuilder_1<TJoinEntity>>): EntityTypeBuilder_1<TRightEntity>;
|
|
819
|
+
UsingEntity<TJoinEntity>(joinEntityName: string, configureJoinEntityType: Action_1<EntityTypeBuilder_1<TJoinEntity>>): EntityTypeBuilder_1<TRightEntity>;
|
|
820
|
+
UsingEntity<TJoinEntity>(configureRight: Func_2<EntityTypeBuilder_1<TJoinEntity>, ReferenceCollectionBuilder_2<TLeftEntity, TJoinEntity>>, configureLeft: Func_2<EntityTypeBuilder_1<TJoinEntity>, ReferenceCollectionBuilder_2<TRightEntity, TJoinEntity>>): EntityTypeBuilder_1<TJoinEntity>;
|
|
821
|
+
UsingEntity<TJoinEntity>(joinEntityName: string, configureRight: Func_2<EntityTypeBuilder_1<TJoinEntity>, ReferenceCollectionBuilder_2<TLeftEntity, TJoinEntity>>, configureLeft: Func_2<EntityTypeBuilder_1<TJoinEntity>, ReferenceCollectionBuilder_2<TRightEntity, TJoinEntity>>): EntityTypeBuilder_1<TJoinEntity>;
|
|
822
|
+
UsingEntity(configureRight: Func_2<EntityTypeBuilder, ReferenceCollectionBuilder>, configureLeft: Func_2<EntityTypeBuilder, ReferenceCollectionBuilder>, configureJoinEntityType: Action_1<EntityTypeBuilder>): EntityTypeBuilder_1<TRightEntity>;
|
|
823
|
+
UsingEntity(joinEntityType: Type, configureRight: Func_2<EntityTypeBuilder, ReferenceCollectionBuilder>, configureLeft: Func_2<EntityTypeBuilder, ReferenceCollectionBuilder>, configureJoinEntityType: Action_1<EntityTypeBuilder>): EntityTypeBuilder_1<TRightEntity>;
|
|
824
|
+
UsingEntity(joinEntityName: string, configureRight: Func_2<EntityTypeBuilder, ReferenceCollectionBuilder>, configureLeft: Func_2<EntityTypeBuilder, ReferenceCollectionBuilder>, configureJoinEntityType: Action_1<EntityTypeBuilder>): EntityTypeBuilder_1<TRightEntity>;
|
|
825
|
+
UsingEntity(joinEntityName: string, joinEntityType: Type, configureRight: Func_2<EntityTypeBuilder, ReferenceCollectionBuilder>, configureLeft: Func_2<EntityTypeBuilder, ReferenceCollectionBuilder>, configureJoinEntityType: Action_1<EntityTypeBuilder>): EntityTypeBuilder_1<TRightEntity>;
|
|
826
|
+
UsingEntity<TJoinEntity>(configureRight: Func_2<EntityTypeBuilder_1<TJoinEntity>, ReferenceCollectionBuilder_2<TLeftEntity, TJoinEntity>>, configureLeft: Func_2<EntityTypeBuilder_1<TJoinEntity>, ReferenceCollectionBuilder_2<TRightEntity, TJoinEntity>>, configureJoinEntityType: Action_1<EntityTypeBuilder_1<TJoinEntity>>): EntityTypeBuilder_1<TRightEntity>;
|
|
827
|
+
UsingEntity<TJoinEntity>(joinEntityName: string, configureRight: Func_2<EntityTypeBuilder_1<TJoinEntity>, ReferenceCollectionBuilder_2<TLeftEntity, TJoinEntity>>, configureLeft: Func_2<EntityTypeBuilder_1<TJoinEntity>, ReferenceCollectionBuilder_2<TRightEntity, TJoinEntity>>, configureJoinEntityType: Action_1<EntityTypeBuilder_1<TJoinEntity>>): EntityTypeBuilder_1<TRightEntity>;
|
|
824
828
|
UsingEntity(joinEntityType: Type): EntityTypeBuilder;
|
|
825
829
|
UsingEntity(joinEntityName: string): EntityTypeBuilder;
|
|
826
830
|
UsingEntity(joinEntityName: string, joinEntityType: Type): EntityTypeBuilder;
|
|
827
|
-
UsingEntity(configureJoinEntityType:
|
|
828
|
-
UsingEntity(joinEntityType: Type, configureJoinEntityType:
|
|
829
|
-
UsingEntity(joinEntityName: string, configureJoinEntityType:
|
|
830
|
-
UsingEntity(joinEntityName: string, joinEntityType: Type, configureJoinEntityType:
|
|
831
|
-
UsingEntity(configureRight:
|
|
832
|
-
UsingEntity(joinEntityType: Type, configureRight:
|
|
833
|
-
UsingEntity(joinEntityName: string, configureRight:
|
|
834
|
-
UsingEntity(joinEntityName: string, joinEntityType: Type, configureRight:
|
|
835
|
-
UsingEntity(configureRight:
|
|
836
|
-
UsingEntity(joinEntityType: Type, configureRight:
|
|
837
|
-
UsingEntity(joinEntityName: string, configureRight:
|
|
838
|
-
UsingEntity(joinEntityName: string, joinEntityType: Type, configureRight:
|
|
839
|
-
UsingEntity(joinEntityName: string, joinEntityType: Type, configureRight:
|
|
831
|
+
UsingEntity(configureJoinEntityType: Action_1<EntityTypeBuilder>): EntityTypeBuilder;
|
|
832
|
+
UsingEntity(joinEntityType: Type, configureJoinEntityType: Action_1<EntityTypeBuilder>): EntityTypeBuilder;
|
|
833
|
+
UsingEntity(joinEntityName: string, configureJoinEntityType: Action_1<EntityTypeBuilder>): EntityTypeBuilder;
|
|
834
|
+
UsingEntity(joinEntityName: string, joinEntityType: Type, configureJoinEntityType: Action_1<EntityTypeBuilder>): EntityTypeBuilder;
|
|
835
|
+
UsingEntity(configureRight: Func_2<EntityTypeBuilder, ReferenceCollectionBuilder>, configureLeft: Func_2<EntityTypeBuilder, ReferenceCollectionBuilder>): EntityTypeBuilder;
|
|
836
|
+
UsingEntity(joinEntityType: Type, configureRight: Func_2<EntityTypeBuilder, ReferenceCollectionBuilder>, configureLeft: Func_2<EntityTypeBuilder, ReferenceCollectionBuilder>): EntityTypeBuilder;
|
|
837
|
+
UsingEntity(joinEntityName: string, configureRight: Func_2<EntityTypeBuilder, ReferenceCollectionBuilder>, configureLeft: Func_2<EntityTypeBuilder, ReferenceCollectionBuilder>): EntityTypeBuilder;
|
|
838
|
+
UsingEntity(joinEntityName: string, joinEntityType: Type, configureRight: Func_2<EntityTypeBuilder, ReferenceCollectionBuilder>, configureLeft: Func_2<EntityTypeBuilder, ReferenceCollectionBuilder>): EntityTypeBuilder;
|
|
839
|
+
UsingEntity(configureRight: Func_2<EntityTypeBuilder, ReferenceCollectionBuilder>, configureLeft: Func_2<EntityTypeBuilder, ReferenceCollectionBuilder>, configureJoinEntityType: Action_1<EntityTypeBuilder>): EntityTypeBuilder;
|
|
840
|
+
UsingEntity(joinEntityType: Type, configureRight: Func_2<EntityTypeBuilder, ReferenceCollectionBuilder>, configureLeft: Func_2<EntityTypeBuilder, ReferenceCollectionBuilder>, configureJoinEntityType: Action_1<EntityTypeBuilder>): EntityTypeBuilder;
|
|
841
|
+
UsingEntity(joinEntityName: string, configureRight: Func_2<EntityTypeBuilder, ReferenceCollectionBuilder>, configureLeft: Func_2<EntityTypeBuilder, ReferenceCollectionBuilder>, configureJoinEntityType: Action_1<EntityTypeBuilder>): EntityTypeBuilder;
|
|
842
|
+
UsingEntity(joinEntityName: string, joinEntityType: Type, configureRight: Func_2<EntityTypeBuilder, ReferenceCollectionBuilder>, configureLeft: Func_2<EntityTypeBuilder, ReferenceCollectionBuilder>, configureJoinEntityType: Action_1<EntityTypeBuilder>): EntityTypeBuilder;
|
|
843
|
+
UsingEntity(joinEntityName: string, joinEntityType: Type, configureRight: Func_2<IMutableEntityType, IMutableForeignKey>, configureLeft: Func_2<IMutableEntityType, IMutableForeignKey>): IMutableEntityType;
|
|
840
844
|
}
|
|
841
845
|
|
|
842
846
|
|
|
@@ -848,6 +852,8 @@ export const CollectionCollectionBuilder_2: {
|
|
|
848
852
|
export type CollectionCollectionBuilder_2<TLeftEntity, TRightEntity> = CollectionCollectionBuilder_2$instance<TLeftEntity, TRightEntity>;
|
|
849
853
|
|
|
850
854
|
export interface CollectionNavigationBuilder$instance {
|
|
855
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_CollectionNavigationBuilder: never;
|
|
856
|
+
|
|
851
857
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
852
858
|
|
|
853
859
|
get Builder(): InternalForeignKeyBuilder | undefined;
|
|
@@ -879,12 +885,12 @@ export interface __CollectionNavigationBuilder$views {
|
|
|
879
885
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionForeignKeyBuilder>;
|
|
880
886
|
}
|
|
881
887
|
|
|
882
|
-
export interface CollectionNavigationBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionForeignKeyBuilder> {}
|
|
883
|
-
|
|
884
888
|
export type CollectionNavigationBuilder = CollectionNavigationBuilder$instance & __CollectionNavigationBuilder$views;
|
|
885
889
|
|
|
886
890
|
|
|
887
|
-
export interface CollectionNavigationBuilder_2$instance<TEntity, TRelatedEntity> extends CollectionNavigationBuilder$instance {
|
|
891
|
+
export interface CollectionNavigationBuilder_2$instance<TEntity, TRelatedEntity> extends CollectionNavigationBuilder$instance, Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionForeignKeyBuilder> {
|
|
892
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_CollectionNavigationBuilder_2: never;
|
|
893
|
+
|
|
888
894
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
889
895
|
|
|
890
896
|
WithMany(navigationName?: string): CollectionCollectionBuilder_2<TRelatedEntity, TEntity>;
|
|
@@ -903,12 +909,12 @@ export interface __CollectionNavigationBuilder_2$views<TEntity, TRelatedEntity>
|
|
|
903
909
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionForeignKeyBuilder>;
|
|
904
910
|
}
|
|
905
911
|
|
|
906
|
-
export interface CollectionNavigationBuilder_2$instance<TEntity, TRelatedEntity> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionForeignKeyBuilder> {}
|
|
907
|
-
|
|
908
912
|
export type CollectionNavigationBuilder_2<TEntity, TRelatedEntity> = CollectionNavigationBuilder_2$instance<TEntity, TRelatedEntity> & __CollectionNavigationBuilder_2$views<TEntity, TRelatedEntity>;
|
|
909
913
|
|
|
910
914
|
|
|
911
915
|
export interface ColumnBuilder$instance {
|
|
916
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_ColumnBuilder: never;
|
|
917
|
+
|
|
912
918
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
913
919
|
|
|
914
920
|
readonly InternalOverrides: RelationalPropertyOverrides;
|
|
@@ -930,12 +936,12 @@ export interface __ColumnBuilder$views {
|
|
|
930
936
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<PropertyBuilder>;
|
|
931
937
|
}
|
|
932
938
|
|
|
933
|
-
export interface ColumnBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<PropertyBuilder> {}
|
|
934
|
-
|
|
935
939
|
export type ColumnBuilder = ColumnBuilder$instance & __ColumnBuilder$views;
|
|
936
940
|
|
|
937
941
|
|
|
938
|
-
export interface ColumnBuilder_1$instance<TProperty> extends ColumnBuilder$instance {
|
|
942
|
+
export interface ColumnBuilder_1$instance<TProperty> extends ColumnBuilder$instance, Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<PropertyBuilder> {
|
|
943
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_ColumnBuilder_1: never;
|
|
944
|
+
|
|
939
945
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
940
946
|
|
|
941
947
|
HasAnnotation(annotation: string, value: unknown): ColumnBuilder;
|
|
@@ -952,37 +958,37 @@ export interface __ColumnBuilder_1$views<TProperty> {
|
|
|
952
958
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<PropertyBuilder>;
|
|
953
959
|
}
|
|
954
960
|
|
|
955
|
-
export interface ColumnBuilder_1$instance<TProperty> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<PropertyBuilder> {}
|
|
956
|
-
|
|
957
961
|
export type ColumnBuilder_1<TProperty> = ColumnBuilder_1$instance<TProperty> & __ColumnBuilder_1$views<TProperty>;
|
|
958
962
|
|
|
959
963
|
|
|
960
964
|
export interface ComplexCollectionBuilder$instance {
|
|
965
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_ComplexCollectionBuilder: never;
|
|
966
|
+
|
|
961
967
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
962
968
|
|
|
963
969
|
readonly Metadata: IMutableComplexProperty;
|
|
964
970
|
readonly PropertyBuilder: InternalComplexPropertyBuilder;
|
|
965
971
|
readonly TypeBuilder: InternalComplexTypeBuilder;
|
|
966
972
|
ComplexCollection(propertyName: string): ComplexCollectionBuilder;
|
|
967
|
-
ComplexCollection<TProperty extends
|
|
968
|
-
ComplexCollection<TProperty extends
|
|
973
|
+
ComplexCollection<TProperty extends IEnumerable_1<TElement>, TElement>(propertyName: string): ComplexCollectionBuilder_1<TElement>;
|
|
974
|
+
ComplexCollection<TProperty extends IEnumerable_1<TElement>, TElement>(propertyName: string, complexTypeName: string): ComplexCollectionBuilder_1<TElement>;
|
|
969
975
|
ComplexCollection(propertyType: Type, propertyName: string): ComplexCollectionBuilder;
|
|
970
976
|
ComplexCollection(propertyType: Type, propertyName: string, complexTypeName: string): ComplexCollectionBuilder;
|
|
971
|
-
ComplexCollection(propertyName: string, buildAction:
|
|
972
|
-
ComplexCollection<TProperty extends
|
|
973
|
-
ComplexCollection<TProperty extends
|
|
974
|
-
ComplexCollection(propertyType: Type, propertyName: string, buildAction:
|
|
975
|
-
ComplexCollection(propertyType: Type, propertyName: string, complexTypeName: string, buildAction:
|
|
977
|
+
ComplexCollection(propertyName: string, buildAction: Action_1<ComplexCollectionBuilder>): ComplexCollectionBuilder;
|
|
978
|
+
ComplexCollection<TProperty extends IEnumerable_1<TElement>, TElement>(propertyName: string, buildAction: Action_1<ComplexCollectionBuilder_1<TElement>>): ComplexCollectionBuilder;
|
|
979
|
+
ComplexCollection<TProperty extends IEnumerable_1<TElement>, TElement>(propertyName: string, complexTypeName: string, buildAction: Action_1<ComplexCollectionBuilder_1<TElement>>): ComplexCollectionBuilder;
|
|
980
|
+
ComplexCollection(propertyType: Type, propertyName: string, buildAction: Action_1<ComplexCollectionBuilder>): ComplexCollectionBuilder;
|
|
981
|
+
ComplexCollection(propertyType: Type, propertyName: string, complexTypeName: string, buildAction: Action_1<ComplexCollectionBuilder>): ComplexCollectionBuilder;
|
|
976
982
|
ComplexProperty(propertyName: string): ComplexPropertyBuilder;
|
|
977
983
|
ComplexProperty<TProperty>(propertyName: string): ComplexPropertyBuilder_1<TProperty>;
|
|
978
984
|
ComplexProperty<TProperty>(propertyName: string, complexTypeName: string): ComplexPropertyBuilder_1<TProperty>;
|
|
979
985
|
ComplexProperty(propertyType: Type, propertyName: string): ComplexPropertyBuilder;
|
|
980
986
|
ComplexProperty(propertyType: Type, propertyName: string, complexTypeName: string): ComplexPropertyBuilder;
|
|
981
|
-
ComplexProperty(propertyName: string, buildAction:
|
|
982
|
-
ComplexProperty<TProperty>(propertyName: string, buildAction:
|
|
983
|
-
ComplexProperty<TProperty>(propertyName: string, complexTypeName: string, buildAction:
|
|
984
|
-
ComplexProperty(propertyType: Type, propertyName: string, buildAction:
|
|
985
|
-
ComplexProperty(propertyType: Type, propertyName: string, complexTypeName: string, buildAction:
|
|
987
|
+
ComplexProperty(propertyName: string, buildAction: Action_1<ComplexPropertyBuilder>): ComplexCollectionBuilder;
|
|
988
|
+
ComplexProperty<TProperty>(propertyName: string, buildAction: Action_1<ComplexPropertyBuilder_1<TProperty>>): ComplexCollectionBuilder;
|
|
989
|
+
ComplexProperty<TProperty>(propertyName: string, complexTypeName: string, buildAction: Action_1<ComplexPropertyBuilder_1<TProperty>>): ComplexCollectionBuilder;
|
|
990
|
+
ComplexProperty(propertyType: Type, propertyName: string, buildAction: Action_1<ComplexPropertyBuilder>): ComplexCollectionBuilder;
|
|
991
|
+
ComplexProperty(propertyType: Type, propertyName: string, complexTypeName: string, buildAction: Action_1<ComplexPropertyBuilder>): ComplexCollectionBuilder;
|
|
986
992
|
Equals(obj: unknown): boolean;
|
|
987
993
|
GetHashCode(): int;
|
|
988
994
|
HasChangeTrackingStrategy(changeTrackingStrategy: ChangeTrackingStrategy): ComplexCollectionBuilder;
|
|
@@ -1014,36 +1020,36 @@ export interface __ComplexCollectionBuilder$views {
|
|
|
1014
1020
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionComplexPropertyBuilder>;
|
|
1015
1021
|
}
|
|
1016
1022
|
|
|
1017
|
-
export interface ComplexCollectionBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionComplexPropertyBuilder> {}
|
|
1018
|
-
|
|
1019
1023
|
export type ComplexCollectionBuilder = ComplexCollectionBuilder$instance & __ComplexCollectionBuilder$views;
|
|
1020
1024
|
|
|
1021
1025
|
|
|
1022
|
-
export interface ComplexCollectionBuilder_1$instance<TComplex> extends ComplexCollectionBuilder$instance {
|
|
1026
|
+
export interface ComplexCollectionBuilder_1$instance<TComplex> extends ComplexCollectionBuilder$instance, Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionComplexPropertyBuilder> {
|
|
1027
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_ComplexCollectionBuilder_1: never;
|
|
1028
|
+
|
|
1023
1029
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
1024
1030
|
|
|
1025
|
-
ComplexCollection<TElement>(propertyExpression:
|
|
1031
|
+
ComplexCollection<TElement>(propertyExpression: Expression_1<Func_2<TComplex, IEnumerable_1<TElement>>>, complexTypeName: string): ComplexCollectionBuilder_1<TElement>;
|
|
1026
1032
|
ComplexCollection(propertyName: string): ComplexCollectionBuilder;
|
|
1027
|
-
ComplexCollection<TProperty extends
|
|
1028
|
-
ComplexCollection<TProperty extends
|
|
1033
|
+
ComplexCollection<TProperty extends IEnumerable_1<TElement>, TElement>(propertyName: string): ComplexCollectionBuilder_1<TElement>;
|
|
1034
|
+
ComplexCollection<TProperty extends IEnumerable_1<TElement>, TElement>(propertyName: string, complexTypeName: string): ComplexCollectionBuilder_1<TElement>;
|
|
1029
1035
|
ComplexCollection(propertyType: Type, propertyName: string): ComplexCollectionBuilder;
|
|
1030
1036
|
ComplexCollection(propertyType: Type, propertyName: string, complexTypeName: string): ComplexCollectionBuilder;
|
|
1031
|
-
ComplexCollection(propertyName: string, buildAction:
|
|
1032
|
-
ComplexCollection<TProperty extends
|
|
1033
|
-
ComplexCollection(propertyType: Type, propertyName: string, buildAction:
|
|
1034
|
-
ComplexCollection(propertyType: Type, propertyName: string, complexTypeName: string, buildAction:
|
|
1035
|
-
ComplexProperty<TProperty>(propertyName: string, buildAction:
|
|
1036
|
-
ComplexProperty<TProperty>(propertyName: string, complexTypeName: string, buildAction:
|
|
1037
|
-
ComplexProperty<TProperty>(propertyExpression:
|
|
1037
|
+
ComplexCollection(propertyName: string, buildAction: Action_1<ComplexCollectionBuilder>): ComplexCollectionBuilder;
|
|
1038
|
+
ComplexCollection<TProperty extends IEnumerable_1<TElement>, TElement>(propertyName: string, complexTypeName: string, buildAction: Action_1<ComplexCollectionBuilder_1<TElement>>): ComplexCollectionBuilder;
|
|
1039
|
+
ComplexCollection(propertyType: Type, propertyName: string, buildAction: Action_1<ComplexCollectionBuilder>): ComplexCollectionBuilder;
|
|
1040
|
+
ComplexCollection(propertyType: Type, propertyName: string, complexTypeName: string, buildAction: Action_1<ComplexCollectionBuilder>): ComplexCollectionBuilder;
|
|
1041
|
+
ComplexProperty<TProperty>(propertyName: string, buildAction: Action_1<ComplexPropertyBuilder_1<TProperty>>): ComplexCollectionBuilder_1<TComplex>;
|
|
1042
|
+
ComplexProperty<TProperty>(propertyName: string, complexTypeName: string, buildAction: Action_1<ComplexPropertyBuilder_1<TProperty>>): ComplexCollectionBuilder_1<TComplex>;
|
|
1043
|
+
ComplexProperty<TProperty>(propertyExpression: Expression_1<Func_2<TComplex, TProperty>>, complexTypeName: string): ComplexPropertyBuilder_1<TProperty>;
|
|
1038
1044
|
ComplexProperty(propertyName: string): ComplexPropertyBuilder;
|
|
1039
1045
|
ComplexProperty<TProperty>(propertyName: string): ComplexPropertyBuilder_1<TProperty>;
|
|
1040
1046
|
ComplexProperty<TProperty>(propertyName: string, complexTypeName: string): ComplexPropertyBuilder_1<TProperty>;
|
|
1041
1047
|
ComplexProperty(propertyType: Type, propertyName: string): ComplexPropertyBuilder;
|
|
1042
1048
|
ComplexProperty(propertyType: Type, propertyName: string, complexTypeName: string): ComplexPropertyBuilder;
|
|
1043
|
-
ComplexProperty(propertyName: string, buildAction:
|
|
1044
|
-
ComplexProperty<TProperty>(propertyName: string, complexTypeName: string, buildAction:
|
|
1045
|
-
ComplexProperty(propertyType: Type, propertyName: string, buildAction:
|
|
1046
|
-
ComplexProperty(propertyType: Type, propertyName: string, complexTypeName: string, buildAction:
|
|
1049
|
+
ComplexProperty(propertyName: string, buildAction: Action_1<ComplexPropertyBuilder>): ComplexCollectionBuilder;
|
|
1050
|
+
ComplexProperty<TProperty>(propertyName: string, complexTypeName: string, buildAction: Action_1<ComplexPropertyBuilder_1<TProperty>>): ComplexCollectionBuilder;
|
|
1051
|
+
ComplexProperty(propertyType: Type, propertyName: string, buildAction: Action_1<ComplexPropertyBuilder>): ComplexCollectionBuilder;
|
|
1052
|
+
ComplexProperty(propertyType: Type, propertyName: string, complexTypeName: string, buildAction: Action_1<ComplexPropertyBuilder>): ComplexCollectionBuilder;
|
|
1047
1053
|
HasChangeTrackingStrategy(changeTrackingStrategy: ChangeTrackingStrategy): ComplexCollectionBuilder;
|
|
1048
1054
|
HasField(fieldName: string): ComplexCollectionBuilder;
|
|
1049
1055
|
HasPropertyAnnotation(annotation: string, value: unknown): ComplexCollectionBuilder;
|
|
@@ -1071,12 +1077,12 @@ export interface __ComplexCollectionBuilder_1$views<TComplex> {
|
|
|
1071
1077
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionComplexPropertyBuilder>;
|
|
1072
1078
|
}
|
|
1073
1079
|
|
|
1074
|
-
export interface ComplexCollectionBuilder_1$instance<TComplex> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionComplexPropertyBuilder> {}
|
|
1075
|
-
|
|
1076
1080
|
export type ComplexCollectionBuilder_1<TComplex> = ComplexCollectionBuilder_1$instance<TComplex> & __ComplexCollectionBuilder_1$views<TComplex>;
|
|
1077
1081
|
|
|
1078
1082
|
|
|
1079
1083
|
export interface ComplexCollectionTypePropertyBuilder$instance {
|
|
1084
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_ComplexCollectionTypePropertyBuilder: never;
|
|
1085
|
+
|
|
1080
1086
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
1081
1087
|
|
|
1082
1088
|
readonly Metadata: IMutableProperty;
|
|
@@ -1116,12 +1122,12 @@ export interface __ComplexCollectionTypePropertyBuilder$views {
|
|
|
1116
1122
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionPropertyBuilder>;
|
|
1117
1123
|
}
|
|
1118
1124
|
|
|
1119
|
-
export interface ComplexCollectionTypePropertyBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionPropertyBuilder> {}
|
|
1120
|
-
|
|
1121
1125
|
export type ComplexCollectionTypePropertyBuilder = ComplexCollectionTypePropertyBuilder$instance & __ComplexCollectionTypePropertyBuilder$views;
|
|
1122
1126
|
|
|
1123
1127
|
|
|
1124
|
-
export interface ComplexCollectionTypePropertyBuilder_1$instance<TProperty> extends ComplexCollectionTypePropertyBuilder$instance {
|
|
1128
|
+
export interface ComplexCollectionTypePropertyBuilder_1$instance<TProperty> extends ComplexCollectionTypePropertyBuilder$instance, Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionPropertyBuilder> {
|
|
1129
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_ComplexCollectionTypePropertyBuilder_1: never;
|
|
1130
|
+
|
|
1125
1131
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
1126
1132
|
|
|
1127
1133
|
HasAnnotation(annotation: string, value: unknown): ComplexCollectionTypePropertyBuilder;
|
|
@@ -1167,12 +1173,12 @@ export interface __ComplexCollectionTypePropertyBuilder_1$views<TProperty> {
|
|
|
1167
1173
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionPropertyBuilder>;
|
|
1168
1174
|
}
|
|
1169
1175
|
|
|
1170
|
-
export interface ComplexCollectionTypePropertyBuilder_1$instance<TProperty> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionPropertyBuilder> {}
|
|
1171
|
-
|
|
1172
1176
|
export type ComplexCollectionTypePropertyBuilder_1<TProperty> = ComplexCollectionTypePropertyBuilder_1$instance<TProperty> & __ComplexCollectionTypePropertyBuilder_1$views<TProperty>;
|
|
1173
1177
|
|
|
1174
1178
|
|
|
1175
1179
|
export interface ComplexPropertiesConfigurationBuilder$instance {
|
|
1180
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_ComplexPropertiesConfigurationBuilder: never;
|
|
1181
|
+
|
|
1176
1182
|
readonly Configuration: ComplexPropertyConfiguration;
|
|
1177
1183
|
Equals(obj: unknown): boolean;
|
|
1178
1184
|
GetHashCode(): int;
|
|
@@ -1188,6 +1194,8 @@ export const ComplexPropertiesConfigurationBuilder: {
|
|
|
1188
1194
|
export type ComplexPropertiesConfigurationBuilder = ComplexPropertiesConfigurationBuilder$instance;
|
|
1189
1195
|
|
|
1190
1196
|
export interface ComplexPropertiesConfigurationBuilder_1$instance<TProperty> extends ComplexPropertiesConfigurationBuilder {
|
|
1197
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_ComplexPropertiesConfigurationBuilder_1: never;
|
|
1198
|
+
|
|
1191
1199
|
}
|
|
1192
1200
|
|
|
1193
1201
|
|
|
@@ -1199,31 +1207,33 @@ export const ComplexPropertiesConfigurationBuilder_1: {
|
|
|
1199
1207
|
export type ComplexPropertiesConfigurationBuilder_1<TProperty> = ComplexPropertiesConfigurationBuilder_1$instance<TProperty>;
|
|
1200
1208
|
|
|
1201
1209
|
export interface ComplexPropertyBuilder$instance {
|
|
1210
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_ComplexPropertyBuilder: never;
|
|
1211
|
+
|
|
1202
1212
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
1203
1213
|
|
|
1204
1214
|
readonly Metadata: IMutableComplexProperty;
|
|
1205
1215
|
readonly PropertyBuilder: InternalComplexPropertyBuilder;
|
|
1206
1216
|
readonly TypeBuilder: InternalComplexTypeBuilder;
|
|
1207
1217
|
ComplexCollection(propertyName: string): ComplexCollectionBuilder;
|
|
1208
|
-
ComplexCollection<TProperty extends
|
|
1209
|
-
ComplexCollection<TProperty extends
|
|
1218
|
+
ComplexCollection<TProperty extends IEnumerable_1<TElement>, TElement>(propertyName: string): ComplexCollectionBuilder_1<TElement>;
|
|
1219
|
+
ComplexCollection<TProperty extends IEnumerable_1<TElement>, TElement>(propertyName: string, complexTypeName: string): ComplexCollectionBuilder_1<TElement>;
|
|
1210
1220
|
ComplexCollection(propertyType: Type, propertyName: string): ComplexCollectionBuilder;
|
|
1211
1221
|
ComplexCollection(propertyType: Type, propertyName: string, complexTypeName: string): ComplexCollectionBuilder;
|
|
1212
|
-
ComplexCollection(propertyName: string, buildAction:
|
|
1213
|
-
ComplexCollection<TProperty extends
|
|
1214
|
-
ComplexCollection<TProperty extends
|
|
1215
|
-
ComplexCollection(propertyType: Type, propertyName: string, buildAction:
|
|
1216
|
-
ComplexCollection(propertyType: Type, propertyName: string, complexTypeName: string, buildAction:
|
|
1222
|
+
ComplexCollection(propertyName: string, buildAction: Action_1<ComplexCollectionBuilder>): ComplexPropertyBuilder;
|
|
1223
|
+
ComplexCollection<TProperty extends IEnumerable_1<TElement>, TElement>(propertyName: string, buildAction: Action_1<ComplexCollectionBuilder_1<TElement>>): ComplexPropertyBuilder;
|
|
1224
|
+
ComplexCollection<TProperty extends IEnumerable_1<TElement>, TElement>(propertyName: string, complexTypeName: string, buildAction: Action_1<ComplexCollectionBuilder_1<TElement>>): ComplexPropertyBuilder;
|
|
1225
|
+
ComplexCollection(propertyType: Type, propertyName: string, buildAction: Action_1<ComplexCollectionBuilder>): ComplexPropertyBuilder;
|
|
1226
|
+
ComplexCollection(propertyType: Type, propertyName: string, complexTypeName: string, buildAction: Action_1<ComplexCollectionBuilder>): ComplexPropertyBuilder;
|
|
1217
1227
|
ComplexProperty(propertyName: string): ComplexPropertyBuilder;
|
|
1218
1228
|
ComplexProperty<TProperty>(propertyName: string): ComplexPropertyBuilder_1<TProperty>;
|
|
1219
1229
|
ComplexProperty<TProperty>(propertyName: string, complexTypeName: string): ComplexPropertyBuilder_1<TProperty>;
|
|
1220
1230
|
ComplexProperty(propertyType: Type, propertyName: string): ComplexPropertyBuilder;
|
|
1221
1231
|
ComplexProperty(propertyType: Type, propertyName: string, complexTypeName: string): ComplexPropertyBuilder;
|
|
1222
|
-
ComplexProperty(propertyName: string, buildAction:
|
|
1223
|
-
ComplexProperty<TProperty>(propertyName: string, buildAction:
|
|
1224
|
-
ComplexProperty<TProperty>(propertyName: string, complexTypeName: string, buildAction:
|
|
1225
|
-
ComplexProperty(propertyType: Type, propertyName: string, buildAction:
|
|
1226
|
-
ComplexProperty(propertyType: Type, propertyName: string, complexTypeName: string, buildAction:
|
|
1232
|
+
ComplexProperty(propertyName: string, buildAction: Action_1<ComplexPropertyBuilder>): ComplexPropertyBuilder;
|
|
1233
|
+
ComplexProperty<TProperty>(propertyName: string, buildAction: Action_1<ComplexPropertyBuilder_1<TProperty>>): ComplexPropertyBuilder;
|
|
1234
|
+
ComplexProperty<TProperty>(propertyName: string, complexTypeName: string, buildAction: Action_1<ComplexPropertyBuilder_1<TProperty>>): ComplexPropertyBuilder;
|
|
1235
|
+
ComplexProperty(propertyType: Type, propertyName: string, buildAction: Action_1<ComplexPropertyBuilder>): ComplexPropertyBuilder;
|
|
1236
|
+
ComplexProperty(propertyType: Type, propertyName: string, complexTypeName: string, buildAction: Action_1<ComplexPropertyBuilder>): ComplexPropertyBuilder;
|
|
1227
1237
|
Equals(obj: unknown): boolean;
|
|
1228
1238
|
GetHashCode(): int;
|
|
1229
1239
|
HasChangeTrackingStrategy(changeTrackingStrategy: ChangeTrackingStrategy): ComplexPropertyBuilder;
|
|
@@ -1259,36 +1269,36 @@ export interface __ComplexPropertyBuilder$views {
|
|
|
1259
1269
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionComplexPropertyBuilder>;
|
|
1260
1270
|
}
|
|
1261
1271
|
|
|
1262
|
-
export interface ComplexPropertyBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionComplexPropertyBuilder> {}
|
|
1263
|
-
|
|
1264
1272
|
export type ComplexPropertyBuilder = ComplexPropertyBuilder$instance & __ComplexPropertyBuilder$views;
|
|
1265
1273
|
|
|
1266
1274
|
|
|
1267
|
-
export interface ComplexPropertyBuilder_1$instance<TComplex> extends ComplexPropertyBuilder$instance {
|
|
1275
|
+
export interface ComplexPropertyBuilder_1$instance<TComplex> extends ComplexPropertyBuilder$instance, Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionComplexPropertyBuilder> {
|
|
1276
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_ComplexPropertyBuilder_1: never;
|
|
1277
|
+
|
|
1268
1278
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
1269
1279
|
|
|
1270
|
-
ComplexCollection<TElement>(propertyExpression:
|
|
1280
|
+
ComplexCollection<TElement>(propertyExpression: Expression_1<Func_2<TComplex, IEnumerable_1<TElement>>>, complexTypeName: string): ComplexCollectionBuilder_1<TElement>;
|
|
1271
1281
|
ComplexCollection(propertyName: string): ComplexCollectionBuilder;
|
|
1272
|
-
ComplexCollection<TProperty extends
|
|
1273
|
-
ComplexCollection<TProperty extends
|
|
1282
|
+
ComplexCollection<TProperty extends IEnumerable_1<TElement>, TElement>(propertyName: string): ComplexCollectionBuilder_1<TElement>;
|
|
1283
|
+
ComplexCollection<TProperty extends IEnumerable_1<TElement>, TElement>(propertyName: string, complexTypeName: string): ComplexCollectionBuilder_1<TElement>;
|
|
1274
1284
|
ComplexCollection(propertyType: Type, propertyName: string): ComplexCollectionBuilder;
|
|
1275
1285
|
ComplexCollection(propertyType: Type, propertyName: string, complexTypeName: string): ComplexCollectionBuilder;
|
|
1276
|
-
ComplexCollection(propertyName: string, buildAction:
|
|
1277
|
-
ComplexCollection<TProperty extends
|
|
1278
|
-
ComplexCollection(propertyType: Type, propertyName: string, buildAction:
|
|
1279
|
-
ComplexCollection(propertyType: Type, propertyName: string, complexTypeName: string, buildAction:
|
|
1280
|
-
ComplexProperty<TProperty>(propertyName: string, buildAction:
|
|
1281
|
-
ComplexProperty<TProperty>(propertyName: string, complexTypeName: string, buildAction:
|
|
1282
|
-
ComplexProperty<TProperty>(propertyExpression:
|
|
1286
|
+
ComplexCollection(propertyName: string, buildAction: Action_1<ComplexCollectionBuilder>): ComplexPropertyBuilder;
|
|
1287
|
+
ComplexCollection<TProperty extends IEnumerable_1<TElement>, TElement>(propertyName: string, complexTypeName: string, buildAction: Action_1<ComplexCollectionBuilder_1<TElement>>): ComplexPropertyBuilder;
|
|
1288
|
+
ComplexCollection(propertyType: Type, propertyName: string, buildAction: Action_1<ComplexCollectionBuilder>): ComplexPropertyBuilder;
|
|
1289
|
+
ComplexCollection(propertyType: Type, propertyName: string, complexTypeName: string, buildAction: Action_1<ComplexCollectionBuilder>): ComplexPropertyBuilder;
|
|
1290
|
+
ComplexProperty<TProperty>(propertyName: string, buildAction: Action_1<ComplexPropertyBuilder_1<TProperty>>): ComplexPropertyBuilder_1<TComplex>;
|
|
1291
|
+
ComplexProperty<TProperty>(propertyName: string, complexTypeName: string, buildAction: Action_1<ComplexPropertyBuilder_1<TProperty>>): ComplexPropertyBuilder_1<TComplex>;
|
|
1292
|
+
ComplexProperty<TProperty>(propertyExpression: Expression_1<Func_2<TComplex, TProperty>>, complexTypeName: string): ComplexPropertyBuilder_1<TProperty>;
|
|
1283
1293
|
ComplexProperty(propertyName: string): ComplexPropertyBuilder;
|
|
1284
1294
|
ComplexProperty<TProperty>(propertyName: string): ComplexPropertyBuilder_1<TProperty>;
|
|
1285
1295
|
ComplexProperty<TProperty>(propertyName: string, complexTypeName: string): ComplexPropertyBuilder_1<TProperty>;
|
|
1286
1296
|
ComplexProperty(propertyType: Type, propertyName: string): ComplexPropertyBuilder;
|
|
1287
1297
|
ComplexProperty(propertyType: Type, propertyName: string, complexTypeName: string): ComplexPropertyBuilder;
|
|
1288
|
-
ComplexProperty(propertyName: string, buildAction:
|
|
1289
|
-
ComplexProperty<TProperty>(propertyName: string, complexTypeName: string, buildAction:
|
|
1290
|
-
ComplexProperty(propertyType: Type, propertyName: string, buildAction:
|
|
1291
|
-
ComplexProperty(propertyType: Type, propertyName: string, complexTypeName: string, buildAction:
|
|
1298
|
+
ComplexProperty(propertyName: string, buildAction: Action_1<ComplexPropertyBuilder>): ComplexPropertyBuilder;
|
|
1299
|
+
ComplexProperty<TProperty>(propertyName: string, complexTypeName: string, buildAction: Action_1<ComplexPropertyBuilder_1<TProperty>>): ComplexPropertyBuilder;
|
|
1300
|
+
ComplexProperty(propertyType: Type, propertyName: string, buildAction: Action_1<ComplexPropertyBuilder>): ComplexPropertyBuilder;
|
|
1301
|
+
ComplexProperty(propertyType: Type, propertyName: string, complexTypeName: string, buildAction: Action_1<ComplexPropertyBuilder>): ComplexPropertyBuilder;
|
|
1292
1302
|
HasChangeTrackingStrategy(changeTrackingStrategy: ChangeTrackingStrategy): ComplexPropertyBuilder;
|
|
1293
1303
|
HasDiscriminator(): ComplexTypeDiscriminatorBuilder;
|
|
1294
1304
|
HasDiscriminator(name: string, type: Type): ComplexTypeDiscriminatorBuilder;
|
|
@@ -1320,12 +1330,12 @@ export interface __ComplexPropertyBuilder_1$views<TComplex> {
|
|
|
1320
1330
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionComplexPropertyBuilder>;
|
|
1321
1331
|
}
|
|
1322
1332
|
|
|
1323
|
-
export interface ComplexPropertyBuilder_1$instance<TComplex> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionComplexPropertyBuilder> {}
|
|
1324
|
-
|
|
1325
1333
|
export type ComplexPropertyBuilder_1<TComplex> = ComplexPropertyBuilder_1$instance<TComplex> & __ComplexPropertyBuilder_1$views<TComplex>;
|
|
1326
1334
|
|
|
1327
1335
|
|
|
1328
1336
|
export interface ComplexTypeDiscriminatorBuilder$instance {
|
|
1337
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_ComplexTypeDiscriminatorBuilder: never;
|
|
1338
|
+
|
|
1329
1339
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Builders_IConventionComplexTypeDiscriminatorBuilder: never;
|
|
1330
1340
|
|
|
1331
1341
|
readonly ComplexTypeBuilder: InternalComplexTypeBuilder;
|
|
@@ -1349,6 +1359,8 @@ export type ComplexTypeDiscriminatorBuilder = ComplexTypeDiscriminatorBuilder$in
|
|
|
1349
1359
|
|
|
1350
1360
|
|
|
1351
1361
|
export interface ComplexTypeDiscriminatorBuilder_1$instance<TDiscriminator> {
|
|
1362
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_ComplexTypeDiscriminatorBuilder_1: never;
|
|
1363
|
+
|
|
1352
1364
|
HasValue(value: TDiscriminator): ComplexTypeDiscriminatorBuilder_1<TDiscriminator>;
|
|
1353
1365
|
}
|
|
1354
1366
|
|
|
@@ -1361,11 +1373,13 @@ export const ComplexTypeDiscriminatorBuilder_1: {
|
|
|
1361
1373
|
export type ComplexTypeDiscriminatorBuilder_1<TDiscriminator> = ComplexTypeDiscriminatorBuilder_1$instance<TDiscriminator>;
|
|
1362
1374
|
|
|
1363
1375
|
export interface ComplexTypePrimitiveCollectionBuilder$instance {
|
|
1376
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_ComplexTypePrimitiveCollectionBuilder: never;
|
|
1377
|
+
|
|
1364
1378
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
1365
1379
|
|
|
1366
1380
|
readonly Metadata: IMutableProperty;
|
|
1367
1381
|
ElementType(): ElementTypeBuilder;
|
|
1368
|
-
ElementType(builderAction:
|
|
1382
|
+
ElementType(builderAction: Action_1<ElementTypeBuilder>): ComplexTypePrimitiveCollectionBuilder;
|
|
1369
1383
|
Equals(obj: unknown): boolean;
|
|
1370
1384
|
GetHashCode(): int;
|
|
1371
1385
|
HasAnnotation(annotation: string, value: unknown): ComplexTypePrimitiveCollectionBuilder;
|
|
@@ -1398,16 +1412,16 @@ export interface __ComplexTypePrimitiveCollectionBuilder$views {
|
|
|
1398
1412
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionPropertyBuilder>;
|
|
1399
1413
|
}
|
|
1400
1414
|
|
|
1401
|
-
export interface ComplexTypePrimitiveCollectionBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionPropertyBuilder> {}
|
|
1402
|
-
|
|
1403
1415
|
export type ComplexTypePrimitiveCollectionBuilder = ComplexTypePrimitiveCollectionBuilder$instance & __ComplexTypePrimitiveCollectionBuilder$views;
|
|
1404
1416
|
|
|
1405
1417
|
|
|
1406
|
-
export interface ComplexTypePrimitiveCollectionBuilder_1$instance<TProperty> extends ComplexTypePrimitiveCollectionBuilder$instance {
|
|
1418
|
+
export interface ComplexTypePrimitiveCollectionBuilder_1$instance<TProperty> extends ComplexTypePrimitiveCollectionBuilder$instance, Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionPropertyBuilder> {
|
|
1419
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_ComplexTypePrimitiveCollectionBuilder_1: never;
|
|
1420
|
+
|
|
1407
1421
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
1408
1422
|
|
|
1409
1423
|
ElementType(): ElementTypeBuilder;
|
|
1410
|
-
ElementType(builderAction:
|
|
1424
|
+
ElementType(builderAction: Action_1<ElementTypeBuilder>): ComplexTypePrimitiveCollectionBuilder;
|
|
1411
1425
|
HasAnnotation(annotation: string, value: unknown): ComplexTypePrimitiveCollectionBuilder;
|
|
1412
1426
|
HasField(fieldName: string): ComplexTypePrimitiveCollectionBuilder;
|
|
1413
1427
|
HasMaxLength(maxLength: int): ComplexTypePrimitiveCollectionBuilder;
|
|
@@ -1438,12 +1452,12 @@ export interface __ComplexTypePrimitiveCollectionBuilder_1$views<TProperty> {
|
|
|
1438
1452
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionPropertyBuilder>;
|
|
1439
1453
|
}
|
|
1440
1454
|
|
|
1441
|
-
export interface ComplexTypePrimitiveCollectionBuilder_1$instance<TProperty> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionPropertyBuilder> {}
|
|
1442
|
-
|
|
1443
1455
|
export type ComplexTypePrimitiveCollectionBuilder_1<TProperty> = ComplexTypePrimitiveCollectionBuilder_1$instance<TProperty> & __ComplexTypePrimitiveCollectionBuilder_1$views<TProperty>;
|
|
1444
1456
|
|
|
1445
1457
|
|
|
1446
1458
|
export interface ComplexTypePropertyBuilder$instance {
|
|
1459
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_ComplexTypePropertyBuilder: never;
|
|
1460
|
+
|
|
1447
1461
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
1448
1462
|
|
|
1449
1463
|
readonly Metadata: IMutableProperty;
|
|
@@ -1493,12 +1507,12 @@ export interface __ComplexTypePropertyBuilder$views {
|
|
|
1493
1507
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionPropertyBuilder>;
|
|
1494
1508
|
}
|
|
1495
1509
|
|
|
1496
|
-
export interface ComplexTypePropertyBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionPropertyBuilder> {}
|
|
1497
|
-
|
|
1498
1510
|
export type ComplexTypePropertyBuilder = ComplexTypePropertyBuilder$instance & __ComplexTypePropertyBuilder$views;
|
|
1499
1511
|
|
|
1500
1512
|
|
|
1501
|
-
export interface ComplexTypePropertyBuilder_1$instance<TProperty> extends ComplexTypePropertyBuilder$instance {
|
|
1513
|
+
export interface ComplexTypePropertyBuilder_1$instance<TProperty> extends ComplexTypePropertyBuilder$instance, Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionPropertyBuilder> {
|
|
1514
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_ComplexTypePropertyBuilder_1: never;
|
|
1515
|
+
|
|
1502
1516
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
1503
1517
|
|
|
1504
1518
|
HasAnnotation(annotation: string, value: unknown): ComplexTypePropertyBuilder;
|
|
@@ -1554,18 +1568,18 @@ export interface __ComplexTypePropertyBuilder_1$views<TProperty> {
|
|
|
1554
1568
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionPropertyBuilder>;
|
|
1555
1569
|
}
|
|
1556
1570
|
|
|
1557
|
-
export interface ComplexTypePropertyBuilder_1$instance<TProperty> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionPropertyBuilder> {}
|
|
1558
|
-
|
|
1559
1571
|
export type ComplexTypePropertyBuilder_1<TProperty> = ComplexTypePropertyBuilder_1$instance<TProperty> & __ComplexTypePropertyBuilder_1$views<TProperty>;
|
|
1560
1572
|
|
|
1561
1573
|
|
|
1562
1574
|
export interface ConventionSetBuilder$instance {
|
|
1563
|
-
|
|
1575
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_ConventionSetBuilder: never;
|
|
1576
|
+
|
|
1577
|
+
Add(conventionFactory: Func_2<IServiceProvider, IConvention>): void;
|
|
1564
1578
|
Equals(obj: unknown): boolean;
|
|
1565
1579
|
GetHashCode(): int;
|
|
1566
1580
|
Remove(conventionType: Type): void;
|
|
1567
1581
|
Remove<TImplementation extends IConvention>(): void;
|
|
1568
|
-
Replace<TImplementation extends IConvention>(conventionFactory:
|
|
1582
|
+
Replace<TImplementation extends IConvention>(conventionFactory: Func_2<IServiceProvider, TImplementation>): void;
|
|
1569
1583
|
ToString(): string | undefined;
|
|
1570
1584
|
}
|
|
1571
1585
|
|
|
@@ -1578,6 +1592,8 @@ export const ConventionSetBuilder: {
|
|
|
1578
1592
|
export type ConventionSetBuilder = ConventionSetBuilder$instance;
|
|
1579
1593
|
|
|
1580
1594
|
export interface DataBuilder$instance {
|
|
1595
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_DataBuilder: never;
|
|
1596
|
+
|
|
1581
1597
|
Equals(obj: unknown): boolean;
|
|
1582
1598
|
GetHashCode(): int;
|
|
1583
1599
|
ToString(): string | undefined;
|
|
@@ -1592,6 +1608,8 @@ export const DataBuilder: {
|
|
|
1592
1608
|
export type DataBuilder = DataBuilder$instance;
|
|
1593
1609
|
|
|
1594
1610
|
export interface DataBuilder_1$instance<TEntity> extends DataBuilder {
|
|
1611
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_DataBuilder_1: never;
|
|
1612
|
+
|
|
1595
1613
|
}
|
|
1596
1614
|
|
|
1597
1615
|
|
|
@@ -1603,15 +1621,17 @@ export const DataBuilder_1: {
|
|
|
1603
1621
|
export type DataBuilder_1<TEntity> = DataBuilder_1$instance<TEntity>;
|
|
1604
1622
|
|
|
1605
1623
|
export interface DbFunctionBuilder$instance extends DbFunctionBuilderBase$instance {
|
|
1624
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_DbFunctionBuilder: never;
|
|
1625
|
+
|
|
1606
1626
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
1607
1627
|
|
|
1608
1628
|
HasAnnotation(annotation: string, value: unknown): DbFunctionBuilder;
|
|
1609
1629
|
HasName(name: string): DbFunctionBuilderBase;
|
|
1610
1630
|
HasParameter(name: string): DbFunctionParameterBuilder;
|
|
1611
|
-
HasParameter(name: string, buildAction:
|
|
1631
|
+
HasParameter(name: string, buildAction: Action_1<DbFunctionParameterBuilder>): DbFunctionBuilderBase;
|
|
1612
1632
|
HasSchema(schema: string): DbFunctionBuilderBase;
|
|
1613
1633
|
HasStoreType(storeType: string): DbFunctionBuilder;
|
|
1614
|
-
HasTranslation(translation:
|
|
1634
|
+
HasTranslation(translation: Func_2<IReadOnlyList_1<SqlExpression>, SqlExpression>): DbFunctionBuilder;
|
|
1615
1635
|
IsBuiltIn(builtIn?: boolean): DbFunctionBuilderBase;
|
|
1616
1636
|
IsNullable(nullable?: boolean): DbFunctionBuilderBase;
|
|
1617
1637
|
}
|
|
@@ -1626,12 +1646,12 @@ export interface __DbFunctionBuilder$views {
|
|
|
1626
1646
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionDbFunctionBuilder>;
|
|
1627
1647
|
}
|
|
1628
1648
|
|
|
1629
|
-
export interface DbFunctionBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionDbFunctionBuilder> {}
|
|
1630
|
-
|
|
1631
1649
|
export type DbFunctionBuilder = DbFunctionBuilder$instance & __DbFunctionBuilder$views;
|
|
1632
1650
|
|
|
1633
1651
|
|
|
1634
1652
|
export interface DbFunctionBuilderBase$instance {
|
|
1653
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_DbFunctionBuilderBase: never;
|
|
1654
|
+
|
|
1635
1655
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
1636
1656
|
|
|
1637
1657
|
readonly Builder: InternalDbFunctionBuilder;
|
|
@@ -1640,7 +1660,7 @@ export interface DbFunctionBuilderBase$instance {
|
|
|
1640
1660
|
GetHashCode(): int;
|
|
1641
1661
|
HasName(name: string): DbFunctionBuilderBase;
|
|
1642
1662
|
HasParameter(name: string): DbFunctionParameterBuilder;
|
|
1643
|
-
HasParameter(name: string, buildAction:
|
|
1663
|
+
HasParameter(name: string, buildAction: Action_1<DbFunctionParameterBuilder>): DbFunctionBuilderBase;
|
|
1644
1664
|
HasSchema(schema: string): DbFunctionBuilderBase;
|
|
1645
1665
|
IsBuiltIn(builtIn?: boolean): DbFunctionBuilderBase;
|
|
1646
1666
|
ToString(): string | undefined;
|
|
@@ -1655,12 +1675,12 @@ export interface __DbFunctionBuilderBase$views {
|
|
|
1655
1675
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionDbFunctionBuilder>;
|
|
1656
1676
|
}
|
|
1657
1677
|
|
|
1658
|
-
export interface DbFunctionBuilderBase$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionDbFunctionBuilder> {}
|
|
1659
|
-
|
|
1660
1678
|
export type DbFunctionBuilderBase = DbFunctionBuilderBase$instance & __DbFunctionBuilderBase$views;
|
|
1661
1679
|
|
|
1662
1680
|
|
|
1663
1681
|
export interface DbFunctionParameterBuilder$instance {
|
|
1682
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_DbFunctionParameterBuilder: never;
|
|
1683
|
+
|
|
1664
1684
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
1665
1685
|
|
|
1666
1686
|
readonly Metadata: IMutableDbFunctionParameter;
|
|
@@ -1681,12 +1701,12 @@ export interface __DbFunctionParameterBuilder$views {
|
|
|
1681
1701
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionDbFunctionParameterBuilder>;
|
|
1682
1702
|
}
|
|
1683
1703
|
|
|
1684
|
-
export interface DbFunctionParameterBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionDbFunctionParameterBuilder> {}
|
|
1685
|
-
|
|
1686
1704
|
export type DbFunctionParameterBuilder = DbFunctionParameterBuilder$instance & __DbFunctionParameterBuilder$views;
|
|
1687
1705
|
|
|
1688
1706
|
|
|
1689
1707
|
export interface DiscriminatorBuilder$instance {
|
|
1708
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_DiscriminatorBuilder: never;
|
|
1709
|
+
|
|
1690
1710
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Builders_IConventionDiscriminatorBuilder: never;
|
|
1691
1711
|
|
|
1692
1712
|
readonly EntityTypeBuilder: InternalEntityTypeBuilder;
|
|
@@ -1713,6 +1733,8 @@ export type DiscriminatorBuilder = DiscriminatorBuilder$instance & __Discriminat
|
|
|
1713
1733
|
|
|
1714
1734
|
|
|
1715
1735
|
export interface DiscriminatorBuilder_1$instance<TDiscriminator> {
|
|
1736
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_DiscriminatorBuilder_1: never;
|
|
1737
|
+
|
|
1716
1738
|
HasValue(value: TDiscriminator): DiscriminatorBuilder_1<TDiscriminator>;
|
|
1717
1739
|
HasValue(entityType: Type, value: TDiscriminator): DiscriminatorBuilder_1<TDiscriminator>;
|
|
1718
1740
|
HasValue(entityTypeName: string, value: TDiscriminator): DiscriminatorBuilder_1<TDiscriminator>;
|
|
@@ -1728,6 +1750,8 @@ export const DiscriminatorBuilder_1: {
|
|
|
1728
1750
|
export type DiscriminatorBuilder_1<TDiscriminator> = DiscriminatorBuilder_1$instance<TDiscriminator>;
|
|
1729
1751
|
|
|
1730
1752
|
export interface ElementTypeBuilder$instance {
|
|
1753
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_ElementTypeBuilder: never;
|
|
1754
|
+
|
|
1731
1755
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
1732
1756
|
|
|
1733
1757
|
readonly Metadata: IMutableElementType;
|
|
@@ -1759,36 +1783,36 @@ export interface __ElementTypeBuilder$views {
|
|
|
1759
1783
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionElementTypeBuilder>;
|
|
1760
1784
|
}
|
|
1761
1785
|
|
|
1762
|
-
export interface ElementTypeBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionElementTypeBuilder> {}
|
|
1763
|
-
|
|
1764
1786
|
export type ElementTypeBuilder = ElementTypeBuilder$instance & __ElementTypeBuilder$views;
|
|
1765
1787
|
|
|
1766
1788
|
|
|
1767
1789
|
export interface EntityTypeBuilder$instance {
|
|
1790
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_EntityTypeBuilder: never;
|
|
1791
|
+
|
|
1768
1792
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
1769
1793
|
|
|
1770
1794
|
readonly Builder: InternalEntityTypeBuilder;
|
|
1771
1795
|
readonly Metadata: IMutableEntityType;
|
|
1772
1796
|
ComplexCollection(propertyName: string): ComplexCollectionBuilder;
|
|
1773
|
-
ComplexCollection<TProperty extends
|
|
1774
|
-
ComplexCollection<TProperty extends
|
|
1797
|
+
ComplexCollection<TProperty extends IEnumerable_1<TElement>, TElement>(propertyName: string): ComplexCollectionBuilder_1<TElement>;
|
|
1798
|
+
ComplexCollection<TProperty extends IEnumerable_1<TElement>, TElement>(propertyName: string, complexTypeName: string): ComplexCollectionBuilder_1<TElement>;
|
|
1775
1799
|
ComplexCollection(propertyType: Type, propertyName: string): ComplexCollectionBuilder;
|
|
1776
1800
|
ComplexCollection(propertyType: Type, propertyName: string, complexTypeName: string): ComplexCollectionBuilder;
|
|
1777
|
-
ComplexCollection(propertyName: string, buildAction:
|
|
1778
|
-
ComplexCollection<TProperty extends
|
|
1779
|
-
ComplexCollection<TProperty extends
|
|
1780
|
-
ComplexCollection(propertyType: Type, propertyName: string, buildAction:
|
|
1781
|
-
ComplexCollection(propertyType: Type, propertyName: string, complexTypeName: string, buildAction:
|
|
1801
|
+
ComplexCollection(propertyName: string, buildAction: Action_1<ComplexCollectionBuilder>): EntityTypeBuilder;
|
|
1802
|
+
ComplexCollection<TProperty extends IEnumerable_1<TElement>, TElement>(propertyName: string, buildAction: Action_1<ComplexCollectionBuilder_1<TElement>>): EntityTypeBuilder;
|
|
1803
|
+
ComplexCollection<TProperty extends IEnumerable_1<TElement>, TElement>(propertyName: string, complexTypeName: string, buildAction: Action_1<ComplexCollectionBuilder_1<TElement>>): EntityTypeBuilder;
|
|
1804
|
+
ComplexCollection(propertyType: Type, propertyName: string, buildAction: Action_1<ComplexCollectionBuilder>): EntityTypeBuilder;
|
|
1805
|
+
ComplexCollection(propertyType: Type, propertyName: string, complexTypeName: string, buildAction: Action_1<ComplexCollectionBuilder>): EntityTypeBuilder;
|
|
1782
1806
|
ComplexProperty(propertyName: string): ComplexPropertyBuilder;
|
|
1783
1807
|
ComplexProperty<TProperty>(propertyName: string): ComplexPropertyBuilder_1<TProperty>;
|
|
1784
1808
|
ComplexProperty<TProperty>(propertyName: string, complexTypeName: string): ComplexPropertyBuilder_1<TProperty>;
|
|
1785
1809
|
ComplexProperty(propertyType: Type, propertyName: string): ComplexPropertyBuilder;
|
|
1786
1810
|
ComplexProperty(propertyType: Type, propertyName: string, complexTypeName: string): ComplexPropertyBuilder;
|
|
1787
|
-
ComplexProperty(propertyName: string, buildAction:
|
|
1788
|
-
ComplexProperty<TProperty>(propertyName: string, buildAction:
|
|
1789
|
-
ComplexProperty<TProperty>(propertyName: string, complexTypeName: string, buildAction:
|
|
1790
|
-
ComplexProperty(propertyType: Type, propertyName: string, buildAction:
|
|
1791
|
-
ComplexProperty(propertyType: Type, propertyName: string, complexTypeName: string, buildAction:
|
|
1811
|
+
ComplexProperty(propertyName: string, buildAction: Action_1<ComplexPropertyBuilder>): EntityTypeBuilder;
|
|
1812
|
+
ComplexProperty<TProperty>(propertyName: string, buildAction: Action_1<ComplexPropertyBuilder_1<TProperty>>): EntityTypeBuilder;
|
|
1813
|
+
ComplexProperty<TProperty>(propertyName: string, complexTypeName: string, buildAction: Action_1<ComplexPropertyBuilder_1<TProperty>>): EntityTypeBuilder;
|
|
1814
|
+
ComplexProperty(propertyType: Type, propertyName: string, buildAction: Action_1<ComplexPropertyBuilder>): EntityTypeBuilder;
|
|
1815
|
+
ComplexProperty(propertyType: Type, propertyName: string, complexTypeName: string, buildAction: Action_1<ComplexPropertyBuilder>): EntityTypeBuilder;
|
|
1792
1816
|
Equals(obj: unknown): boolean;
|
|
1793
1817
|
FindRelatedEntityType(relatedTypeName: string, navigationName: string): EntityType;
|
|
1794
1818
|
FindRelatedEntityType(relatedType: Type, navigationName: string): EntityType;
|
|
@@ -1799,7 +1823,7 @@ export interface EntityTypeBuilder$instance {
|
|
|
1799
1823
|
HasBaseType(entityType: Type): EntityTypeBuilder;
|
|
1800
1824
|
HasChangeTrackingStrategy(changeTrackingStrategy: ChangeTrackingStrategy): EntityTypeBuilder;
|
|
1801
1825
|
HasData(...data: unknown[]): DataBuilder;
|
|
1802
|
-
HasData(data:
|
|
1826
|
+
HasData(data: IEnumerable_1<unknown>): DataBuilder;
|
|
1803
1827
|
HasDiscriminator(): DiscriminatorBuilder;
|
|
1804
1828
|
HasDiscriminator(name: string, type: Type): DiscriminatorBuilder;
|
|
1805
1829
|
HasDiscriminator<TDiscriminator>(name: string): DiscriminatorBuilder_1<TDiscriminator>;
|
|
@@ -1824,15 +1848,15 @@ export interface EntityTypeBuilder$instance {
|
|
|
1824
1848
|
OwnsMany(ownedTypeName: string, navigationName: string): OwnedNavigationBuilder;
|
|
1825
1849
|
OwnsMany(ownedTypeName: string, ownedType: Type, navigationName: string): OwnedNavigationBuilder;
|
|
1826
1850
|
OwnsMany(ownedType: Type, navigationName: string): OwnedNavigationBuilder;
|
|
1827
|
-
OwnsMany(ownedTypeName: string, navigationName: string, buildAction:
|
|
1828
|
-
OwnsMany(ownedTypeName: string, ownedType: Type, navigationName: string, buildAction:
|
|
1829
|
-
OwnsMany(ownedType: Type, navigationName: string, buildAction:
|
|
1851
|
+
OwnsMany(ownedTypeName: string, navigationName: string, buildAction: Action_1<OwnedNavigationBuilder>): EntityTypeBuilder;
|
|
1852
|
+
OwnsMany(ownedTypeName: string, ownedType: Type, navigationName: string, buildAction: Action_1<OwnedNavigationBuilder>): EntityTypeBuilder;
|
|
1853
|
+
OwnsMany(ownedType: Type, navigationName: string, buildAction: Action_1<OwnedNavigationBuilder>): EntityTypeBuilder;
|
|
1830
1854
|
OwnsOne(ownedTypeName: string, navigationName: string): OwnedNavigationBuilder;
|
|
1831
1855
|
OwnsOne(ownedTypeName: string, ownedType: Type, navigationName: string): OwnedNavigationBuilder;
|
|
1832
1856
|
OwnsOne(ownedType: Type, navigationName: string): OwnedNavigationBuilder;
|
|
1833
|
-
OwnsOne(ownedTypeName: string, navigationName: string, buildAction:
|
|
1834
|
-
OwnsOne(ownedTypeName: string, ownedType: Type, navigationName: string, buildAction:
|
|
1835
|
-
OwnsOne(ownedType: Type, navigationName: string, buildAction:
|
|
1857
|
+
OwnsOne(ownedTypeName: string, navigationName: string, buildAction: Action_1<OwnedNavigationBuilder>): EntityTypeBuilder;
|
|
1858
|
+
OwnsOne(ownedTypeName: string, ownedType: Type, navigationName: string, buildAction: Action_1<OwnedNavigationBuilder>): EntityTypeBuilder;
|
|
1859
|
+
OwnsOne(ownedType: Type, navigationName: string, buildAction: Action_1<OwnedNavigationBuilder>): EntityTypeBuilder;
|
|
1836
1860
|
PrimitiveCollection(propertyName: string): PrimitiveCollectionBuilder;
|
|
1837
1861
|
PrimitiveCollection<TProperty>(propertyName: string): PrimitiveCollectionBuilder_1<TProperty>;
|
|
1838
1862
|
PrimitiveCollection(propertyType: Type, propertyName: string): PrimitiveCollectionBuilder;
|
|
@@ -1854,36 +1878,36 @@ export interface __EntityTypeBuilder$views {
|
|
|
1854
1878
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionEntityTypeBuilder>;
|
|
1855
1879
|
}
|
|
1856
1880
|
|
|
1857
|
-
export interface EntityTypeBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionEntityTypeBuilder> {}
|
|
1858
|
-
|
|
1859
1881
|
export type EntityTypeBuilder = EntityTypeBuilder$instance & __EntityTypeBuilder$views;
|
|
1860
1882
|
|
|
1861
1883
|
|
|
1862
|
-
export interface EntityTypeBuilder_1$instance<TEntity> extends EntityTypeBuilder$instance {
|
|
1884
|
+
export interface EntityTypeBuilder_1$instance<TEntity> extends EntityTypeBuilder$instance, Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionEntityTypeBuilder> {
|
|
1885
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_EntityTypeBuilder_1: never;
|
|
1886
|
+
|
|
1863
1887
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
1864
1888
|
|
|
1865
|
-
ComplexCollection<TElement>(propertyExpression:
|
|
1889
|
+
ComplexCollection<TElement>(propertyExpression: Expression_1<Func_2<TEntity, IEnumerable_1<TElement>>>, complexTypeName: string): ComplexCollectionBuilder_1<TElement>;
|
|
1866
1890
|
ComplexCollection(propertyName: string): ComplexCollectionBuilder;
|
|
1867
|
-
ComplexCollection<TProperty extends
|
|
1868
|
-
ComplexCollection<TProperty extends
|
|
1891
|
+
ComplexCollection<TProperty extends IEnumerable_1<TElement>, TElement>(propertyName: string): ComplexCollectionBuilder_1<TElement>;
|
|
1892
|
+
ComplexCollection<TProperty extends IEnumerable_1<TElement>, TElement>(propertyName: string, complexTypeName: string): ComplexCollectionBuilder_1<TElement>;
|
|
1869
1893
|
ComplexCollection(propertyType: Type, propertyName: string): ComplexCollectionBuilder;
|
|
1870
1894
|
ComplexCollection(propertyType: Type, propertyName: string, complexTypeName: string): ComplexCollectionBuilder;
|
|
1871
|
-
ComplexCollection(propertyName: string, buildAction:
|
|
1872
|
-
ComplexCollection<TProperty extends
|
|
1873
|
-
ComplexCollection(propertyType: Type, propertyName: string, buildAction:
|
|
1874
|
-
ComplexCollection(propertyType: Type, propertyName: string, complexTypeName: string, buildAction:
|
|
1875
|
-
ComplexProperty<TProperty>(propertyName: string, buildAction:
|
|
1876
|
-
ComplexProperty<TProperty>(propertyName: string, complexTypeName: string, buildAction:
|
|
1877
|
-
ComplexProperty<TProperty>(propertyExpression:
|
|
1895
|
+
ComplexCollection(propertyName: string, buildAction: Action_1<ComplexCollectionBuilder>): EntityTypeBuilder;
|
|
1896
|
+
ComplexCollection<TProperty extends IEnumerable_1<TElement>, TElement>(propertyName: string, complexTypeName: string, buildAction: Action_1<ComplexCollectionBuilder_1<TElement>>): EntityTypeBuilder;
|
|
1897
|
+
ComplexCollection(propertyType: Type, propertyName: string, buildAction: Action_1<ComplexCollectionBuilder>): EntityTypeBuilder;
|
|
1898
|
+
ComplexCollection(propertyType: Type, propertyName: string, complexTypeName: string, buildAction: Action_1<ComplexCollectionBuilder>): EntityTypeBuilder;
|
|
1899
|
+
ComplexProperty<TProperty>(propertyName: string, buildAction: Action_1<ComplexPropertyBuilder_1<TProperty>>): EntityTypeBuilder_1<TEntity>;
|
|
1900
|
+
ComplexProperty<TProperty>(propertyName: string, complexTypeName: string, buildAction: Action_1<ComplexPropertyBuilder_1<TProperty>>): EntityTypeBuilder_1<TEntity>;
|
|
1901
|
+
ComplexProperty<TProperty>(propertyExpression: Expression_1<Func_2<TEntity, TProperty>>, complexTypeName: string): ComplexPropertyBuilder_1<TProperty>;
|
|
1878
1902
|
ComplexProperty(propertyName: string): ComplexPropertyBuilder;
|
|
1879
1903
|
ComplexProperty<TProperty>(propertyName: string): ComplexPropertyBuilder_1<TProperty>;
|
|
1880
1904
|
ComplexProperty<TProperty>(propertyName: string, complexTypeName: string): ComplexPropertyBuilder_1<TProperty>;
|
|
1881
1905
|
ComplexProperty(propertyType: Type, propertyName: string): ComplexPropertyBuilder;
|
|
1882
1906
|
ComplexProperty(propertyType: Type, propertyName: string, complexTypeName: string): ComplexPropertyBuilder;
|
|
1883
|
-
ComplexProperty(propertyName: string, buildAction:
|
|
1884
|
-
ComplexProperty<TProperty>(propertyName: string, complexTypeName: string, buildAction:
|
|
1885
|
-
ComplexProperty(propertyType: Type, propertyName: string, buildAction:
|
|
1886
|
-
ComplexProperty(propertyType: Type, propertyName: string, complexTypeName: string, buildAction:
|
|
1907
|
+
ComplexProperty(propertyName: string, buildAction: Action_1<ComplexPropertyBuilder>): EntityTypeBuilder;
|
|
1908
|
+
ComplexProperty<TProperty>(propertyName: string, complexTypeName: string, buildAction: Action_1<ComplexPropertyBuilder_1<TProperty>>): EntityTypeBuilder;
|
|
1909
|
+
ComplexProperty(propertyType: Type, propertyName: string, buildAction: Action_1<ComplexPropertyBuilder>): EntityTypeBuilder;
|
|
1910
|
+
ComplexProperty(propertyType: Type, propertyName: string, complexTypeName: string, buildAction: Action_1<ComplexPropertyBuilder>): EntityTypeBuilder;
|
|
1887
1911
|
HasAlternateKey(...propertyNames: string[]): KeyBuilder_1<TEntity>;
|
|
1888
1912
|
HasAlternateKey(...propertyNames: string[]): KeyBuilder;
|
|
1889
1913
|
HasAnnotation(annotation: string, value: unknown): EntityTypeBuilder;
|
|
@@ -1893,9 +1917,9 @@ export interface EntityTypeBuilder_1$instance<TEntity> extends EntityTypeBuilder
|
|
|
1893
1917
|
HasChangeTrackingStrategy(changeTrackingStrategy: ChangeTrackingStrategy): EntityTypeBuilder;
|
|
1894
1918
|
HasData(...data: TEntity[]): DataBuilder_1<TEntity>;
|
|
1895
1919
|
HasData(...data: unknown[]): DataBuilder_1<TEntity>;
|
|
1896
|
-
HasData(data:
|
|
1920
|
+
HasData(data: IEnumerable_1<unknown>): DataBuilder_1<TEntity>;
|
|
1897
1921
|
HasData(...data: unknown[]): DataBuilder;
|
|
1898
|
-
HasData(data:
|
|
1922
|
+
HasData(data: IEnumerable_1<unknown>): DataBuilder;
|
|
1899
1923
|
HasDiscriminator(): DiscriminatorBuilder;
|
|
1900
1924
|
HasDiscriminator(name: string, type: Type): DiscriminatorBuilder;
|
|
1901
1925
|
HasDiscriminator<TDiscriminator>(name: string): DiscriminatorBuilder_1<TDiscriminator>;
|
|
@@ -1924,28 +1948,28 @@ export interface EntityTypeBuilder_1$instance<TEntity> extends EntityTypeBuilder
|
|
|
1924
1948
|
Navigation(navigationName: string): NavigationBuilder;
|
|
1925
1949
|
OwnsMany<TRelatedEntity>(navigationName: string): OwnedNavigationBuilder_2<TEntity, TRelatedEntity>;
|
|
1926
1950
|
OwnsMany<TRelatedEntity>(ownedTypeName: string, navigationName: string): OwnedNavigationBuilder_2<TEntity, TRelatedEntity>;
|
|
1927
|
-
OwnsMany<TRelatedEntity>(ownedTypeName: string, navigationExpression:
|
|
1928
|
-
OwnsMany<TRelatedEntity>(navigationName: string, buildAction:
|
|
1929
|
-
OwnsMany(ownedType: Type, navigationName: string, buildAction:
|
|
1930
|
-
OwnsMany<TRelatedEntity>(ownedTypeName: string, navigationName: string, buildAction:
|
|
1951
|
+
OwnsMany<TRelatedEntity>(ownedTypeName: string, navigationExpression: Expression_1<Func_2<TEntity, IEnumerable_1<TRelatedEntity>>>): OwnedNavigationBuilder_2<TEntity, TRelatedEntity>;
|
|
1952
|
+
OwnsMany<TRelatedEntity>(navigationName: string, buildAction: Action_1<OwnedNavigationBuilder_2<TEntity, TRelatedEntity>>): EntityTypeBuilder_1<TEntity>;
|
|
1953
|
+
OwnsMany(ownedType: Type, navigationName: string, buildAction: Action_1<OwnedNavigationBuilder>): EntityTypeBuilder_1<TEntity>;
|
|
1954
|
+
OwnsMany<TRelatedEntity>(ownedTypeName: string, navigationName: string, buildAction: Action_1<OwnedNavigationBuilder_2<TEntity, TRelatedEntity>>): EntityTypeBuilder_1<TEntity>;
|
|
1931
1955
|
OwnsMany(ownedTypeName: string, navigationName: string): OwnedNavigationBuilder;
|
|
1932
1956
|
OwnsMany(ownedTypeName: string, ownedType: Type, navigationName: string): OwnedNavigationBuilder;
|
|
1933
1957
|
OwnsMany(ownedType: Type, navigationName: string): OwnedNavigationBuilder;
|
|
1934
|
-
OwnsMany(ownedTypeName: string, navigationName: string, buildAction:
|
|
1935
|
-
OwnsMany(ownedTypeName: string, ownedType: Type, navigationName: string, buildAction:
|
|
1936
|
-
OwnsMany(ownedType: Type, navigationName: string, buildAction:
|
|
1958
|
+
OwnsMany(ownedTypeName: string, navigationName: string, buildAction: Action_1<OwnedNavigationBuilder>): EntityTypeBuilder;
|
|
1959
|
+
OwnsMany(ownedTypeName: string, ownedType: Type, navigationName: string, buildAction: Action_1<OwnedNavigationBuilder>): EntityTypeBuilder;
|
|
1960
|
+
OwnsMany(ownedType: Type, navigationName: string, buildAction: Action_1<OwnedNavigationBuilder>): EntityTypeBuilder;
|
|
1937
1961
|
OwnsOne<TRelatedEntity>(navigationName: string): OwnedNavigationBuilder_2<TEntity, TRelatedEntity>;
|
|
1938
1962
|
OwnsOne<TRelatedEntity>(ownedTypeName: string, navigationName: string): OwnedNavigationBuilder_2<TEntity, TRelatedEntity>;
|
|
1939
|
-
OwnsOne<TRelatedEntity>(ownedTypeName: string, navigationExpression:
|
|
1940
|
-
OwnsOne<TRelatedEntity>(navigationName: string, buildAction:
|
|
1941
|
-
OwnsOne(ownedType: Type, navigationName: string, buildAction:
|
|
1942
|
-
OwnsOne<TRelatedEntity>(ownedTypeName: string, navigationName: string, buildAction:
|
|
1963
|
+
OwnsOne<TRelatedEntity>(ownedTypeName: string, navigationExpression: Expression_1<Func_2<TEntity, TRelatedEntity>>): OwnedNavigationBuilder_2<TEntity, TRelatedEntity>;
|
|
1964
|
+
OwnsOne<TRelatedEntity>(navigationName: string, buildAction: Action_1<OwnedNavigationBuilder_2<TEntity, TRelatedEntity>>): EntityTypeBuilder_1<TEntity>;
|
|
1965
|
+
OwnsOne(ownedType: Type, navigationName: string, buildAction: Action_1<OwnedNavigationBuilder>): EntityTypeBuilder_1<TEntity>;
|
|
1966
|
+
OwnsOne<TRelatedEntity>(ownedTypeName: string, navigationName: string, buildAction: Action_1<OwnedNavigationBuilder_2<TEntity, TRelatedEntity>>): EntityTypeBuilder_1<TEntity>;
|
|
1943
1967
|
OwnsOne(ownedTypeName: string, navigationName: string): OwnedNavigationBuilder;
|
|
1944
1968
|
OwnsOne(ownedTypeName: string, ownedType: Type, navigationName: string): OwnedNavigationBuilder;
|
|
1945
1969
|
OwnsOne(ownedType: Type, navigationName: string): OwnedNavigationBuilder;
|
|
1946
|
-
OwnsOne(ownedTypeName: string, navigationName: string, buildAction:
|
|
1947
|
-
OwnsOne(ownedTypeName: string, ownedType: Type, navigationName: string, buildAction:
|
|
1948
|
-
OwnsOne(ownedType: Type, navigationName: string, buildAction:
|
|
1970
|
+
OwnsOne(ownedTypeName: string, navigationName: string, buildAction: Action_1<OwnedNavigationBuilder>): EntityTypeBuilder;
|
|
1971
|
+
OwnsOne(ownedTypeName: string, ownedType: Type, navigationName: string, buildAction: Action_1<OwnedNavigationBuilder>): EntityTypeBuilder;
|
|
1972
|
+
OwnsOne(ownedType: Type, navigationName: string, buildAction: Action_1<OwnedNavigationBuilder>): EntityTypeBuilder;
|
|
1949
1973
|
PrimitiveCollection(propertyName: string): PrimitiveCollectionBuilder;
|
|
1950
1974
|
PrimitiveCollection<TProperty>(propertyName: string): PrimitiveCollectionBuilder_1<TProperty>;
|
|
1951
1975
|
PrimitiveCollection(propertyType: Type, propertyName: string): PrimitiveCollectionBuilder;
|
|
@@ -1965,12 +1989,12 @@ export interface __EntityTypeBuilder_1$views<TEntity> {
|
|
|
1965
1989
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionEntityTypeBuilder>;
|
|
1966
1990
|
}
|
|
1967
1991
|
|
|
1968
|
-
export interface EntityTypeBuilder_1$instance<TEntity> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionEntityTypeBuilder> {}
|
|
1969
|
-
|
|
1970
1992
|
export type EntityTypeBuilder_1<TEntity> = EntityTypeBuilder_1$instance<TEntity> & __EntityTypeBuilder_1$views<TEntity>;
|
|
1971
1993
|
|
|
1972
1994
|
|
|
1973
1995
|
export interface IndexBuilder$instance {
|
|
1996
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_IndexBuilder: never;
|
|
1997
|
+
|
|
1974
1998
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
1975
1999
|
|
|
1976
2000
|
readonly Metadata: IMutableIndex;
|
|
@@ -1992,12 +2016,12 @@ export interface __IndexBuilder$views {
|
|
|
1992
2016
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionIndexBuilder>;
|
|
1993
2017
|
}
|
|
1994
2018
|
|
|
1995
|
-
export interface IndexBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionIndexBuilder> {}
|
|
1996
|
-
|
|
1997
2019
|
export type IndexBuilder = IndexBuilder$instance & __IndexBuilder$views;
|
|
1998
2020
|
|
|
1999
2021
|
|
|
2000
|
-
export interface IndexBuilder_1$instance<T> extends IndexBuilder$instance {
|
|
2022
|
+
export interface IndexBuilder_1$instance<T> extends IndexBuilder$instance, Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionIndexBuilder> {
|
|
2023
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_IndexBuilder_1: never;
|
|
2024
|
+
|
|
2001
2025
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
2002
2026
|
|
|
2003
2027
|
HasAnnotation(annotation: string, value: unknown): IndexBuilder;
|
|
@@ -2015,12 +2039,12 @@ export interface __IndexBuilder_1$views<T> {
|
|
|
2015
2039
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionIndexBuilder>;
|
|
2016
2040
|
}
|
|
2017
2041
|
|
|
2018
|
-
export interface IndexBuilder_1$instance<T> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionIndexBuilder> {}
|
|
2019
|
-
|
|
2020
2042
|
export type IndexBuilder_1<T> = IndexBuilder_1$instance<T> & __IndexBuilder_1$views<T>;
|
|
2021
2043
|
|
|
2022
2044
|
|
|
2023
2045
|
export interface InvertibleRelationshipBuilderBase$instance {
|
|
2046
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_InvertibleRelationshipBuilderBase: never;
|
|
2047
|
+
|
|
2024
2048
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
2025
2049
|
|
|
2026
2050
|
Builder: InternalForeignKeyBuilder;
|
|
@@ -2041,12 +2065,12 @@ export interface __InvertibleRelationshipBuilderBase$views {
|
|
|
2041
2065
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionForeignKeyBuilder>;
|
|
2042
2066
|
}
|
|
2043
2067
|
|
|
2044
|
-
export interface InvertibleRelationshipBuilderBase$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionForeignKeyBuilder> {}
|
|
2045
|
-
|
|
2046
2068
|
export type InvertibleRelationshipBuilderBase = InvertibleRelationshipBuilderBase$instance & __InvertibleRelationshipBuilderBase$views;
|
|
2047
2069
|
|
|
2048
2070
|
|
|
2049
2071
|
export interface KeyBuilder$instance {
|
|
2072
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_KeyBuilder: never;
|
|
2073
|
+
|
|
2050
2074
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
2051
2075
|
|
|
2052
2076
|
readonly Metadata: IMutableKey;
|
|
@@ -2066,12 +2090,12 @@ export interface __KeyBuilder$views {
|
|
|
2066
2090
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionKeyBuilder>;
|
|
2067
2091
|
}
|
|
2068
2092
|
|
|
2069
|
-
export interface KeyBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionKeyBuilder> {}
|
|
2070
|
-
|
|
2071
2093
|
export type KeyBuilder = KeyBuilder$instance & __KeyBuilder$views;
|
|
2072
2094
|
|
|
2073
2095
|
|
|
2074
|
-
export interface KeyBuilder_1$instance<T> extends KeyBuilder$instance {
|
|
2096
|
+
export interface KeyBuilder_1$instance<T> extends KeyBuilder$instance, Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionKeyBuilder> {
|
|
2097
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_KeyBuilder_1: never;
|
|
2098
|
+
|
|
2075
2099
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
2076
2100
|
|
|
2077
2101
|
HasAnnotation(annotation: string, value: unknown): KeyBuilder;
|
|
@@ -2087,12 +2111,12 @@ export interface __KeyBuilder_1$views<T> {
|
|
|
2087
2111
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionKeyBuilder>;
|
|
2088
2112
|
}
|
|
2089
2113
|
|
|
2090
|
-
export interface KeyBuilder_1$instance<T> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionKeyBuilder> {}
|
|
2091
|
-
|
|
2092
2114
|
export type KeyBuilder_1<T> = KeyBuilder_1$instance<T> & __KeyBuilder_1$views<T>;
|
|
2093
2115
|
|
|
2094
2116
|
|
|
2095
2117
|
export interface NavigationBuilder$instance {
|
|
2118
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_NavigationBuilder: never;
|
|
2119
|
+
|
|
2096
2120
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
2097
2121
|
|
|
2098
2122
|
readonly Metadata: IMutableNavigationBase;
|
|
@@ -2117,12 +2141,12 @@ export interface __NavigationBuilder$views {
|
|
|
2117
2141
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionSkipNavigationBuilder>;
|
|
2118
2142
|
}
|
|
2119
2143
|
|
|
2120
|
-
export interface NavigationBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionSkipNavigationBuilder> {}
|
|
2121
|
-
|
|
2122
2144
|
export type NavigationBuilder = NavigationBuilder$instance & __NavigationBuilder$views;
|
|
2123
2145
|
|
|
2124
2146
|
|
|
2125
|
-
export interface NavigationBuilder_2$instance<TSource, TTarget> extends NavigationBuilder$instance {
|
|
2147
|
+
export interface NavigationBuilder_2$instance<TSource, TTarget> extends NavigationBuilder$instance, Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionSkipNavigationBuilder> {
|
|
2148
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_NavigationBuilder_2: never;
|
|
2149
|
+
|
|
2126
2150
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
2127
2151
|
|
|
2128
2152
|
AutoInclude(autoInclude?: boolean): NavigationBuilder;
|
|
@@ -2146,12 +2170,12 @@ export interface __NavigationBuilder_2$views<TSource, TTarget> {
|
|
|
2146
2170
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionSkipNavigationBuilder>;
|
|
2147
2171
|
}
|
|
2148
2172
|
|
|
2149
|
-
export interface NavigationBuilder_2$instance<TSource, TTarget> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionSkipNavigationBuilder> {}
|
|
2150
|
-
|
|
2151
2173
|
export type NavigationBuilder_2<TSource, TTarget> = NavigationBuilder_2$instance<TSource, TTarget> & __NavigationBuilder_2$views<TSource, TTarget>;
|
|
2152
2174
|
|
|
2153
2175
|
|
|
2154
2176
|
export interface OwnedEntityTypeBuilder$instance {
|
|
2177
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_OwnedEntityTypeBuilder: never;
|
|
2178
|
+
|
|
2155
2179
|
Equals(obj: unknown): boolean;
|
|
2156
2180
|
GetHashCode(): int;
|
|
2157
2181
|
ToString(): string | undefined;
|
|
@@ -2166,6 +2190,8 @@ export const OwnedEntityTypeBuilder: {
|
|
|
2166
2190
|
export type OwnedEntityTypeBuilder = OwnedEntityTypeBuilder$instance;
|
|
2167
2191
|
|
|
2168
2192
|
export interface OwnedEntityTypeBuilder_1$instance<T> extends OwnedEntityTypeBuilder {
|
|
2193
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_OwnedEntityTypeBuilder_1: never;
|
|
2194
|
+
|
|
2169
2195
|
}
|
|
2170
2196
|
|
|
2171
2197
|
|
|
@@ -2177,6 +2203,8 @@ export const OwnedEntityTypeBuilder_1: {
|
|
|
2177
2203
|
export type OwnedEntityTypeBuilder_1<T> = OwnedEntityTypeBuilder_1$instance<T>;
|
|
2178
2204
|
|
|
2179
2205
|
export interface OwnedNavigationBuilder$instance {
|
|
2206
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_OwnedNavigationBuilder: never;
|
|
2207
|
+
|
|
2180
2208
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
2181
2209
|
|
|
2182
2210
|
Builder: InternalForeignKeyBuilder;
|
|
@@ -2189,7 +2217,7 @@ export interface OwnedNavigationBuilder$instance {
|
|
|
2189
2217
|
HasAnnotation(annotation: string, value: unknown): OwnedNavigationBuilder;
|
|
2190
2218
|
HasChangeTrackingStrategy(changeTrackingStrategy: ChangeTrackingStrategy): OwnedNavigationBuilder;
|
|
2191
2219
|
HasData(...data: unknown[]): DataBuilder;
|
|
2192
|
-
HasData(data:
|
|
2220
|
+
HasData(data: IEnumerable_1<unknown>): DataBuilder;
|
|
2193
2221
|
HasIndex(...propertyNames: string[]): IndexBuilder;
|
|
2194
2222
|
HasIndex(propertyNames: string[], name: string): IndexBuilder;
|
|
2195
2223
|
HasKey(...propertyNames: string[]): KeyBuilder;
|
|
@@ -2204,22 +2232,22 @@ export interface OwnedNavigationBuilder$instance {
|
|
|
2204
2232
|
OwnsMany(ownedTypeName: string, navigationName: string): OwnedNavigationBuilder;
|
|
2205
2233
|
OwnsMany(ownedTypeName: string, ownedType: Type, navigationName: string): OwnedNavigationBuilder;
|
|
2206
2234
|
OwnsMany(ownedType: Type, navigationName: string): OwnedNavigationBuilder;
|
|
2207
|
-
OwnsMany(ownedTypeName: string, navigationName: string, buildAction:
|
|
2208
|
-
OwnsMany(ownedTypeName: string, ownedType: Type, navigationName: string, buildAction:
|
|
2209
|
-
OwnsMany(ownedType: Type, navigationName: string, buildAction:
|
|
2235
|
+
OwnsMany(ownedTypeName: string, navigationName: string, buildAction: Action_1<OwnedNavigationBuilder>): OwnedNavigationBuilder;
|
|
2236
|
+
OwnsMany(ownedTypeName: string, ownedType: Type, navigationName: string, buildAction: Action_1<OwnedNavigationBuilder>): OwnedNavigationBuilder;
|
|
2237
|
+
OwnsMany(ownedType: Type, navigationName: string, buildAction: Action_1<OwnedNavigationBuilder>): OwnedNavigationBuilder;
|
|
2210
2238
|
OwnsOne(ownedTypeName: string, navigationName: string): OwnedNavigationBuilder;
|
|
2211
2239
|
OwnsOne(ownedTypeName: string, ownedType: Type, navigationName: string): OwnedNavigationBuilder;
|
|
2212
2240
|
OwnsOne(ownedType: Type, navigationName: string): OwnedNavigationBuilder;
|
|
2213
|
-
OwnsOne(ownedTypeName: string, navigationName: string, buildAction:
|
|
2214
|
-
OwnsOne(ownedTypeName: string, ownedType: Type, navigationName: string, buildAction:
|
|
2215
|
-
OwnsOne(ownedType: Type, navigationName: string, buildAction:
|
|
2241
|
+
OwnsOne(ownedTypeName: string, navigationName: string, buildAction: Action_1<OwnedNavigationBuilder>): OwnedNavigationBuilder;
|
|
2242
|
+
OwnsOne(ownedTypeName: string, ownedType: Type, navigationName: string, buildAction: Action_1<OwnedNavigationBuilder>): OwnedNavigationBuilder;
|
|
2243
|
+
OwnsOne(ownedType: Type, navigationName: string, buildAction: Action_1<OwnedNavigationBuilder>): OwnedNavigationBuilder;
|
|
2216
2244
|
PrimitiveCollection(propertyName: string): PrimitiveCollectionBuilder;
|
|
2217
2245
|
PrimitiveCollection<TProperty>(propertyName: string): PrimitiveCollectionBuilder_1<TProperty>;
|
|
2218
2246
|
PrimitiveCollection(propertyType: Type, propertyName: string): PrimitiveCollectionBuilder;
|
|
2219
2247
|
Property(propertyName: string): PropertyBuilder;
|
|
2220
2248
|
Property<TProperty>(propertyName: string): PropertyBuilder_1<TProperty>;
|
|
2221
2249
|
Property(propertyType: Type, propertyName: string): PropertyBuilder;
|
|
2222
|
-
UpdateBuilder<T>(configure:
|
|
2250
|
+
UpdateBuilder<T>(configure: Func_1<T>): T;
|
|
2223
2251
|
UsePropertyAccessMode(propertyAccessMode: PropertyAccessMode): OwnedNavigationBuilder;
|
|
2224
2252
|
WithOwner(ownerReference?: string): OwnershipBuilder;
|
|
2225
2253
|
}
|
|
@@ -2234,21 +2262,21 @@ export interface __OwnedNavigationBuilder$views {
|
|
|
2234
2262
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionEntityTypeBuilder>;
|
|
2235
2263
|
}
|
|
2236
2264
|
|
|
2237
|
-
export interface OwnedNavigationBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionEntityTypeBuilder> {}
|
|
2238
|
-
|
|
2239
2265
|
export type OwnedNavigationBuilder = OwnedNavigationBuilder$instance & __OwnedNavigationBuilder$views;
|
|
2240
2266
|
|
|
2241
2267
|
|
|
2242
|
-
export interface OwnedNavigationBuilder_2$instance<TOwnerEntity, TDependentEntity> extends OwnedNavigationBuilder$instance {
|
|
2268
|
+
export interface OwnedNavigationBuilder_2$instance<TOwnerEntity, TDependentEntity> extends OwnedNavigationBuilder$instance, Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionEntityTypeBuilder> {
|
|
2269
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_OwnedNavigationBuilder_2: never;
|
|
2270
|
+
|
|
2243
2271
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
2244
2272
|
|
|
2245
2273
|
HasAnnotation(annotation: string, value: unknown): OwnedNavigationBuilder;
|
|
2246
2274
|
HasChangeTrackingStrategy(changeTrackingStrategy: ChangeTrackingStrategy): OwnedNavigationBuilder;
|
|
2247
2275
|
HasData(...data: TDependentEntity[]): DataBuilder_1<TDependentEntity>;
|
|
2248
2276
|
HasData(...data: unknown[]): DataBuilder_1<TDependentEntity>;
|
|
2249
|
-
HasData(data:
|
|
2277
|
+
HasData(data: IEnumerable_1<unknown>): DataBuilder_1<TDependentEntity>;
|
|
2250
2278
|
HasData(...data: unknown[]): DataBuilder;
|
|
2251
|
-
HasData(data:
|
|
2279
|
+
HasData(data: IEnumerable_1<unknown>): DataBuilder;
|
|
2252
2280
|
HasIndex(...propertyNames: string[]): IndexBuilder_1<TDependentEntity>;
|
|
2253
2281
|
HasIndex(propertyNames: string[], name: string): IndexBuilder_1<TDependentEntity>;
|
|
2254
2282
|
HasIndex(...propertyNames: string[]): IndexBuilder;
|
|
@@ -2264,28 +2292,28 @@ export interface OwnedNavigationBuilder_2$instance<TOwnerEntity, TDependentEntit
|
|
|
2264
2292
|
Navigation(navigationName: string): NavigationBuilder;
|
|
2265
2293
|
OwnsMany<TNewDependentEntity>(navigationName: string): OwnedNavigationBuilder_2<TDependentEntity, TNewDependentEntity>;
|
|
2266
2294
|
OwnsMany<TNewDependentEntity>(ownedTypeName: string, navigationName: string): OwnedNavigationBuilder_2<TDependentEntity, TNewDependentEntity>;
|
|
2267
|
-
OwnsMany<TNewDependentEntity>(ownedTypeName: string, navigationExpression:
|
|
2268
|
-
OwnsMany<TNewDependentEntity>(navigationName: string, buildAction:
|
|
2269
|
-
OwnsMany(ownedType: Type, navigationName: string, buildAction:
|
|
2270
|
-
OwnsMany<TNewDependentEntity>(ownedTypeName: string, navigationName: string, buildAction:
|
|
2295
|
+
OwnsMany<TNewDependentEntity>(ownedTypeName: string, navigationExpression: Expression_1<Func_2<TDependentEntity, IEnumerable_1<TNewDependentEntity>>>): OwnedNavigationBuilder_2<TDependentEntity, TNewDependentEntity>;
|
|
2296
|
+
OwnsMany<TNewDependentEntity>(navigationName: string, buildAction: Action_1<OwnedNavigationBuilder_2<TDependentEntity, TNewDependentEntity>>): OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>;
|
|
2297
|
+
OwnsMany(ownedType: Type, navigationName: string, buildAction: Action_1<OwnedNavigationBuilder>): OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>;
|
|
2298
|
+
OwnsMany<TNewDependentEntity>(ownedTypeName: string, navigationName: string, buildAction: Action_1<OwnedNavigationBuilder_2<TDependentEntity, TNewDependentEntity>>): OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>;
|
|
2271
2299
|
OwnsMany(ownedTypeName: string, navigationName: string): OwnedNavigationBuilder;
|
|
2272
2300
|
OwnsMany(ownedTypeName: string, ownedType: Type, navigationName: string): OwnedNavigationBuilder;
|
|
2273
2301
|
OwnsMany(ownedType: Type, navigationName: string): OwnedNavigationBuilder;
|
|
2274
|
-
OwnsMany(ownedTypeName: string, navigationName: string, buildAction:
|
|
2275
|
-
OwnsMany(ownedTypeName: string, ownedType: Type, navigationName: string, buildAction:
|
|
2276
|
-
OwnsMany(ownedType: Type, navigationName: string, buildAction:
|
|
2302
|
+
OwnsMany(ownedTypeName: string, navigationName: string, buildAction: Action_1<OwnedNavigationBuilder>): OwnedNavigationBuilder;
|
|
2303
|
+
OwnsMany(ownedTypeName: string, ownedType: Type, navigationName: string, buildAction: Action_1<OwnedNavigationBuilder>): OwnedNavigationBuilder;
|
|
2304
|
+
OwnsMany(ownedType: Type, navigationName: string, buildAction: Action_1<OwnedNavigationBuilder>): OwnedNavigationBuilder;
|
|
2277
2305
|
OwnsOne<TNewDependentEntity>(navigationName: string): OwnedNavigationBuilder_2<TDependentEntity, TNewDependentEntity>;
|
|
2278
2306
|
OwnsOne<TNewDependentEntity>(ownedTypeName: string, navigationName: string): OwnedNavigationBuilder_2<TDependentEntity, TNewDependentEntity>;
|
|
2279
|
-
OwnsOne<TNewDependentEntity>(ownedTypeName: string, navigationExpression:
|
|
2280
|
-
OwnsOne<TNewDependentEntity>(navigationName: string, buildAction:
|
|
2281
|
-
OwnsOne(ownedType: Type, navigationName: string, buildAction:
|
|
2282
|
-
OwnsOne<TNewDependentEntity>(ownedTypeName: string, navigationName: string, buildAction:
|
|
2307
|
+
OwnsOne<TNewDependentEntity>(ownedTypeName: string, navigationExpression: Expression_1<Func_2<TDependentEntity, TNewDependentEntity>>): OwnedNavigationBuilder_2<TDependentEntity, TNewDependentEntity>;
|
|
2308
|
+
OwnsOne<TNewDependentEntity>(navigationName: string, buildAction: Action_1<OwnedNavigationBuilder_2<TDependentEntity, TNewDependentEntity>>): OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>;
|
|
2309
|
+
OwnsOne(ownedType: Type, navigationName: string, buildAction: Action_1<OwnedNavigationBuilder>): OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>;
|
|
2310
|
+
OwnsOne<TNewDependentEntity>(ownedTypeName: string, navigationName: string, buildAction: Action_1<OwnedNavigationBuilder_2<TDependentEntity, TNewDependentEntity>>): OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>;
|
|
2283
2311
|
OwnsOne(ownedTypeName: string, navigationName: string): OwnedNavigationBuilder;
|
|
2284
2312
|
OwnsOne(ownedTypeName: string, ownedType: Type, navigationName: string): OwnedNavigationBuilder;
|
|
2285
2313
|
OwnsOne(ownedType: Type, navigationName: string): OwnedNavigationBuilder;
|
|
2286
|
-
OwnsOne(ownedTypeName: string, navigationName: string, buildAction:
|
|
2287
|
-
OwnsOne(ownedTypeName: string, ownedType: Type, navigationName: string, buildAction:
|
|
2288
|
-
OwnsOne(ownedType: Type, navigationName: string, buildAction:
|
|
2314
|
+
OwnsOne(ownedTypeName: string, navigationName: string, buildAction: Action_1<OwnedNavigationBuilder>): OwnedNavigationBuilder;
|
|
2315
|
+
OwnsOne(ownedTypeName: string, ownedType: Type, navigationName: string, buildAction: Action_1<OwnedNavigationBuilder>): OwnedNavigationBuilder;
|
|
2316
|
+
OwnsOne(ownedType: Type, navigationName: string, buildAction: Action_1<OwnedNavigationBuilder>): OwnedNavigationBuilder;
|
|
2289
2317
|
PrimitiveCollection(propertyName: string): PrimitiveCollectionBuilder;
|
|
2290
2318
|
PrimitiveCollection<TProperty>(propertyName: string): PrimitiveCollectionBuilder_1<TProperty>;
|
|
2291
2319
|
PrimitiveCollection(propertyType: Type, propertyName: string): PrimitiveCollectionBuilder;
|
|
@@ -2307,12 +2335,12 @@ export interface __OwnedNavigationBuilder_2$views<TOwnerEntity, TDependentEntity
|
|
|
2307
2335
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionEntityTypeBuilder>;
|
|
2308
2336
|
}
|
|
2309
2337
|
|
|
2310
|
-
export interface OwnedNavigationBuilder_2$instance<TOwnerEntity, TDependentEntity> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionEntityTypeBuilder> {}
|
|
2311
|
-
|
|
2312
2338
|
export type OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity> = OwnedNavigationBuilder_2$instance<TOwnerEntity, TDependentEntity> & __OwnedNavigationBuilder_2$views<TOwnerEntity, TDependentEntity>;
|
|
2313
2339
|
|
|
2314
2340
|
|
|
2315
2341
|
export interface OwnedNavigationSplitTableBuilder$instance {
|
|
2342
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_OwnedNavigationSplitTableBuilder: never;
|
|
2343
|
+
|
|
2316
2344
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
2317
2345
|
|
|
2318
2346
|
readonly InternalMappingFragment: EntityTypeMappingFragment;
|
|
@@ -2340,12 +2368,12 @@ export interface __OwnedNavigationSplitTableBuilder$views {
|
|
|
2340
2368
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<OwnedNavigationBuilder>;
|
|
2341
2369
|
}
|
|
2342
2370
|
|
|
2343
|
-
export interface OwnedNavigationSplitTableBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<OwnedNavigationBuilder> {}
|
|
2344
|
-
|
|
2345
2371
|
export type OwnedNavigationSplitTableBuilder = OwnedNavigationSplitTableBuilder$instance & __OwnedNavigationSplitTableBuilder$views;
|
|
2346
2372
|
|
|
2347
2373
|
|
|
2348
|
-
export interface OwnedNavigationSplitTableBuilder_2$instance<TOwnerEntity, TDependentEntity> extends OwnedNavigationSplitTableBuilder$instance {
|
|
2374
|
+
export interface OwnedNavigationSplitTableBuilder_2$instance<TOwnerEntity, TDependentEntity> extends OwnedNavigationSplitTableBuilder$instance, Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<OwnedNavigationBuilder> {
|
|
2375
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_OwnedNavigationSplitTableBuilder_2: never;
|
|
2376
|
+
|
|
2349
2377
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
2350
2378
|
|
|
2351
2379
|
ExcludeFromMigrations(excluded?: boolean): OwnedNavigationSplitTableBuilder;
|
|
@@ -2364,12 +2392,12 @@ export interface __OwnedNavigationSplitTableBuilder_2$views<TOwnerEntity, TDepen
|
|
|
2364
2392
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<OwnedNavigationBuilder>;
|
|
2365
2393
|
}
|
|
2366
2394
|
|
|
2367
|
-
export interface OwnedNavigationSplitTableBuilder_2$instance<TOwnerEntity, TDependentEntity> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<OwnedNavigationBuilder> {}
|
|
2368
|
-
|
|
2369
2395
|
export type OwnedNavigationSplitTableBuilder_2<TOwnerEntity, TDependentEntity> = OwnedNavigationSplitTableBuilder_2$instance<TOwnerEntity, TDependentEntity> & __OwnedNavigationSplitTableBuilder_2$views<TOwnerEntity, TDependentEntity>;
|
|
2370
2396
|
|
|
2371
2397
|
|
|
2372
2398
|
export interface OwnedNavigationSplitViewBuilder$instance {
|
|
2399
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_OwnedNavigationSplitViewBuilder: never;
|
|
2400
|
+
|
|
2373
2401
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
2374
2402
|
|
|
2375
2403
|
readonly MappingFragment: IMutableEntityTypeMappingFragment;
|
|
@@ -2393,12 +2421,12 @@ export interface __OwnedNavigationSplitViewBuilder$views {
|
|
|
2393
2421
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<OwnedNavigationBuilder>;
|
|
2394
2422
|
}
|
|
2395
2423
|
|
|
2396
|
-
export interface OwnedNavigationSplitViewBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<OwnedNavigationBuilder> {}
|
|
2397
|
-
|
|
2398
2424
|
export type OwnedNavigationSplitViewBuilder = OwnedNavigationSplitViewBuilder$instance & __OwnedNavigationSplitViewBuilder$views;
|
|
2399
2425
|
|
|
2400
2426
|
|
|
2401
|
-
export interface OwnedNavigationSplitViewBuilder_2$instance<TOwnerEntity, TDependentEntity> extends OwnedNavigationSplitViewBuilder$instance {
|
|
2427
|
+
export interface OwnedNavigationSplitViewBuilder_2$instance<TOwnerEntity, TDependentEntity> extends OwnedNavigationSplitViewBuilder$instance, Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<OwnedNavigationBuilder> {
|
|
2428
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_OwnedNavigationSplitViewBuilder_2: never;
|
|
2429
|
+
|
|
2402
2430
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
2403
2431
|
|
|
2404
2432
|
HasAnnotation(annotation: string, value: unknown): OwnedNavigationSplitViewBuilder;
|
|
@@ -2416,29 +2444,29 @@ export interface __OwnedNavigationSplitViewBuilder_2$views<TOwnerEntity, TDepend
|
|
|
2416
2444
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<OwnedNavigationBuilder>;
|
|
2417
2445
|
}
|
|
2418
2446
|
|
|
2419
|
-
export interface OwnedNavigationSplitViewBuilder_2$instance<TOwnerEntity, TDependentEntity> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<OwnedNavigationBuilder> {}
|
|
2420
|
-
|
|
2421
2447
|
export type OwnedNavigationSplitViewBuilder_2<TOwnerEntity, TDependentEntity> = OwnedNavigationSplitViewBuilder_2$instance<TOwnerEntity, TDependentEntity> & __OwnedNavigationSplitViewBuilder_2$views<TOwnerEntity, TDependentEntity>;
|
|
2422
2448
|
|
|
2423
2449
|
|
|
2424
2450
|
export interface OwnedNavigationStoredProcedureBuilder$instance {
|
|
2451
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_OwnedNavigationStoredProcedureBuilder: never;
|
|
2452
|
+
|
|
2425
2453
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
2426
2454
|
|
|
2427
2455
|
readonly Builder: InternalStoredProcedureBuilder;
|
|
2428
2456
|
readonly Metadata: IMutableStoredProcedure;
|
|
2429
2457
|
CreatePropertyBuilder(propertyName: string): PropertyBuilder;
|
|
2430
|
-
CreatePropertyBuilder<TDependentEntity, TProperty>(propertyExpression:
|
|
2458
|
+
CreatePropertyBuilder<TDependentEntity, TProperty>(propertyExpression: Expression_1<Func_2<TDependentEntity, TProperty>>): PropertyBuilder;
|
|
2431
2459
|
HasAnnotation(annotation: string, value: unknown): OwnedNavigationStoredProcedureBuilder;
|
|
2432
2460
|
HasOriginalValueParameter(propertyName: string): OwnedNavigationStoredProcedureBuilder;
|
|
2433
|
-
HasOriginalValueParameter(propertyName: string, buildAction:
|
|
2461
|
+
HasOriginalValueParameter(propertyName: string, buildAction: Action_1<StoredProcedureParameterBuilder>): OwnedNavigationStoredProcedureBuilder;
|
|
2434
2462
|
HasParameter(propertyName: string): OwnedNavigationStoredProcedureBuilder;
|
|
2435
|
-
HasParameter(propertyName: string, buildAction:
|
|
2463
|
+
HasParameter(propertyName: string, buildAction: Action_1<StoredProcedureParameterBuilder>): OwnedNavigationStoredProcedureBuilder;
|
|
2436
2464
|
HasResultColumn(propertyName: string): OwnedNavigationStoredProcedureBuilder;
|
|
2437
|
-
HasResultColumn(propertyName: string, buildAction:
|
|
2465
|
+
HasResultColumn(propertyName: string, buildAction: Action_1<StoredProcedureResultColumnBuilder>): OwnedNavigationStoredProcedureBuilder;
|
|
2438
2466
|
HasRowsAffectedParameter(): OwnedNavigationStoredProcedureBuilder;
|
|
2439
|
-
HasRowsAffectedParameter(buildAction:
|
|
2467
|
+
HasRowsAffectedParameter(buildAction: Action_1<StoredProcedureParameterBuilder>): OwnedNavigationStoredProcedureBuilder;
|
|
2440
2468
|
HasRowsAffectedResultColumn(): OwnedNavigationStoredProcedureBuilder;
|
|
2441
|
-
HasRowsAffectedResultColumn(buildAction:
|
|
2469
|
+
HasRowsAffectedResultColumn(buildAction: Action_1<StoredProcedureResultColumnBuilder>): OwnedNavigationStoredProcedureBuilder;
|
|
2442
2470
|
HasRowsAffectedReturnValue(rowsAffectedReturned?: boolean): OwnedNavigationStoredProcedureBuilder;
|
|
2443
2471
|
}
|
|
2444
2472
|
|
|
@@ -2452,25 +2480,25 @@ export interface __OwnedNavigationStoredProcedureBuilder$views {
|
|
|
2452
2480
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<OwnedNavigationBuilder>;
|
|
2453
2481
|
}
|
|
2454
2482
|
|
|
2455
|
-
export interface OwnedNavigationStoredProcedureBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<OwnedNavigationBuilder> {}
|
|
2456
|
-
|
|
2457
2483
|
export type OwnedNavigationStoredProcedureBuilder = OwnedNavigationStoredProcedureBuilder$instance & __OwnedNavigationStoredProcedureBuilder$views;
|
|
2458
2484
|
|
|
2459
2485
|
|
|
2460
|
-
export interface OwnedNavigationStoredProcedureBuilder_2$instance<TOwnerEntity, TDependentEntity> extends OwnedNavigationStoredProcedureBuilder$instance {
|
|
2486
|
+
export interface OwnedNavigationStoredProcedureBuilder_2$instance<TOwnerEntity, TDependentEntity> extends OwnedNavigationStoredProcedureBuilder$instance, Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<OwnedNavigationBuilder> {
|
|
2487
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_OwnedNavigationStoredProcedureBuilder_2: never;
|
|
2488
|
+
|
|
2461
2489
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
2462
2490
|
|
|
2463
2491
|
HasAnnotation(annotation: string, value: unknown): OwnedNavigationStoredProcedureBuilder;
|
|
2464
2492
|
HasOriginalValueParameter(propertyName: string): OwnedNavigationStoredProcedureBuilder;
|
|
2465
|
-
HasOriginalValueParameter(propertyName: string, buildAction:
|
|
2493
|
+
HasOriginalValueParameter(propertyName: string, buildAction: Action_1<StoredProcedureParameterBuilder>): OwnedNavigationStoredProcedureBuilder;
|
|
2466
2494
|
HasParameter(propertyName: string): OwnedNavigationStoredProcedureBuilder;
|
|
2467
|
-
HasParameter(propertyName: string, buildAction:
|
|
2495
|
+
HasParameter(propertyName: string, buildAction: Action_1<StoredProcedureParameterBuilder>): OwnedNavigationStoredProcedureBuilder;
|
|
2468
2496
|
HasResultColumn(propertyName: string): OwnedNavigationStoredProcedureBuilder;
|
|
2469
|
-
HasResultColumn(propertyName: string, buildAction:
|
|
2497
|
+
HasResultColumn(propertyName: string, buildAction: Action_1<StoredProcedureResultColumnBuilder>): OwnedNavigationStoredProcedureBuilder;
|
|
2470
2498
|
HasRowsAffectedParameter(): OwnedNavigationStoredProcedureBuilder;
|
|
2471
|
-
HasRowsAffectedParameter(buildAction:
|
|
2499
|
+
HasRowsAffectedParameter(buildAction: Action_1<StoredProcedureParameterBuilder>): OwnedNavigationStoredProcedureBuilder;
|
|
2472
2500
|
HasRowsAffectedResultColumn(): OwnedNavigationStoredProcedureBuilder;
|
|
2473
|
-
HasRowsAffectedResultColumn(buildAction:
|
|
2501
|
+
HasRowsAffectedResultColumn(buildAction: Action_1<StoredProcedureResultColumnBuilder>): OwnedNavigationStoredProcedureBuilder;
|
|
2474
2502
|
HasRowsAffectedReturnValue(rowsAffectedReturned?: boolean): OwnedNavigationStoredProcedureBuilder;
|
|
2475
2503
|
}
|
|
2476
2504
|
|
|
@@ -2484,18 +2512,18 @@ export interface __OwnedNavigationStoredProcedureBuilder_2$views<TOwnerEntity, T
|
|
|
2484
2512
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<OwnedNavigationBuilder>;
|
|
2485
2513
|
}
|
|
2486
2514
|
|
|
2487
|
-
export interface OwnedNavigationStoredProcedureBuilder_2$instance<TOwnerEntity, TDependentEntity> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<OwnedNavigationBuilder> {}
|
|
2488
|
-
|
|
2489
2515
|
export type OwnedNavigationStoredProcedureBuilder_2<TOwnerEntity, TDependentEntity> = OwnedNavigationStoredProcedureBuilder_2$instance<TOwnerEntity, TDependentEntity> & __OwnedNavigationStoredProcedureBuilder_2$views<TOwnerEntity, TDependentEntity>;
|
|
2490
2516
|
|
|
2491
2517
|
|
|
2492
2518
|
export interface OwnedNavigationTableBuilder$instance {
|
|
2519
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_OwnedNavigationTableBuilder: never;
|
|
2520
|
+
|
|
2493
2521
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
2494
2522
|
|
|
2495
2523
|
readonly Metadata: IMutableEntityType;
|
|
2496
2524
|
readonly Name: string | undefined;
|
|
2497
2525
|
readonly Schema: string | undefined;
|
|
2498
|
-
readonly StoreObject:
|
|
2526
|
+
readonly StoreObject: Nullable_1<StoreObjectIdentifier>;
|
|
2499
2527
|
Equals(obj: unknown): boolean;
|
|
2500
2528
|
ExcludeFromMigrations(excluded?: boolean): OwnedNavigationTableBuilder;
|
|
2501
2529
|
GetHashCode(): int;
|
|
@@ -2510,7 +2538,7 @@ export interface OwnedNavigationTableBuilder$instance {
|
|
|
2510
2538
|
|
|
2511
2539
|
|
|
2512
2540
|
export const OwnedNavigationTableBuilder: {
|
|
2513
|
-
new(storeObject:
|
|
2541
|
+
new(storeObject: Nullable_1<StoreObjectIdentifier>, ownedNavigationBuilder: OwnedNavigationBuilder): OwnedNavigationTableBuilder;
|
|
2514
2542
|
};
|
|
2515
2543
|
|
|
2516
2544
|
|
|
@@ -2518,12 +2546,12 @@ export interface __OwnedNavigationTableBuilder$views {
|
|
|
2518
2546
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<OwnedNavigationBuilder>;
|
|
2519
2547
|
}
|
|
2520
2548
|
|
|
2521
|
-
export interface OwnedNavigationTableBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<OwnedNavigationBuilder> {}
|
|
2522
|
-
|
|
2523
2549
|
export type OwnedNavigationTableBuilder = OwnedNavigationTableBuilder$instance & __OwnedNavigationTableBuilder$views;
|
|
2524
2550
|
|
|
2525
2551
|
|
|
2526
|
-
export interface OwnedNavigationTableBuilder_2$instance<TOwnerEntity, TDependentEntity> extends OwnedNavigationTableBuilder$instance {
|
|
2552
|
+
export interface OwnedNavigationTableBuilder_2$instance<TOwnerEntity, TDependentEntity> extends OwnedNavigationTableBuilder$instance, Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<OwnedNavigationBuilder> {
|
|
2553
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_OwnedNavigationTableBuilder_2: never;
|
|
2554
|
+
|
|
2527
2555
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
2528
2556
|
|
|
2529
2557
|
ExcludeFromMigrations(excluded?: boolean): OwnedNavigationTableBuilder;
|
|
@@ -2534,7 +2562,7 @@ export interface OwnedNavigationTableBuilder_2$instance<TOwnerEntity, TDependent
|
|
|
2534
2562
|
|
|
2535
2563
|
|
|
2536
2564
|
export const OwnedNavigationTableBuilder_2: {
|
|
2537
|
-
new<TOwnerEntity, TDependentEntity>(storeObject:
|
|
2565
|
+
new<TOwnerEntity, TDependentEntity>(storeObject: Nullable_1<StoreObjectIdentifier>, ownedNavigationBuilder: OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>): OwnedNavigationTableBuilder_2<TOwnerEntity, TDependentEntity>;
|
|
2538
2566
|
};
|
|
2539
2567
|
|
|
2540
2568
|
|
|
@@ -2542,18 +2570,18 @@ export interface __OwnedNavigationTableBuilder_2$views<TOwnerEntity, TDependentE
|
|
|
2542
2570
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<OwnedNavigationBuilder>;
|
|
2543
2571
|
}
|
|
2544
2572
|
|
|
2545
|
-
export interface OwnedNavigationTableBuilder_2$instance<TOwnerEntity, TDependentEntity> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<OwnedNavigationBuilder> {}
|
|
2546
|
-
|
|
2547
2573
|
export type OwnedNavigationTableBuilder_2<TOwnerEntity, TDependentEntity> = OwnedNavigationTableBuilder_2$instance<TOwnerEntity, TDependentEntity> & __OwnedNavigationTableBuilder_2$views<TOwnerEntity, TDependentEntity>;
|
|
2548
2574
|
|
|
2549
2575
|
|
|
2550
2576
|
export interface OwnedNavigationTableValuedFunctionBuilder$instance extends DbFunctionBuilderBase$instance {
|
|
2577
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_OwnedNavigationTableValuedFunctionBuilder: never;
|
|
2578
|
+
|
|
2551
2579
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
2552
2580
|
|
|
2553
2581
|
HasAnnotation(annotation: string, value: unknown): OwnedNavigationTableValuedFunctionBuilder;
|
|
2554
2582
|
HasName(name: string): DbFunctionBuilderBase;
|
|
2555
2583
|
HasParameter(name: string): DbFunctionParameterBuilder;
|
|
2556
|
-
HasParameter(name: string, buildAction:
|
|
2584
|
+
HasParameter(name: string, buildAction: Action_1<DbFunctionParameterBuilder>): DbFunctionBuilderBase;
|
|
2557
2585
|
HasSchema(schema: string): DbFunctionBuilderBase;
|
|
2558
2586
|
IsBuiltIn(builtIn?: boolean): DbFunctionBuilderBase;
|
|
2559
2587
|
}
|
|
@@ -2568,20 +2596,20 @@ export interface __OwnedNavigationTableValuedFunctionBuilder$views {
|
|
|
2568
2596
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionDbFunctionBuilder>;
|
|
2569
2597
|
}
|
|
2570
2598
|
|
|
2571
|
-
export interface OwnedNavigationTableValuedFunctionBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionDbFunctionBuilder> {}
|
|
2572
|
-
|
|
2573
2599
|
export type OwnedNavigationTableValuedFunctionBuilder = OwnedNavigationTableValuedFunctionBuilder$instance & __OwnedNavigationTableValuedFunctionBuilder$views;
|
|
2574
2600
|
|
|
2575
2601
|
|
|
2576
|
-
export interface OwnedNavigationTableValuedFunctionBuilder_2$instance<TOwnerEntity, TDependentEntity> extends OwnedNavigationTableValuedFunctionBuilder$instance {
|
|
2602
|
+
export interface OwnedNavigationTableValuedFunctionBuilder_2$instance<TOwnerEntity, TDependentEntity> extends OwnedNavigationTableValuedFunctionBuilder$instance, Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionDbFunctionBuilder> {
|
|
2603
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_OwnedNavigationTableValuedFunctionBuilder_2: never;
|
|
2604
|
+
|
|
2577
2605
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
2578
2606
|
|
|
2579
2607
|
HasAnnotation(annotation: string, value: unknown): OwnedNavigationTableValuedFunctionBuilder;
|
|
2580
2608
|
HasName(name: string): OwnedNavigationTableValuedFunctionBuilder;
|
|
2581
2609
|
HasName(name: string): DbFunctionBuilderBase;
|
|
2582
|
-
HasParameter(name: string, buildAction:
|
|
2610
|
+
HasParameter(name: string, buildAction: Action_1<DbFunctionParameterBuilder>): OwnedNavigationTableValuedFunctionBuilder;
|
|
2583
2611
|
HasParameter(name: string): DbFunctionParameterBuilder;
|
|
2584
|
-
HasParameter(name: string, buildAction:
|
|
2612
|
+
HasParameter(name: string, buildAction: Action_1<DbFunctionParameterBuilder>): DbFunctionBuilderBase;
|
|
2585
2613
|
HasSchema(schema: string): OwnedNavigationTableValuedFunctionBuilder;
|
|
2586
2614
|
HasSchema(schema: string): DbFunctionBuilderBase;
|
|
2587
2615
|
IsBuiltIn(builtIn?: boolean): OwnedNavigationTableValuedFunctionBuilder;
|
|
@@ -2598,12 +2626,12 @@ export interface __OwnedNavigationTableValuedFunctionBuilder_2$views<TOwnerEntit
|
|
|
2598
2626
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionDbFunctionBuilder>;
|
|
2599
2627
|
}
|
|
2600
2628
|
|
|
2601
|
-
export interface OwnedNavigationTableValuedFunctionBuilder_2$instance<TOwnerEntity, TDependentEntity> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionDbFunctionBuilder> {}
|
|
2602
|
-
|
|
2603
2629
|
export type OwnedNavigationTableValuedFunctionBuilder_2<TOwnerEntity, TDependentEntity> = OwnedNavigationTableValuedFunctionBuilder_2$instance<TOwnerEntity, TDependentEntity> & __OwnedNavigationTableValuedFunctionBuilder_2$views<TOwnerEntity, TDependentEntity>;
|
|
2604
2630
|
|
|
2605
2631
|
|
|
2606
2632
|
export interface OwnedNavigationViewBuilder$instance {
|
|
2633
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_OwnedNavigationViewBuilder: never;
|
|
2634
|
+
|
|
2607
2635
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
2608
2636
|
|
|
2609
2637
|
readonly Name: string;
|
|
@@ -2626,12 +2654,12 @@ export interface __OwnedNavigationViewBuilder$views {
|
|
|
2626
2654
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<OwnedNavigationBuilder>;
|
|
2627
2655
|
}
|
|
2628
2656
|
|
|
2629
|
-
export interface OwnedNavigationViewBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<OwnedNavigationBuilder> {}
|
|
2630
|
-
|
|
2631
2657
|
export type OwnedNavigationViewBuilder = OwnedNavigationViewBuilder$instance & __OwnedNavigationViewBuilder$views;
|
|
2632
2658
|
|
|
2633
2659
|
|
|
2634
|
-
export interface OwnedNavigationViewBuilder_2$instance<TOwnerEntity, TDependentEntity> extends OwnedNavigationViewBuilder$instance {
|
|
2660
|
+
export interface OwnedNavigationViewBuilder_2$instance<TOwnerEntity, TDependentEntity> extends OwnedNavigationViewBuilder$instance, Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<OwnedNavigationBuilder> {
|
|
2661
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_OwnedNavigationViewBuilder_2: never;
|
|
2662
|
+
|
|
2635
2663
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
2636
2664
|
|
|
2637
2665
|
Property(propertyName: string): ViewColumnBuilder;
|
|
@@ -2648,12 +2676,12 @@ export interface __OwnedNavigationViewBuilder_2$views<TOwnerEntity, TDependentEn
|
|
|
2648
2676
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<OwnedNavigationBuilder>;
|
|
2649
2677
|
}
|
|
2650
2678
|
|
|
2651
|
-
export interface OwnedNavigationViewBuilder_2$instance<TOwnerEntity, TDependentEntity> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<OwnedNavigationBuilder> {}
|
|
2652
|
-
|
|
2653
2679
|
export type OwnedNavigationViewBuilder_2<TOwnerEntity, TDependentEntity> = OwnedNavigationViewBuilder_2$instance<TOwnerEntity, TDependentEntity> & __OwnedNavigationViewBuilder_2$views<TOwnerEntity, TDependentEntity>;
|
|
2654
2680
|
|
|
2655
2681
|
|
|
2656
2682
|
export interface OwnershipBuilder$instance extends RelationshipBuilderBase$instance {
|
|
2683
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_OwnershipBuilder: never;
|
|
2684
|
+
|
|
2657
2685
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
2658
2686
|
|
|
2659
2687
|
HasAnnotation(annotation: string, value: unknown): OwnershipBuilder;
|
|
@@ -2671,12 +2699,12 @@ export interface __OwnershipBuilder$views {
|
|
|
2671
2699
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionForeignKeyBuilder>;
|
|
2672
2700
|
}
|
|
2673
2701
|
|
|
2674
|
-
export interface OwnershipBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionForeignKeyBuilder> {}
|
|
2675
|
-
|
|
2676
2702
|
export type OwnershipBuilder = OwnershipBuilder$instance & __OwnershipBuilder$views;
|
|
2677
2703
|
|
|
2678
2704
|
|
|
2679
|
-
export interface OwnershipBuilder_2$instance<TEntity, TDependentEntity> extends OwnershipBuilder$instance {
|
|
2705
|
+
export interface OwnershipBuilder_2$instance<TEntity, TDependentEntity> extends OwnershipBuilder$instance, Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionForeignKeyBuilder> {
|
|
2706
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_OwnershipBuilder_2: never;
|
|
2707
|
+
|
|
2680
2708
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
2681
2709
|
|
|
2682
2710
|
HasAnnotation(annotation: string, value: unknown): OwnershipBuilder;
|
|
@@ -2696,17 +2724,17 @@ export interface __OwnershipBuilder_2$views<TEntity, TDependentEntity> {
|
|
|
2696
2724
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionForeignKeyBuilder>;
|
|
2697
2725
|
}
|
|
2698
2726
|
|
|
2699
|
-
export interface OwnershipBuilder_2$instance<TEntity, TDependentEntity> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionForeignKeyBuilder> {}
|
|
2700
|
-
|
|
2701
2727
|
export type OwnershipBuilder_2<TEntity, TDependentEntity> = OwnershipBuilder_2$instance<TEntity, TDependentEntity> & __OwnershipBuilder_2$views<TEntity, TDependentEntity>;
|
|
2702
2728
|
|
|
2703
2729
|
|
|
2704
2730
|
export interface PrimitiveCollectionBuilder$instance {
|
|
2731
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_PrimitiveCollectionBuilder: never;
|
|
2732
|
+
|
|
2705
2733
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
2706
2734
|
|
|
2707
2735
|
readonly Metadata: IMutableProperty;
|
|
2708
2736
|
ElementType(): ElementTypeBuilder;
|
|
2709
|
-
ElementType(builderAction:
|
|
2737
|
+
ElementType(builderAction: Action_1<ElementTypeBuilder>): PrimitiveCollectionBuilder;
|
|
2710
2738
|
Equals(obj: unknown): boolean;
|
|
2711
2739
|
GetHashCode(): int;
|
|
2712
2740
|
HasAnnotation(annotation: string, value: unknown): PrimitiveCollectionBuilder;
|
|
@@ -2739,16 +2767,16 @@ export interface __PrimitiveCollectionBuilder$views {
|
|
|
2739
2767
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionPropertyBuilder>;
|
|
2740
2768
|
}
|
|
2741
2769
|
|
|
2742
|
-
export interface PrimitiveCollectionBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionPropertyBuilder> {}
|
|
2743
|
-
|
|
2744
2770
|
export type PrimitiveCollectionBuilder = PrimitiveCollectionBuilder$instance & __PrimitiveCollectionBuilder$views;
|
|
2745
2771
|
|
|
2746
2772
|
|
|
2747
|
-
export interface PrimitiveCollectionBuilder_1$instance<TProperty> extends PrimitiveCollectionBuilder$instance {
|
|
2773
|
+
export interface PrimitiveCollectionBuilder_1$instance<TProperty> extends PrimitiveCollectionBuilder$instance, Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionPropertyBuilder> {
|
|
2774
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_PrimitiveCollectionBuilder_1: never;
|
|
2775
|
+
|
|
2748
2776
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
2749
2777
|
|
|
2750
2778
|
ElementType(): ElementTypeBuilder;
|
|
2751
|
-
ElementType(builderAction:
|
|
2779
|
+
ElementType(builderAction: Action_1<ElementTypeBuilder>): PrimitiveCollectionBuilder;
|
|
2752
2780
|
HasAnnotation(annotation: string, value: unknown): PrimitiveCollectionBuilder;
|
|
2753
2781
|
HasField(fieldName: string): PrimitiveCollectionBuilder;
|
|
2754
2782
|
HasMaxLength(maxLength: int): PrimitiveCollectionBuilder;
|
|
@@ -2779,12 +2807,12 @@ export interface __PrimitiveCollectionBuilder_1$views<TProperty> {
|
|
|
2779
2807
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionPropertyBuilder>;
|
|
2780
2808
|
}
|
|
2781
2809
|
|
|
2782
|
-
export interface PrimitiveCollectionBuilder_1$instance<TProperty> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionPropertyBuilder> {}
|
|
2783
|
-
|
|
2784
2810
|
export type PrimitiveCollectionBuilder_1<TProperty> = PrimitiveCollectionBuilder_1$instance<TProperty> & __PrimitiveCollectionBuilder_1$views<TProperty>;
|
|
2785
2811
|
|
|
2786
2812
|
|
|
2787
2813
|
export interface PropertiesConfigurationBuilder$instance {
|
|
2814
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_PropertiesConfigurationBuilder: never;
|
|
2815
|
+
|
|
2788
2816
|
readonly Configuration: PropertyConfiguration;
|
|
2789
2817
|
AreUnicode(unicode?: boolean): PropertiesConfigurationBuilder;
|
|
2790
2818
|
Equals(obj: unknown): boolean;
|
|
@@ -2810,6 +2838,8 @@ export const PropertiesConfigurationBuilder: {
|
|
|
2810
2838
|
export type PropertiesConfigurationBuilder = PropertiesConfigurationBuilder$instance;
|
|
2811
2839
|
|
|
2812
2840
|
export interface PropertiesConfigurationBuilder_1$instance<TProperty> extends PropertiesConfigurationBuilder {
|
|
2841
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_PropertiesConfigurationBuilder_1: never;
|
|
2842
|
+
|
|
2813
2843
|
AreUnicode(unicode?: boolean): PropertiesConfigurationBuilder_1<TProperty>;
|
|
2814
2844
|
AreUnicode(unicode?: boolean): PropertiesConfigurationBuilder;
|
|
2815
2845
|
HaveAnnotation(annotation: string, value: unknown): PropertiesConfigurationBuilder_1<TProperty>;
|
|
@@ -2838,6 +2868,8 @@ export const PropertiesConfigurationBuilder_1: {
|
|
|
2838
2868
|
export type PropertiesConfigurationBuilder_1<TProperty> = PropertiesConfigurationBuilder_1$instance<TProperty>;
|
|
2839
2869
|
|
|
2840
2870
|
export interface PropertyBuilder$instance {
|
|
2871
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_PropertyBuilder: never;
|
|
2872
|
+
|
|
2841
2873
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
2842
2874
|
|
|
2843
2875
|
readonly Metadata: IMutableProperty;
|
|
@@ -2862,7 +2894,7 @@ export interface PropertyBuilder$instance {
|
|
|
2862
2894
|
HasSentinel(sentinel: unknown): PropertyBuilder;
|
|
2863
2895
|
HasValueGenerator<TGenerator extends ValueGenerator>(): PropertyBuilder;
|
|
2864
2896
|
HasValueGenerator(valueGeneratorType: Type): PropertyBuilder;
|
|
2865
|
-
HasValueGenerator(factory:
|
|
2897
|
+
HasValueGenerator(factory: Func_3<IProperty, ITypeBase, ValueGenerator>): PropertyBuilder;
|
|
2866
2898
|
HasValueGeneratorFactory<TFactory extends ValueGeneratorFactory>(): PropertyBuilder;
|
|
2867
2899
|
HasValueGeneratorFactory(valueGeneratorFactoryType: Type): PropertyBuilder;
|
|
2868
2900
|
IsConcurrencyToken(concurrencyToken?: boolean): PropertyBuilder;
|
|
@@ -2888,12 +2920,12 @@ export interface __PropertyBuilder$views {
|
|
|
2888
2920
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionPropertyBuilder>;
|
|
2889
2921
|
}
|
|
2890
2922
|
|
|
2891
|
-
export interface PropertyBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionPropertyBuilder> {}
|
|
2892
|
-
|
|
2893
2923
|
export type PropertyBuilder = PropertyBuilder$instance & __PropertyBuilder$views;
|
|
2894
2924
|
|
|
2895
2925
|
|
|
2896
|
-
export interface PropertyBuilder_1$instance<TProperty> extends PropertyBuilder$instance {
|
|
2926
|
+
export interface PropertyBuilder_1$instance<TProperty> extends PropertyBuilder$instance, Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionPropertyBuilder> {
|
|
2927
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_PropertyBuilder_1: never;
|
|
2928
|
+
|
|
2897
2929
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
2898
2930
|
|
|
2899
2931
|
HasAnnotation(annotation: string, value: unknown): PropertyBuilder;
|
|
@@ -2926,7 +2958,7 @@ export interface PropertyBuilder_1$instance<TProperty> extends PropertyBuilder$i
|
|
|
2926
2958
|
HasValueGenerator(valueGeneratorType: Type): PropertyBuilder_1<TProperty>;
|
|
2927
2959
|
HasValueGenerator<TGenerator extends ValueGenerator>(): PropertyBuilder;
|
|
2928
2960
|
HasValueGenerator(valueGeneratorType: Type): PropertyBuilder;
|
|
2929
|
-
HasValueGenerator(factory:
|
|
2961
|
+
HasValueGenerator(factory: Func_3<IProperty, ITypeBase, ValueGenerator>): PropertyBuilder;
|
|
2930
2962
|
HasValueGeneratorFactory<TFactory extends ValueGeneratorFactory>(): PropertyBuilder;
|
|
2931
2963
|
HasValueGeneratorFactory(valueGeneratorFactoryType: Type): PropertyBuilder;
|
|
2932
2964
|
IsConcurrencyToken(concurrencyToken?: boolean): PropertyBuilder;
|
|
@@ -2951,21 +2983,21 @@ export interface __PropertyBuilder_1$views<TProperty> {
|
|
|
2951
2983
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionPropertyBuilder>;
|
|
2952
2984
|
}
|
|
2953
2985
|
|
|
2954
|
-
export interface PropertyBuilder_1$instance<TProperty> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionPropertyBuilder> {}
|
|
2955
|
-
|
|
2956
2986
|
export type PropertyBuilder_1<TProperty> = PropertyBuilder_1$instance<TProperty> & __PropertyBuilder_1$views<TProperty>;
|
|
2957
2987
|
|
|
2958
2988
|
|
|
2959
2989
|
export interface ReferenceCollectionBuilder$instance extends RelationshipBuilderBase$instance {
|
|
2990
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_ReferenceCollectionBuilder: never;
|
|
2991
|
+
|
|
2960
2992
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
2961
2993
|
|
|
2962
2994
|
HasAnnotation(annotation: string, value: unknown): ReferenceCollectionBuilder;
|
|
2963
2995
|
HasForeignKey(...foreignKeyPropertyNames: string[]): ReferenceCollectionBuilder;
|
|
2964
|
-
HasForeignKeyBuilder(foreignKeyPropertyNames:
|
|
2965
|
-
HasForeignKeyBuilder(foreignKeyMembers:
|
|
2996
|
+
HasForeignKeyBuilder(foreignKeyPropertyNames: IReadOnlyList_1<System_Internal.String>): InternalForeignKeyBuilder;
|
|
2997
|
+
HasForeignKeyBuilder(foreignKeyMembers: IReadOnlyList_1<MemberInfo>): InternalForeignKeyBuilder;
|
|
2966
2998
|
HasPrincipalKey(...keyPropertyNames: string[]): ReferenceCollectionBuilder;
|
|
2967
|
-
HasPrincipalKeyBuilder(keyPropertyNames:
|
|
2968
|
-
HasPrincipalKeyBuilder(keyMembers:
|
|
2999
|
+
HasPrincipalKeyBuilder(keyPropertyNames: IReadOnlyList_1<System_Internal.String>): InternalForeignKeyBuilder;
|
|
3000
|
+
HasPrincipalKeyBuilder(keyMembers: IReadOnlyList_1<MemberInfo>): InternalForeignKeyBuilder;
|
|
2969
3001
|
IsRequired(required?: boolean): ReferenceCollectionBuilder;
|
|
2970
3002
|
OnDelete(deleteBehavior: DeleteBehavior): ReferenceCollectionBuilder;
|
|
2971
3003
|
}
|
|
@@ -2980,12 +3012,12 @@ export interface __ReferenceCollectionBuilder$views {
|
|
|
2980
3012
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionForeignKeyBuilder>;
|
|
2981
3013
|
}
|
|
2982
3014
|
|
|
2983
|
-
export interface ReferenceCollectionBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionForeignKeyBuilder> {}
|
|
2984
|
-
|
|
2985
3015
|
export type ReferenceCollectionBuilder = ReferenceCollectionBuilder$instance & __ReferenceCollectionBuilder$views;
|
|
2986
3016
|
|
|
2987
3017
|
|
|
2988
|
-
export interface ReferenceCollectionBuilder_2$instance<TPrincipalEntity, TDependentEntity> extends ReferenceCollectionBuilder$instance {
|
|
3018
|
+
export interface ReferenceCollectionBuilder_2$instance<TPrincipalEntity, TDependentEntity> extends ReferenceCollectionBuilder$instance, Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionForeignKeyBuilder> {
|
|
3019
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_ReferenceCollectionBuilder_2: never;
|
|
3020
|
+
|
|
2989
3021
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
2990
3022
|
|
|
2991
3023
|
HasAnnotation(annotation: string, value: unknown): ReferenceCollectionBuilder;
|
|
@@ -3007,12 +3039,12 @@ export interface __ReferenceCollectionBuilder_2$views<TPrincipalEntity, TDepende
|
|
|
3007
3039
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionForeignKeyBuilder>;
|
|
3008
3040
|
}
|
|
3009
3041
|
|
|
3010
|
-
export interface ReferenceCollectionBuilder_2$instance<TPrincipalEntity, TDependentEntity> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionForeignKeyBuilder> {}
|
|
3011
|
-
|
|
3012
3042
|
export type ReferenceCollectionBuilder_2<TPrincipalEntity, TDependentEntity> = ReferenceCollectionBuilder_2$instance<TPrincipalEntity, TDependentEntity> & __ReferenceCollectionBuilder_2$views<TPrincipalEntity, TDependentEntity>;
|
|
3013
3043
|
|
|
3014
3044
|
|
|
3015
3045
|
export interface ReferenceNavigationBuilder$instance {
|
|
3046
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_ReferenceNavigationBuilder: never;
|
|
3047
|
+
|
|
3016
3048
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
3017
3049
|
|
|
3018
3050
|
readonly Builder: InternalForeignKeyBuilder;
|
|
@@ -3042,12 +3074,12 @@ export interface __ReferenceNavigationBuilder$views {
|
|
|
3042
3074
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionForeignKeyBuilder>;
|
|
3043
3075
|
}
|
|
3044
3076
|
|
|
3045
|
-
export interface ReferenceNavigationBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionForeignKeyBuilder> {}
|
|
3046
|
-
|
|
3047
3077
|
export type ReferenceNavigationBuilder = ReferenceNavigationBuilder$instance & __ReferenceNavigationBuilder$views;
|
|
3048
3078
|
|
|
3049
3079
|
|
|
3050
|
-
export interface ReferenceNavigationBuilder_2$instance<TEntity, TRelatedEntity> extends ReferenceNavigationBuilder$instance {
|
|
3080
|
+
export interface ReferenceNavigationBuilder_2$instance<TEntity, TRelatedEntity> extends ReferenceNavigationBuilder$instance, Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionForeignKeyBuilder> {
|
|
3081
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_ReferenceNavigationBuilder_2: never;
|
|
3082
|
+
|
|
3051
3083
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
3052
3084
|
|
|
3053
3085
|
WithMany(navigationName?: string): ReferenceCollectionBuilder_2<TRelatedEntity, TEntity>;
|
|
@@ -3067,23 +3099,23 @@ export interface __ReferenceNavigationBuilder_2$views<TEntity, TRelatedEntity> {
|
|
|
3067
3099
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionForeignKeyBuilder>;
|
|
3068
3100
|
}
|
|
3069
3101
|
|
|
3070
|
-
export interface ReferenceNavigationBuilder_2$instance<TEntity, TRelatedEntity> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionForeignKeyBuilder> {}
|
|
3071
|
-
|
|
3072
3102
|
export type ReferenceNavigationBuilder_2<TEntity, TRelatedEntity> = ReferenceNavigationBuilder_2$instance<TEntity, TRelatedEntity> & __ReferenceNavigationBuilder_2$views<TEntity, TRelatedEntity>;
|
|
3073
3103
|
|
|
3074
3104
|
|
|
3075
3105
|
export interface ReferenceReferenceBuilder$instance extends InvertibleRelationshipBuilderBase$instance {
|
|
3106
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_ReferenceReferenceBuilder: never;
|
|
3107
|
+
|
|
3076
3108
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
3077
3109
|
|
|
3078
3110
|
HasAnnotation(annotation: string, value: unknown): ReferenceReferenceBuilder;
|
|
3079
3111
|
HasForeignKey(dependentEntityTypeName: string, ...foreignKeyPropertyNames: string[]): ReferenceReferenceBuilder;
|
|
3080
3112
|
HasForeignKey(dependentEntityType: Type, ...foreignKeyPropertyNames: string[]): ReferenceReferenceBuilder;
|
|
3081
|
-
HasForeignKeyBuilder(dependentEntityType: EntityType, dependentEntityTypeName: string, foreignKeyPropertyNames:
|
|
3082
|
-
HasForeignKeyBuilder(dependentEntityType: EntityType, dependentEntityTypeName: string, foreignKeyMembers:
|
|
3113
|
+
HasForeignKeyBuilder(dependentEntityType: EntityType, dependentEntityTypeName: string, foreignKeyPropertyNames: IReadOnlyList_1<System_Internal.String>): InternalForeignKeyBuilder;
|
|
3114
|
+
HasForeignKeyBuilder(dependentEntityType: EntityType, dependentEntityTypeName: string, foreignKeyMembers: IReadOnlyList_1<MemberInfo>): InternalForeignKeyBuilder;
|
|
3083
3115
|
HasPrincipalKey(principalEntityTypeName: string, ...keyPropertyNames: string[]): ReferenceReferenceBuilder;
|
|
3084
3116
|
HasPrincipalKey(principalEntityType: Type, ...keyPropertyNames: string[]): ReferenceReferenceBuilder;
|
|
3085
|
-
HasPrincipalKeyBuilder(principalEntityType: EntityType, principalEntityTypeName: string, foreignKeyPropertyNames:
|
|
3086
|
-
HasPrincipalKeyBuilder(principalEntityType: EntityType, principalEntityTypeName: string, foreignKeyMembers:
|
|
3117
|
+
HasPrincipalKeyBuilder(principalEntityType: EntityType, principalEntityTypeName: string, foreignKeyPropertyNames: IReadOnlyList_1<System_Internal.String>): InternalForeignKeyBuilder;
|
|
3118
|
+
HasPrincipalKeyBuilder(principalEntityType: EntityType, principalEntityTypeName: string, foreignKeyMembers: IReadOnlyList_1<MemberInfo>): InternalForeignKeyBuilder;
|
|
3087
3119
|
IsRequired(required?: boolean): ReferenceReferenceBuilder;
|
|
3088
3120
|
OnDelete(deleteBehavior: DeleteBehavior): ReferenceReferenceBuilder;
|
|
3089
3121
|
ResolveEntityType(entityTypeName: string): EntityType | undefined;
|
|
@@ -3100,12 +3132,12 @@ export interface __ReferenceReferenceBuilder$views {
|
|
|
3100
3132
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionForeignKeyBuilder>;
|
|
3101
3133
|
}
|
|
3102
3134
|
|
|
3103
|
-
export interface ReferenceReferenceBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionForeignKeyBuilder> {}
|
|
3104
|
-
|
|
3105
3135
|
export type ReferenceReferenceBuilder = ReferenceReferenceBuilder$instance & __ReferenceReferenceBuilder$views;
|
|
3106
3136
|
|
|
3107
3137
|
|
|
3108
|
-
export interface ReferenceReferenceBuilder_2$instance<TEntity, TRelatedEntity> extends ReferenceReferenceBuilder$instance {
|
|
3138
|
+
export interface ReferenceReferenceBuilder_2$instance<TEntity, TRelatedEntity> extends ReferenceReferenceBuilder$instance, Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionForeignKeyBuilder> {
|
|
3139
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_ReferenceReferenceBuilder_2: never;
|
|
3140
|
+
|
|
3109
3141
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
3110
3142
|
|
|
3111
3143
|
HasAnnotation(annotation: string, value: unknown): ReferenceReferenceBuilder;
|
|
@@ -3131,12 +3163,12 @@ export interface __ReferenceReferenceBuilder_2$views<TEntity, TRelatedEntity> {
|
|
|
3131
3163
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionForeignKeyBuilder>;
|
|
3132
3164
|
}
|
|
3133
3165
|
|
|
3134
|
-
export interface ReferenceReferenceBuilder_2$instance<TEntity, TRelatedEntity> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionForeignKeyBuilder> {}
|
|
3135
|
-
|
|
3136
3166
|
export type ReferenceReferenceBuilder_2<TEntity, TRelatedEntity> = ReferenceReferenceBuilder_2$instance<TEntity, TRelatedEntity> & __ReferenceReferenceBuilder_2$views<TEntity, TRelatedEntity>;
|
|
3137
3167
|
|
|
3138
3168
|
|
|
3139
3169
|
export interface RelationshipBuilderBase$instance {
|
|
3170
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_RelationshipBuilderBase: never;
|
|
3171
|
+
|
|
3140
3172
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
3141
3173
|
|
|
3142
3174
|
Builder: InternalForeignKeyBuilder;
|
|
@@ -3157,12 +3189,12 @@ export interface __RelationshipBuilderBase$views {
|
|
|
3157
3189
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionForeignKeyBuilder>;
|
|
3158
3190
|
}
|
|
3159
3191
|
|
|
3160
|
-
export interface RelationshipBuilderBase$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionForeignKeyBuilder> {}
|
|
3161
|
-
|
|
3162
3192
|
export type RelationshipBuilderBase = RelationshipBuilderBase$instance & __RelationshipBuilderBase$views;
|
|
3163
3193
|
|
|
3164
3194
|
|
|
3165
3195
|
export interface SequenceBuilder$instance {
|
|
3196
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_SequenceBuilder: never;
|
|
3197
|
+
|
|
3166
3198
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
3167
3199
|
|
|
3168
3200
|
readonly Metadata: IMutableSequence;
|
|
@@ -3187,12 +3219,12 @@ export interface __SequenceBuilder$views {
|
|
|
3187
3219
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionSequenceBuilder>;
|
|
3188
3220
|
}
|
|
3189
3221
|
|
|
3190
|
-
export interface SequenceBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionSequenceBuilder> {}
|
|
3191
|
-
|
|
3192
3222
|
export type SequenceBuilder = SequenceBuilder$instance & __SequenceBuilder$views;
|
|
3193
3223
|
|
|
3194
3224
|
|
|
3195
3225
|
export interface SplitTableBuilder$instance {
|
|
3226
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_SplitTableBuilder: never;
|
|
3227
|
+
|
|
3196
3228
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
3197
3229
|
|
|
3198
3230
|
readonly InternalMappingFragment: EntityTypeMappingFragment;
|
|
@@ -3220,12 +3252,12 @@ export interface __SplitTableBuilder$views {
|
|
|
3220
3252
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<EntityTypeBuilder>;
|
|
3221
3253
|
}
|
|
3222
3254
|
|
|
3223
|
-
export interface SplitTableBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<EntityTypeBuilder> {}
|
|
3224
|
-
|
|
3225
3255
|
export type SplitTableBuilder = SplitTableBuilder$instance & __SplitTableBuilder$views;
|
|
3226
3256
|
|
|
3227
3257
|
|
|
3228
|
-
export interface SplitTableBuilder_1$instance<TEntity> extends SplitTableBuilder$instance {
|
|
3258
|
+
export interface SplitTableBuilder_1$instance<TEntity> extends SplitTableBuilder$instance, Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<EntityTypeBuilder> {
|
|
3259
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_SplitTableBuilder_1: never;
|
|
3260
|
+
|
|
3229
3261
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
3230
3262
|
|
|
3231
3263
|
ExcludeFromMigrations(excluded?: boolean): SplitTableBuilder;
|
|
@@ -3244,12 +3276,12 @@ export interface __SplitTableBuilder_1$views<TEntity> {
|
|
|
3244
3276
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<EntityTypeBuilder>;
|
|
3245
3277
|
}
|
|
3246
3278
|
|
|
3247
|
-
export interface SplitTableBuilder_1$instance<TEntity> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<EntityTypeBuilder> {}
|
|
3248
|
-
|
|
3249
3279
|
export type SplitTableBuilder_1<TEntity> = SplitTableBuilder_1$instance<TEntity> & __SplitTableBuilder_1$views<TEntity>;
|
|
3250
3280
|
|
|
3251
3281
|
|
|
3252
3282
|
export interface SplitViewBuilder$instance {
|
|
3283
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_SplitViewBuilder: never;
|
|
3284
|
+
|
|
3253
3285
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
3254
3286
|
|
|
3255
3287
|
readonly MappingFragment: IMutableEntityTypeMappingFragment;
|
|
@@ -3273,12 +3305,12 @@ export interface __SplitViewBuilder$views {
|
|
|
3273
3305
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<EntityTypeBuilder>;
|
|
3274
3306
|
}
|
|
3275
3307
|
|
|
3276
|
-
export interface SplitViewBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<EntityTypeBuilder> {}
|
|
3277
|
-
|
|
3278
3308
|
export type SplitViewBuilder = SplitViewBuilder$instance & __SplitViewBuilder$views;
|
|
3279
3309
|
|
|
3280
3310
|
|
|
3281
|
-
export interface SplitViewBuilder_1$instance<TEntity> extends SplitViewBuilder$instance {
|
|
3311
|
+
export interface SplitViewBuilder_1$instance<TEntity> extends SplitViewBuilder$instance, Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<EntityTypeBuilder> {
|
|
3312
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_SplitViewBuilder_1: never;
|
|
3313
|
+
|
|
3282
3314
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
3283
3315
|
|
|
3284
3316
|
HasAnnotation(annotation: string, value: unknown): SplitViewBuilder;
|
|
@@ -3296,29 +3328,29 @@ export interface __SplitViewBuilder_1$views<TEntity> {
|
|
|
3296
3328
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<EntityTypeBuilder>;
|
|
3297
3329
|
}
|
|
3298
3330
|
|
|
3299
|
-
export interface SplitViewBuilder_1$instance<TEntity> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<EntityTypeBuilder> {}
|
|
3300
|
-
|
|
3301
3331
|
export type SplitViewBuilder_1<TEntity> = SplitViewBuilder_1$instance<TEntity> & __SplitViewBuilder_1$views<TEntity>;
|
|
3302
3332
|
|
|
3303
3333
|
|
|
3304
3334
|
export interface StoredProcedureBuilder$instance {
|
|
3335
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_StoredProcedureBuilder: never;
|
|
3336
|
+
|
|
3305
3337
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
3306
3338
|
|
|
3307
3339
|
readonly Builder: InternalStoredProcedureBuilder;
|
|
3308
3340
|
readonly Metadata: IMutableStoredProcedure;
|
|
3309
3341
|
CreatePropertyBuilder(propertyName: string): PropertyBuilder;
|
|
3310
|
-
CreatePropertyBuilder<TDerivedEntity, TProperty>(propertyExpression:
|
|
3342
|
+
CreatePropertyBuilder<TDerivedEntity, TProperty>(propertyExpression: Expression_1<Func_2<TDerivedEntity, TProperty>>): PropertyBuilder;
|
|
3311
3343
|
HasAnnotation(annotation: string, value: unknown): StoredProcedureBuilder;
|
|
3312
3344
|
HasOriginalValueParameter(propertyName: string): StoredProcedureBuilder;
|
|
3313
|
-
HasOriginalValueParameter(propertyName: string, buildAction:
|
|
3345
|
+
HasOriginalValueParameter(propertyName: string, buildAction: Action_1<StoredProcedureParameterBuilder>): StoredProcedureBuilder;
|
|
3314
3346
|
HasParameter(propertyName: string): StoredProcedureBuilder;
|
|
3315
|
-
HasParameter(propertyName: string, buildAction:
|
|
3347
|
+
HasParameter(propertyName: string, buildAction: Action_1<StoredProcedureParameterBuilder>): StoredProcedureBuilder;
|
|
3316
3348
|
HasResultColumn(propertyName: string): StoredProcedureBuilder;
|
|
3317
|
-
HasResultColumn(propertyName: string, buildAction:
|
|
3349
|
+
HasResultColumn(propertyName: string, buildAction: Action_1<StoredProcedureResultColumnBuilder>): StoredProcedureBuilder;
|
|
3318
3350
|
HasRowsAffectedParameter(): StoredProcedureBuilder;
|
|
3319
|
-
HasRowsAffectedParameter(buildAction:
|
|
3351
|
+
HasRowsAffectedParameter(buildAction: Action_1<StoredProcedureParameterBuilder>): StoredProcedureBuilder;
|
|
3320
3352
|
HasRowsAffectedResultColumn(): StoredProcedureBuilder;
|
|
3321
|
-
HasRowsAffectedResultColumn(buildAction:
|
|
3353
|
+
HasRowsAffectedResultColumn(buildAction: Action_1<StoredProcedureResultColumnBuilder>): StoredProcedureBuilder;
|
|
3322
3354
|
HasRowsAffectedReturnValue(rowsAffectedReturned?: boolean): StoredProcedureBuilder;
|
|
3323
3355
|
}
|
|
3324
3356
|
|
|
@@ -3332,25 +3364,25 @@ export interface __StoredProcedureBuilder$views {
|
|
|
3332
3364
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<EntityTypeBuilder>;
|
|
3333
3365
|
}
|
|
3334
3366
|
|
|
3335
|
-
export interface StoredProcedureBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<EntityTypeBuilder> {}
|
|
3336
|
-
|
|
3337
3367
|
export type StoredProcedureBuilder = StoredProcedureBuilder$instance & __StoredProcedureBuilder$views;
|
|
3338
3368
|
|
|
3339
3369
|
|
|
3340
|
-
export interface StoredProcedureBuilder_1$instance<TEntity> extends StoredProcedureBuilder$instance {
|
|
3370
|
+
export interface StoredProcedureBuilder_1$instance<TEntity> extends StoredProcedureBuilder$instance, Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<EntityTypeBuilder> {
|
|
3371
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_StoredProcedureBuilder_1: never;
|
|
3372
|
+
|
|
3341
3373
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
3342
3374
|
|
|
3343
3375
|
HasAnnotation(annotation: string, value: unknown): StoredProcedureBuilder;
|
|
3344
3376
|
HasOriginalValueParameter(propertyName: string): StoredProcedureBuilder;
|
|
3345
|
-
HasOriginalValueParameter(propertyName: string, buildAction:
|
|
3377
|
+
HasOriginalValueParameter(propertyName: string, buildAction: Action_1<StoredProcedureParameterBuilder>): StoredProcedureBuilder;
|
|
3346
3378
|
HasParameter(propertyName: string): StoredProcedureBuilder;
|
|
3347
|
-
HasParameter(propertyName: string, buildAction:
|
|
3379
|
+
HasParameter(propertyName: string, buildAction: Action_1<StoredProcedureParameterBuilder>): StoredProcedureBuilder;
|
|
3348
3380
|
HasResultColumn(propertyName: string): StoredProcedureBuilder;
|
|
3349
|
-
HasResultColumn(propertyName: string, buildAction:
|
|
3381
|
+
HasResultColumn(propertyName: string, buildAction: Action_1<StoredProcedureResultColumnBuilder>): StoredProcedureBuilder;
|
|
3350
3382
|
HasRowsAffectedParameter(): StoredProcedureBuilder;
|
|
3351
|
-
HasRowsAffectedParameter(buildAction:
|
|
3383
|
+
HasRowsAffectedParameter(buildAction: Action_1<StoredProcedureParameterBuilder>): StoredProcedureBuilder;
|
|
3352
3384
|
HasRowsAffectedResultColumn(): StoredProcedureBuilder;
|
|
3353
|
-
HasRowsAffectedResultColumn(buildAction:
|
|
3385
|
+
HasRowsAffectedResultColumn(buildAction: Action_1<StoredProcedureResultColumnBuilder>): StoredProcedureBuilder;
|
|
3354
3386
|
HasRowsAffectedReturnValue(rowsAffectedReturned?: boolean): StoredProcedureBuilder;
|
|
3355
3387
|
}
|
|
3356
3388
|
|
|
@@ -3364,12 +3396,12 @@ export interface __StoredProcedureBuilder_1$views<TEntity> {
|
|
|
3364
3396
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<EntityTypeBuilder>;
|
|
3365
3397
|
}
|
|
3366
3398
|
|
|
3367
|
-
export interface StoredProcedureBuilder_1$instance<TEntity> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<EntityTypeBuilder> {}
|
|
3368
|
-
|
|
3369
3399
|
export type StoredProcedureBuilder_1<TEntity> = StoredProcedureBuilder_1$instance<TEntity> & __StoredProcedureBuilder_1$views<TEntity>;
|
|
3370
3400
|
|
|
3371
3401
|
|
|
3372
3402
|
export interface StoredProcedureParameterBuilder$instance {
|
|
3403
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_StoredProcedureParameterBuilder: never;
|
|
3404
|
+
|
|
3373
3405
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
3374
3406
|
|
|
3375
3407
|
readonly Builder: InternalStoredProcedureParameterBuilder;
|
|
@@ -3393,12 +3425,12 @@ export interface __StoredProcedureParameterBuilder$views {
|
|
|
3393
3425
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<PropertyBuilder>;
|
|
3394
3426
|
}
|
|
3395
3427
|
|
|
3396
|
-
export interface StoredProcedureParameterBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<PropertyBuilder> {}
|
|
3397
|
-
|
|
3398
3428
|
export type StoredProcedureParameterBuilder = StoredProcedureParameterBuilder$instance & __StoredProcedureParameterBuilder$views;
|
|
3399
3429
|
|
|
3400
3430
|
|
|
3401
3431
|
export interface StoredProcedureResultColumnBuilder$instance {
|
|
3432
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_StoredProcedureResultColumnBuilder: never;
|
|
3433
|
+
|
|
3402
3434
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
3403
3435
|
|
|
3404
3436
|
readonly Builder: InternalStoredProcedureResultColumnBuilder;
|
|
@@ -3420,18 +3452,18 @@ export interface __StoredProcedureResultColumnBuilder$views {
|
|
|
3420
3452
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<PropertyBuilder>;
|
|
3421
3453
|
}
|
|
3422
3454
|
|
|
3423
|
-
export interface StoredProcedureResultColumnBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<PropertyBuilder> {}
|
|
3424
|
-
|
|
3425
3455
|
export type StoredProcedureResultColumnBuilder = StoredProcedureResultColumnBuilder$instance & __StoredProcedureResultColumnBuilder$views;
|
|
3426
3456
|
|
|
3427
3457
|
|
|
3428
3458
|
export interface TableBuilder$instance {
|
|
3459
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_TableBuilder: never;
|
|
3460
|
+
|
|
3429
3461
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
3430
3462
|
|
|
3431
3463
|
readonly Metadata: IMutableEntityType;
|
|
3432
3464
|
readonly Name: string | undefined;
|
|
3433
3465
|
readonly Schema: string | undefined;
|
|
3434
|
-
readonly StoreObject:
|
|
3466
|
+
readonly StoreObject: Nullable_1<StoreObjectIdentifier>;
|
|
3435
3467
|
Equals(obj: unknown): boolean;
|
|
3436
3468
|
ExcludeFromMigrations(excluded?: boolean): TableBuilder;
|
|
3437
3469
|
GetHashCode(): int;
|
|
@@ -3446,7 +3478,7 @@ export interface TableBuilder$instance {
|
|
|
3446
3478
|
|
|
3447
3479
|
|
|
3448
3480
|
export const TableBuilder: {
|
|
3449
|
-
new(storeObject:
|
|
3481
|
+
new(storeObject: Nullable_1<StoreObjectIdentifier>, entityTypeBuilder: EntityTypeBuilder): TableBuilder;
|
|
3450
3482
|
};
|
|
3451
3483
|
|
|
3452
3484
|
|
|
@@ -3454,12 +3486,12 @@ export interface __TableBuilder$views {
|
|
|
3454
3486
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<EntityTypeBuilder>;
|
|
3455
3487
|
}
|
|
3456
3488
|
|
|
3457
|
-
export interface TableBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<EntityTypeBuilder> {}
|
|
3458
|
-
|
|
3459
3489
|
export type TableBuilder = TableBuilder$instance & __TableBuilder$views;
|
|
3460
3490
|
|
|
3461
3491
|
|
|
3462
|
-
export interface TableBuilder_1$instance<TEntity> extends TableBuilder$instance {
|
|
3492
|
+
export interface TableBuilder_1$instance<TEntity> extends TableBuilder$instance, Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<EntityTypeBuilder> {
|
|
3493
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_TableBuilder_1: never;
|
|
3494
|
+
|
|
3463
3495
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
3464
3496
|
|
|
3465
3497
|
ExcludeFromMigrations(excluded?: boolean): TableBuilder;
|
|
@@ -3470,7 +3502,7 @@ export interface TableBuilder_1$instance<TEntity> extends TableBuilder$instance
|
|
|
3470
3502
|
|
|
3471
3503
|
|
|
3472
3504
|
export const TableBuilder_1: {
|
|
3473
|
-
new<TEntity>(storeObject:
|
|
3505
|
+
new<TEntity>(storeObject: Nullable_1<StoreObjectIdentifier>, entityTypeBuilder: EntityTypeBuilder_1<TEntity>): TableBuilder_1<TEntity>;
|
|
3474
3506
|
};
|
|
3475
3507
|
|
|
3476
3508
|
|
|
@@ -3478,12 +3510,12 @@ export interface __TableBuilder_1$views<TEntity> {
|
|
|
3478
3510
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<EntityTypeBuilder>;
|
|
3479
3511
|
}
|
|
3480
3512
|
|
|
3481
|
-
export interface TableBuilder_1$instance<TEntity> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<EntityTypeBuilder> {}
|
|
3482
|
-
|
|
3483
3513
|
export type TableBuilder_1<TEntity> = TableBuilder_1$instance<TEntity> & __TableBuilder_1$views<TEntity>;
|
|
3484
3514
|
|
|
3485
3515
|
|
|
3486
3516
|
export interface TableTriggerBuilder$instance extends TriggerBuilder$instance {
|
|
3517
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_TableTriggerBuilder: never;
|
|
3518
|
+
|
|
3487
3519
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
3488
3520
|
|
|
3489
3521
|
Equals(obj: unknown): boolean;
|
|
@@ -3503,18 +3535,18 @@ export interface __TableTriggerBuilder$views {
|
|
|
3503
3535
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionTriggerBuilder>;
|
|
3504
3536
|
}
|
|
3505
3537
|
|
|
3506
|
-
export interface TableTriggerBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionTriggerBuilder> {}
|
|
3507
|
-
|
|
3508
3538
|
export type TableTriggerBuilder = TableTriggerBuilder$instance & __TableTriggerBuilder$views;
|
|
3509
3539
|
|
|
3510
3540
|
|
|
3511
3541
|
export interface TableValuedFunctionBuilder$instance extends DbFunctionBuilderBase$instance {
|
|
3542
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_TableValuedFunctionBuilder: never;
|
|
3543
|
+
|
|
3512
3544
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
3513
3545
|
|
|
3514
3546
|
HasAnnotation(annotation: string, value: unknown): TableValuedFunctionBuilder;
|
|
3515
3547
|
HasName(name: string): DbFunctionBuilderBase;
|
|
3516
3548
|
HasParameter(name: string): DbFunctionParameterBuilder;
|
|
3517
|
-
HasParameter(name: string, buildAction:
|
|
3549
|
+
HasParameter(name: string, buildAction: Action_1<DbFunctionParameterBuilder>): DbFunctionBuilderBase;
|
|
3518
3550
|
HasSchema(schema: string): DbFunctionBuilderBase;
|
|
3519
3551
|
IsBuiltIn(builtIn?: boolean): DbFunctionBuilderBase;
|
|
3520
3552
|
}
|
|
@@ -3529,20 +3561,20 @@ export interface __TableValuedFunctionBuilder$views {
|
|
|
3529
3561
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionDbFunctionBuilder>;
|
|
3530
3562
|
}
|
|
3531
3563
|
|
|
3532
|
-
export interface TableValuedFunctionBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionDbFunctionBuilder> {}
|
|
3533
|
-
|
|
3534
3564
|
export type TableValuedFunctionBuilder = TableValuedFunctionBuilder$instance & __TableValuedFunctionBuilder$views;
|
|
3535
3565
|
|
|
3536
3566
|
|
|
3537
|
-
export interface TableValuedFunctionBuilder_1$instance<TEntity> extends TableValuedFunctionBuilder$instance {
|
|
3567
|
+
export interface TableValuedFunctionBuilder_1$instance<TEntity> extends TableValuedFunctionBuilder$instance, Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionDbFunctionBuilder> {
|
|
3568
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_TableValuedFunctionBuilder_1: never;
|
|
3569
|
+
|
|
3538
3570
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
3539
3571
|
|
|
3540
3572
|
HasAnnotation(annotation: string, value: unknown): TableValuedFunctionBuilder;
|
|
3541
3573
|
HasName(name: string): TableValuedFunctionBuilder;
|
|
3542
3574
|
HasName(name: string): DbFunctionBuilderBase;
|
|
3543
|
-
HasParameter(name: string, buildAction:
|
|
3575
|
+
HasParameter(name: string, buildAction: Action_1<DbFunctionParameterBuilder>): TableValuedFunctionBuilder;
|
|
3544
3576
|
HasParameter(name: string): DbFunctionParameterBuilder;
|
|
3545
|
-
HasParameter(name: string, buildAction:
|
|
3577
|
+
HasParameter(name: string, buildAction: Action_1<DbFunctionParameterBuilder>): DbFunctionBuilderBase;
|
|
3546
3578
|
HasSchema(schema: string): TableValuedFunctionBuilder;
|
|
3547
3579
|
HasSchema(schema: string): DbFunctionBuilderBase;
|
|
3548
3580
|
IsBuiltIn(builtIn?: boolean): TableValuedFunctionBuilder;
|
|
@@ -3559,12 +3591,12 @@ export interface __TableValuedFunctionBuilder_1$views<TEntity> {
|
|
|
3559
3591
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionDbFunctionBuilder>;
|
|
3560
3592
|
}
|
|
3561
3593
|
|
|
3562
|
-
export interface TableValuedFunctionBuilder_1$instance<TEntity> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionDbFunctionBuilder> {}
|
|
3563
|
-
|
|
3564
3594
|
export type TableValuedFunctionBuilder_1<TEntity> = TableValuedFunctionBuilder_1$instance<TEntity> & __TableValuedFunctionBuilder_1$views<TEntity>;
|
|
3565
3595
|
|
|
3566
3596
|
|
|
3567
3597
|
export interface TriggerBuilder$instance {
|
|
3598
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_TriggerBuilder: never;
|
|
3599
|
+
|
|
3568
3600
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
3569
3601
|
|
|
3570
3602
|
readonly Builder: IConventionTriggerBuilder;
|
|
@@ -3586,12 +3618,12 @@ export interface __TriggerBuilder$views {
|
|
|
3586
3618
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionTriggerBuilder>;
|
|
3587
3619
|
}
|
|
3588
3620
|
|
|
3589
|
-
export interface TriggerBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionTriggerBuilder> {}
|
|
3590
|
-
|
|
3591
3621
|
export type TriggerBuilder = TriggerBuilder$instance & __TriggerBuilder$views;
|
|
3592
3622
|
|
|
3593
3623
|
|
|
3594
3624
|
export interface TypeMappingConfigurationBuilder$instance {
|
|
3625
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_TypeMappingConfigurationBuilder: never;
|
|
3626
|
+
|
|
3595
3627
|
readonly Configuration: PropertyConfiguration;
|
|
3596
3628
|
Equals(obj: unknown): boolean;
|
|
3597
3629
|
GetHashCode(): int;
|
|
@@ -3615,6 +3647,8 @@ export const TypeMappingConfigurationBuilder: {
|
|
|
3615
3647
|
export type TypeMappingConfigurationBuilder = TypeMappingConfigurationBuilder$instance;
|
|
3616
3648
|
|
|
3617
3649
|
export interface TypeMappingConfigurationBuilder_1$instance<TProperty> extends TypeMappingConfigurationBuilder {
|
|
3650
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_TypeMappingConfigurationBuilder_1: never;
|
|
3651
|
+
|
|
3618
3652
|
HasAnnotation(annotation: string, value: unknown): TypeMappingConfigurationBuilder_1<TProperty>;
|
|
3619
3653
|
HasAnnotation(annotation: string, value: unknown): TypeMappingConfigurationBuilder;
|
|
3620
3654
|
HasConversion<TConversion>(): TypeMappingConfigurationBuilder_1<TProperty>;
|
|
@@ -3643,6 +3677,8 @@ export const TypeMappingConfigurationBuilder_1: {
|
|
|
3643
3677
|
export type TypeMappingConfigurationBuilder_1<TProperty> = TypeMappingConfigurationBuilder_1$instance<TProperty>;
|
|
3644
3678
|
|
|
3645
3679
|
export interface ViewBuilder$instance {
|
|
3680
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_ViewBuilder: never;
|
|
3681
|
+
|
|
3646
3682
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
3647
3683
|
|
|
3648
3684
|
readonly Name: string;
|
|
@@ -3665,12 +3701,12 @@ export interface __ViewBuilder$views {
|
|
|
3665
3701
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<EntityTypeBuilder>;
|
|
3666
3702
|
}
|
|
3667
3703
|
|
|
3668
|
-
export interface ViewBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<EntityTypeBuilder> {}
|
|
3669
|
-
|
|
3670
3704
|
export type ViewBuilder = ViewBuilder$instance & __ViewBuilder$views;
|
|
3671
3705
|
|
|
3672
3706
|
|
|
3673
|
-
export interface ViewBuilder_1$instance<TEntity> extends ViewBuilder$instance {
|
|
3707
|
+
export interface ViewBuilder_1$instance<TEntity> extends ViewBuilder$instance, Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<EntityTypeBuilder> {
|
|
3708
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_ViewBuilder_1: never;
|
|
3709
|
+
|
|
3674
3710
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
3675
3711
|
|
|
3676
3712
|
Property(propertyName: string): ViewColumnBuilder;
|
|
@@ -3687,12 +3723,12 @@ export interface __ViewBuilder_1$views<TEntity> {
|
|
|
3687
3723
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<EntityTypeBuilder>;
|
|
3688
3724
|
}
|
|
3689
3725
|
|
|
3690
|
-
export interface ViewBuilder_1$instance<TEntity> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<EntityTypeBuilder> {}
|
|
3691
|
-
|
|
3692
3726
|
export type ViewBuilder_1<TEntity> = ViewBuilder_1$instance<TEntity> & __ViewBuilder_1$views<TEntity>;
|
|
3693
3727
|
|
|
3694
3728
|
|
|
3695
3729
|
export interface ViewColumnBuilder$instance {
|
|
3730
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_ViewColumnBuilder: never;
|
|
3731
|
+
|
|
3696
3732
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
3697
3733
|
|
|
3698
3734
|
readonly InternalOverrides: RelationalPropertyOverrides;
|
|
@@ -3714,12 +3750,12 @@ export interface __ViewColumnBuilder$views {
|
|
|
3714
3750
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<PropertyBuilder>;
|
|
3715
3751
|
}
|
|
3716
3752
|
|
|
3717
|
-
export interface ViewColumnBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<PropertyBuilder> {}
|
|
3718
|
-
|
|
3719
3753
|
export type ViewColumnBuilder = ViewColumnBuilder$instance & __ViewColumnBuilder$views;
|
|
3720
3754
|
|
|
3721
3755
|
|
|
3722
|
-
export interface ViewColumnBuilder_1$instance<TProperty> extends ViewColumnBuilder$instance {
|
|
3756
|
+
export interface ViewColumnBuilder_1$instance<TProperty> extends ViewColumnBuilder$instance, Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<PropertyBuilder> {
|
|
3757
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_ViewColumnBuilder_1: never;
|
|
3758
|
+
|
|
3723
3759
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
3724
3760
|
|
|
3725
3761
|
HasAnnotation(annotation: string, value: unknown): ViewColumnBuilder;
|
|
@@ -3736,8 +3772,6 @@ export interface __ViewColumnBuilder_1$views<TProperty> {
|
|
|
3736
3772
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<PropertyBuilder>;
|
|
3737
3773
|
}
|
|
3738
3774
|
|
|
3739
|
-
export interface ViewColumnBuilder_1$instance<TProperty> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<PropertyBuilder> {}
|
|
3740
|
-
|
|
3741
3775
|
export type ViewColumnBuilder_1<TProperty> = ViewColumnBuilder_1$instance<TProperty> & __ViewColumnBuilder_1$views<TProperty>;
|
|
3742
3776
|
|
|
3743
3777
|
|