@tsonic/efcore 10.0.3 → 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 +634 -529
- package/Microsoft.EntityFrameworkCore.ChangeTracking/internal/index.d.ts +299 -154
- package/Microsoft.EntityFrameworkCore.ChangeTracking.Internal/internal/index.d.ts +591 -291
- package/Microsoft.EntityFrameworkCore.Design/internal/index.d.ts +139 -103
- package/Microsoft.EntityFrameworkCore.Design.Internal/internal/index.d.ts +36 -10
- package/Microsoft.EntityFrameworkCore.Diagnostics/internal/index.d.ts +535 -261
- package/Microsoft.EntityFrameworkCore.Diagnostics.Internal/internal/index.d.ts +105 -42
- package/Microsoft.EntityFrameworkCore.Infrastructure/internal/index.d.ts +330 -145
- package/Microsoft.EntityFrameworkCore.Infrastructure.Internal/internal/index.d.ts +62 -30
- package/Microsoft.EntityFrameworkCore.Internal/internal/index.d.ts +235 -121
- package/Microsoft.EntityFrameworkCore.Metadata/internal/index.d.ts +1624 -1035
- package/Microsoft.EntityFrameworkCore.Metadata.Builders/internal/index.d.ts +718 -476
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions/internal/index.d.ts +860 -307
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure/internal/index.d.ts +27 -7
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Internal/internal/index.d.ts +35 -21
- package/Microsoft.EntityFrameworkCore.Metadata.Internal/internal/index.d.ts +2232 -1303
- package/Microsoft.EntityFrameworkCore.Migrations/internal/index.d.ts +123 -67
- package/Microsoft.EntityFrameworkCore.Migrations.Internal/internal/index.d.ts +88 -74
- package/Microsoft.EntityFrameworkCore.Migrations.Operations/internal/index.d.ts +445 -207
- package/Microsoft.EntityFrameworkCore.Migrations.Operations.Builders/internal/index.d.ts +28 -20
- package/Microsoft.EntityFrameworkCore.Query/internal/index.d.ts +601 -240
- package/Microsoft.EntityFrameworkCore.Query.Internal/internal/index.d.ts +505 -257
- package/Microsoft.EntityFrameworkCore.Query.SqlExpressions/internal/index.d.ts +318 -120
- package/Microsoft.EntityFrameworkCore.Scaffolding/internal/index.d.ts +35 -15
- package/Microsoft.EntityFrameworkCore.Scaffolding.Metadata/internal/index.d.ts +133 -73
- package/Microsoft.EntityFrameworkCore.Storage/internal/index.d.ts +502 -239
- package/Microsoft.EntityFrameworkCore.Storage.Internal/internal/index.d.ts +80 -35
- package/Microsoft.EntityFrameworkCore.Storage.Internal.d.ts +3 -0
- package/Microsoft.EntityFrameworkCore.Storage.Json/internal/index.d.ts +102 -25
- package/Microsoft.EntityFrameworkCore.Storage.ValueConversion/internal/index.d.ts +143 -43
- package/Microsoft.EntityFrameworkCore.Storage.ValueConversion.Internal/internal/index.d.ts +54 -32
- package/Microsoft.EntityFrameworkCore.Update/internal/index.d.ts +136 -68
- package/Microsoft.EntityFrameworkCore.Update.Internal/internal/index.d.ts +198 -91
- package/Microsoft.EntityFrameworkCore.ValueGeneration/internal/index.d.ts +69 -23
- package/Microsoft.EntityFrameworkCore.ValueGeneration.Internal/internal/index.d.ts +44 -6
- package/Microsoft.Extensions.DependencyInjection/internal/index.d.ts +13 -13
- package/Microsoft.Extensions.DependencyInjection.d.ts +3 -0
- package/System.Transactions/internal/index.d.ts +3 -3
- package/__internal/extensions/index.d.ts +1553 -1291
- package/package.json +4 -4
|
@@ -20,14 +20,16 @@ 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
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Builders_IConventionAnnotatableBuilder: never;
|
|
32
|
+
|
|
31
33
|
readonly Metadata: IConventionAnnotatable;
|
|
32
34
|
readonly ModelBuilder: IConventionModelBuilder;
|
|
33
35
|
CanRemoveAnnotation(name: string, fromDataAnnotation?: boolean): boolean;
|
|
@@ -40,6 +42,8 @@ export interface IConventionAnnotatableBuilder$instance {
|
|
|
40
42
|
export type IConventionAnnotatableBuilder = IConventionAnnotatableBuilder$instance;
|
|
41
43
|
|
|
42
44
|
export interface IConventionCheckConstraintBuilder$instance extends IConventionAnnotatableBuilder {
|
|
45
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Builders_IConventionCheckConstraintBuilder: never;
|
|
46
|
+
|
|
43
47
|
readonly Metadata: IConventionCheckConstraint;
|
|
44
48
|
readonly ModelBuilder: IConventionModelBuilder;
|
|
45
49
|
CanSetAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): boolean;
|
|
@@ -55,30 +59,34 @@ export interface IConventionCheckConstraintBuilder$instance extends IConventionA
|
|
|
55
59
|
export type IConventionCheckConstraintBuilder = IConventionCheckConstraintBuilder$instance;
|
|
56
60
|
|
|
57
61
|
export interface IConventionComplexPropertyBuilder$instance extends IConventionPropertyBaseBuilder_1<IConventionComplexPropertyBuilder>, IConventionAnnotatableBuilder {
|
|
62
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Builders_IConventionComplexPropertyBuilder: never;
|
|
63
|
+
|
|
58
64
|
readonly Metadata: IConventionComplexProperty;
|
|
59
65
|
readonly ModelBuilder: IConventionModelBuilder;
|
|
60
66
|
CanSetAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): boolean;
|
|
61
67
|
CanSetField(fieldInfo: FieldInfo, fromDataAnnotation?: boolean): boolean;
|
|
62
68
|
CanSetField(fieldName: string, fromDataAnnotation?: boolean): boolean;
|
|
63
|
-
CanSetIsRequired(required:
|
|
69
|
+
CanSetIsRequired(required: Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): boolean;
|
|
64
70
|
HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
|
|
65
71
|
HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionComplexPropertyBuilder | undefined;
|
|
66
72
|
HasField(fieldInfo: FieldInfo, fromDataAnnotation?: boolean): IConventionComplexPropertyBuilder | undefined;
|
|
67
73
|
HasField(fieldInfo: FieldInfo, fromDataAnnotation?: boolean): IConventionComplexPropertyBuilder;
|
|
68
74
|
HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
|
|
69
75
|
HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionComplexPropertyBuilder | undefined;
|
|
70
|
-
IsRequired(required:
|
|
76
|
+
IsRequired(required: Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): IConventionComplexPropertyBuilder | undefined;
|
|
71
77
|
CanRemoveAnnotation(name: string, fromDataAnnotation?: boolean): boolean;
|
|
72
|
-
CanSetPropertyAccessMode(propertyAccessMode:
|
|
78
|
+
CanSetPropertyAccessMode(propertyAccessMode: Nullable_1<PropertyAccessMode>, fromDataAnnotation?: boolean): boolean;
|
|
73
79
|
HasAnnotation2(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionComplexPropertyBuilder;
|
|
74
80
|
HasNoAnnotation2(name: string, fromDataAnnotation?: boolean): IConventionComplexPropertyBuilder;
|
|
75
|
-
UsePropertyAccessMode(propertyAccessMode:
|
|
81
|
+
UsePropertyAccessMode(propertyAccessMode: Nullable_1<PropertyAccessMode>, fromDataAnnotation?: boolean): IConventionComplexPropertyBuilder;
|
|
76
82
|
}
|
|
77
83
|
|
|
78
84
|
|
|
79
85
|
export type IConventionComplexPropertyBuilder = IConventionComplexPropertyBuilder$instance;
|
|
80
86
|
|
|
81
87
|
export interface IConventionComplexTypeBuilder$instance extends IConventionTypeBaseBuilder, IConventionAnnotatableBuilder {
|
|
88
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Builders_IConventionComplexTypeBuilder: never;
|
|
89
|
+
|
|
82
90
|
readonly Metadata: IConventionComplexType;
|
|
83
91
|
readonly ModelBuilder: IConventionModelBuilder;
|
|
84
92
|
CanHaveComplexProperty(memberInfo: MemberInfo, complexType?: Type, fromDataAnnotation?: boolean): boolean;
|
|
@@ -89,18 +97,18 @@ export interface IConventionComplexTypeBuilder$instance extends IConventionTypeB
|
|
|
89
97
|
CanRemoveDiscriminator(fromDataAnnotation?: boolean): boolean;
|
|
90
98
|
CanRemoveProperty(property: IConventionProperty, fromDataAnnotation?: boolean): boolean;
|
|
91
99
|
CanSetAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): boolean;
|
|
92
|
-
CanSetChangeTrackingStrategy(changeTrackingStrategy:
|
|
100
|
+
CanSetChangeTrackingStrategy(changeTrackingStrategy: Nullable_1<ChangeTrackingStrategy>, fromDataAnnotation?: boolean): boolean;
|
|
93
101
|
CanSetDiscriminator(name: string, type: Type, fromDataAnnotation?: boolean): boolean;
|
|
94
102
|
CanSetDiscriminator(type: Type, fromDataAnnotation?: boolean): boolean;
|
|
95
103
|
ComplexProperty(memberInfo: MemberInfo, complexType?: Type, fromDataAnnotation?: boolean): IConventionComplexPropertyBuilder | undefined;
|
|
96
104
|
ComplexProperty(propertyType: Type, propertyName: string, complexType?: Type, fromDataAnnotation?: boolean): IConventionComplexPropertyBuilder | undefined;
|
|
97
|
-
GetOrCreateProperties(memberInfos:
|
|
98
|
-
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;
|
|
99
107
|
HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
|
|
100
108
|
HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionComplexTypeBuilder | undefined;
|
|
101
109
|
HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionTypeBaseBuilder | undefined;
|
|
102
|
-
HasChangeTrackingStrategy(changeTrackingStrategy:
|
|
103
|
-
HasChangeTrackingStrategy(changeTrackingStrategy:
|
|
110
|
+
HasChangeTrackingStrategy(changeTrackingStrategy: Nullable_1<ChangeTrackingStrategy>, fromDataAnnotation?: boolean): IConventionComplexTypeBuilder | undefined;
|
|
111
|
+
HasChangeTrackingStrategy(changeTrackingStrategy: Nullable_1<ChangeTrackingStrategy>, fromDataAnnotation?: boolean): IConventionTypeBaseBuilder | undefined;
|
|
104
112
|
HasDiscriminator(fromDataAnnotation?: boolean): IConventionComplexTypeDiscriminatorBuilder | undefined;
|
|
105
113
|
HasDiscriminator(memberInfo: MemberInfo, fromDataAnnotation?: boolean): IConventionComplexTypeDiscriminatorBuilder | undefined;
|
|
106
114
|
HasDiscriminator(name: string, fromDataAnnotation?: boolean): IConventionComplexTypeDiscriminatorBuilder | undefined;
|
|
@@ -118,8 +126,8 @@ export interface IConventionComplexTypeBuilder$instance extends IConventionTypeB
|
|
|
118
126
|
IsIgnored(memberName: string, fromDataAnnotation?: boolean): boolean;
|
|
119
127
|
Property(memberInfo: MemberInfo, fromDataAnnotation?: boolean): IConventionPropertyBuilder | undefined;
|
|
120
128
|
Property(propertyType: Type, propertyName: string, setTypeConfigurationSource?: boolean, fromDataAnnotation?: boolean): IConventionPropertyBuilder | undefined;
|
|
121
|
-
RemoveUnusedImplicitProperties(properties:
|
|
122
|
-
RemoveUnusedImplicitProperties(properties:
|
|
129
|
+
RemoveUnusedImplicitProperties(properties: IReadOnlyList_1<IConventionProperty>): IConventionComplexTypeBuilder;
|
|
130
|
+
RemoveUnusedImplicitProperties(properties: IReadOnlyList_1<IConventionProperty>): IConventionTypeBaseBuilder;
|
|
123
131
|
CanRemoveAnnotation(name: string, fromDataAnnotation?: boolean): boolean;
|
|
124
132
|
HasAnnotation2(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionTypeBaseBuilder | undefined;
|
|
125
133
|
HasNoAnnotation2(name: string, fromDataAnnotation?: boolean): IConventionTypeBaseBuilder | undefined;
|
|
@@ -129,6 +137,8 @@ export interface IConventionComplexTypeBuilder$instance extends IConventionTypeB
|
|
|
129
137
|
export type IConventionComplexTypeBuilder = IConventionComplexTypeBuilder$instance;
|
|
130
138
|
|
|
131
139
|
export interface IConventionComplexTypeDiscriminatorBuilder$instance {
|
|
140
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Builders_IConventionComplexTypeDiscriminatorBuilder: never;
|
|
141
|
+
|
|
132
142
|
readonly ComplexType: IConventionComplexType;
|
|
133
143
|
CanSetValue(value: unknown, fromDataAnnotation?: boolean): boolean;
|
|
134
144
|
HasValue(value: unknown, fromDataAnnotation?: boolean): IConventionComplexTypeDiscriminatorBuilder | undefined;
|
|
@@ -138,19 +148,21 @@ export interface IConventionComplexTypeDiscriminatorBuilder$instance {
|
|
|
138
148
|
export type IConventionComplexTypeDiscriminatorBuilder = IConventionComplexTypeDiscriminatorBuilder$instance;
|
|
139
149
|
|
|
140
150
|
export interface IConventionDbFunctionBuilder$instance extends IConventionAnnotatableBuilder {
|
|
151
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Builders_IConventionDbFunctionBuilder: never;
|
|
152
|
+
|
|
141
153
|
readonly Metadata: IConventionDbFunction;
|
|
142
154
|
readonly ModelBuilder: IConventionModelBuilder;
|
|
143
155
|
CanSetAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): boolean;
|
|
144
156
|
CanSetIsBuiltIn(builtIn: boolean, fromDataAnnotation?: boolean): boolean;
|
|
145
157
|
CanSetName(name: string, fromDataAnnotation?: boolean): boolean;
|
|
146
|
-
CanSetTranslation(translation:
|
|
158
|
+
CanSetTranslation(translation: Func_2<IReadOnlyList_1<SqlExpression>, SqlExpression>, fromDataAnnotation?: boolean): boolean;
|
|
147
159
|
CanSetTypeMapping(typeMapping: RelationalTypeMapping, fromDataAnnotation?: boolean): boolean;
|
|
148
160
|
HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
|
|
149
161
|
HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionDbFunctionBuilder | undefined;
|
|
150
162
|
HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
|
|
151
163
|
HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionDbFunctionBuilder | undefined;
|
|
152
164
|
HasParameter(name: string, fromDataAnnotation?: boolean): IConventionDbFunctionParameterBuilder;
|
|
153
|
-
HasTranslation(translation:
|
|
165
|
+
HasTranslation(translation: Func_2<IReadOnlyList_1<SqlExpression>, SqlExpression>, fromDataAnnotation?: boolean): IConventionDbFunctionBuilder | undefined;
|
|
154
166
|
HasTypeMapping(typeMapping: RelationalTypeMapping, fromDataAnnotation?: boolean): IConventionDbFunctionBuilder | undefined;
|
|
155
167
|
IsBuiltIn(builtIn: boolean, fromDataAnnotation?: boolean): IConventionDbFunctionBuilder | undefined;
|
|
156
168
|
CanRemoveAnnotation(name: string, fromDataAnnotation?: boolean): boolean;
|
|
@@ -160,6 +172,8 @@ export interface IConventionDbFunctionBuilder$instance extends IConventionAnnota
|
|
|
160
172
|
export type IConventionDbFunctionBuilder = IConventionDbFunctionBuilder$instance;
|
|
161
173
|
|
|
162
174
|
export interface IConventionDbFunctionParameterBuilder$instance extends IConventionAnnotatableBuilder {
|
|
175
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Builders_IConventionDbFunctionParameterBuilder: never;
|
|
176
|
+
|
|
163
177
|
readonly Metadata: IConventionDbFunctionParameter;
|
|
164
178
|
readonly ModelBuilder: IConventionModelBuilder;
|
|
165
179
|
CanSetAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): boolean;
|
|
@@ -177,6 +191,8 @@ export interface IConventionDbFunctionParameterBuilder$instance extends IConvent
|
|
|
177
191
|
export type IConventionDbFunctionParameterBuilder = IConventionDbFunctionParameterBuilder$instance;
|
|
178
192
|
|
|
179
193
|
export interface IConventionDiscriminatorBuilder$instance {
|
|
194
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Builders_IConventionDiscriminatorBuilder: never;
|
|
195
|
+
|
|
180
196
|
readonly EntityType: IConventionEntityType;
|
|
181
197
|
CanSetIsComplete(complete: boolean, fromDataAnnotation?: boolean): boolean;
|
|
182
198
|
CanSetValue(entityType: IConventionEntityType, value: unknown, fromDataAnnotation?: boolean): boolean;
|
|
@@ -190,13 +206,15 @@ export interface IConventionDiscriminatorBuilder$instance {
|
|
|
190
206
|
export type IConventionDiscriminatorBuilder = IConventionDiscriminatorBuilder$instance;
|
|
191
207
|
|
|
192
208
|
export interface IConventionElementTypeBuilder$instance extends IConventionAnnotatableBuilder {
|
|
209
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Builders_IConventionElementTypeBuilder: never;
|
|
210
|
+
|
|
193
211
|
readonly Metadata: IConventionElementType;
|
|
194
212
|
readonly ModelBuilder: IConventionModelBuilder;
|
|
195
213
|
CanRemoveAnnotation(name: string, fromDataAnnotation?: boolean): boolean;
|
|
196
214
|
CanSetAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): boolean;
|
|
197
215
|
CanSetConversion(converter: ValueConverter, fromDataAnnotation?: boolean): boolean;
|
|
198
216
|
CanSetConversion(providerClrType: Type, fromDataAnnotation?: boolean): boolean;
|
|
199
|
-
CanSetIsRequired(required:
|
|
217
|
+
CanSetIsRequired(required: Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): boolean;
|
|
200
218
|
CanSetTypeMapping(typeMapping: CoreTypeMapping, fromDataAnnotation?: boolean): boolean;
|
|
201
219
|
CanSetValueComparer(comparer: ValueComparer, fromDataAnnotation?: boolean): boolean;
|
|
202
220
|
HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
|
|
@@ -207,13 +225,15 @@ export interface IConventionElementTypeBuilder$instance extends IConventionAnnot
|
|
|
207
225
|
HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionElementTypeBuilder | undefined;
|
|
208
226
|
HasTypeMapping(typeMapping: CoreTypeMapping, fromDataAnnotation?: boolean): IConventionElementTypeBuilder | undefined;
|
|
209
227
|
HasValueComparer(comparer: ValueComparer, fromDataAnnotation?: boolean): IConventionElementTypeBuilder | undefined;
|
|
210
|
-
IsRequired(required:
|
|
228
|
+
IsRequired(required: Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): IConventionElementTypeBuilder | undefined;
|
|
211
229
|
}
|
|
212
230
|
|
|
213
231
|
|
|
214
232
|
export type IConventionElementTypeBuilder = IConventionElementTypeBuilder$instance;
|
|
215
233
|
|
|
216
234
|
export interface IConventionEntityTypeBuilder$instance extends IConventionTypeBaseBuilder, IConventionAnnotatableBuilder {
|
|
235
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Builders_IConventionEntityTypeBuilder: never;
|
|
236
|
+
|
|
217
237
|
readonly Metadata: IConventionEntityType;
|
|
218
238
|
readonly ModelBuilder: IConventionModelBuilder;
|
|
219
239
|
CanHaveComplexProperty(memberInfo: MemberInfo, complexType?: Type, fromDataAnnotation?: boolean): boolean;
|
|
@@ -234,30 +254,30 @@ export interface IConventionEntityTypeBuilder$instance extends IConventionTypeBa
|
|
|
234
254
|
CanRemoveSkipNavigation(skipNavigation: IConventionSkipNavigation, fromDataAnnotation?: boolean): boolean;
|
|
235
255
|
CanSetAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): boolean;
|
|
236
256
|
CanSetBaseType(baseEntityType: IConventionEntityType, fromDataAnnotation?: boolean): boolean;
|
|
237
|
-
CanSetChangeTrackingStrategy(changeTrackingStrategy:
|
|
257
|
+
CanSetChangeTrackingStrategy(changeTrackingStrategy: Nullable_1<ChangeTrackingStrategy>, fromDataAnnotation?: boolean): boolean;
|
|
238
258
|
CanSetDiscriminator(type: Type, fromDataAnnotation?: boolean): boolean;
|
|
239
259
|
CanSetDiscriminator(name: string, type: Type, fromDataAnnotation?: boolean): boolean;
|
|
240
|
-
CanSetPrimaryKey(propertyNames:
|
|
260
|
+
CanSetPrimaryKey(propertyNames: IReadOnlyList_1<System_Internal.String>, fromDataAnnotation?: boolean): boolean;
|
|
241
261
|
CanSetQueryFilter(filter: LambdaExpression, fromDataAnnotation?: boolean): boolean;
|
|
242
262
|
CanSetQueryFilter(filterKey: string, filter: LambdaExpression, fromDataAnnotation?: boolean): boolean;
|
|
243
263
|
ComplexProperty(memberInfo: MemberInfo, complexType?: Type, fromDataAnnotation?: boolean): IConventionComplexPropertyBuilder | undefined;
|
|
244
264
|
ComplexProperty(propertyType: Type, propertyName: string, complexType?: Type, fromDataAnnotation?: boolean): IConventionComplexPropertyBuilder | undefined;
|
|
245
|
-
GetOrCreateProperties(memberInfos:
|
|
246
|
-
GetOrCreateProperties(propertyNames:
|
|
247
|
-
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;
|
|
248
268
|
HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
|
|
249
269
|
HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionEntityTypeBuilder | undefined;
|
|
250
270
|
HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionTypeBaseBuilder | undefined;
|
|
251
271
|
HasBaseType(baseEntityType: IConventionEntityType, fromDataAnnotation?: boolean): IConventionEntityTypeBuilder | undefined;
|
|
252
|
-
HasChangeTrackingStrategy(changeTrackingStrategy:
|
|
253
|
-
HasChangeTrackingStrategy(changeTrackingStrategy:
|
|
272
|
+
HasChangeTrackingStrategy(changeTrackingStrategy: Nullable_1<ChangeTrackingStrategy>, fromDataAnnotation?: boolean): IConventionEntityTypeBuilder | undefined;
|
|
273
|
+
HasChangeTrackingStrategy(changeTrackingStrategy: Nullable_1<ChangeTrackingStrategy>, fromDataAnnotation?: boolean): IConventionTypeBaseBuilder | undefined;
|
|
254
274
|
HasDiscriminator(fromDataAnnotation?: boolean): IConventionDiscriminatorBuilder | undefined;
|
|
255
275
|
HasDiscriminator(memberInfo: MemberInfo, fromDataAnnotation?: boolean): IConventionDiscriminatorBuilder | undefined;
|
|
256
276
|
HasDiscriminator(name: string, fromDataAnnotation?: boolean): IConventionDiscriminatorBuilder | undefined;
|
|
257
277
|
HasDiscriminator(name: string, type: Type, fromDataAnnotation?: boolean): IConventionDiscriminatorBuilder | undefined;
|
|
258
278
|
HasDiscriminator(type: Type, fromDataAnnotation?: boolean): IConventionDiscriminatorBuilder | undefined;
|
|
259
|
-
HasIndex(propertyNames:
|
|
260
|
-
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;
|
|
261
281
|
HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
|
|
262
282
|
HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionEntityTypeBuilder | undefined;
|
|
263
283
|
HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionTypeBaseBuilder | undefined;
|
|
@@ -266,12 +286,12 @@ export interface IConventionEntityTypeBuilder$instance extends IConventionTypeBa
|
|
|
266
286
|
HasNoIndex(index: IConventionIndex, fromDataAnnotation?: boolean): IConventionEntityTypeBuilder | undefined;
|
|
267
287
|
HasNoKey(key: IConventionKey, fromDataAnnotation?: boolean): IConventionEntityTypeBuilder | undefined;
|
|
268
288
|
HasNoKey(fromDataAnnotation?: boolean): IConventionEntityTypeBuilder | undefined;
|
|
269
|
-
HasNoKey(properties:
|
|
289
|
+
HasNoKey(properties: IReadOnlyList_1<IConventionProperty>, fromDataAnnotation?: boolean): IConventionEntityTypeBuilder | undefined;
|
|
270
290
|
HasNoNavigation(navigation: IConventionNavigation, fromDataAnnotation?: boolean): IConventionEntityTypeBuilder | undefined;
|
|
271
291
|
HasNoProperty(property: IConventionProperty, fromDataAnnotation?: boolean): IConventionEntityTypeBuilder | undefined;
|
|
272
292
|
HasNoProperty(property: IConventionProperty, fromDataAnnotation?: boolean): IConventionTypeBaseBuilder | undefined;
|
|
273
293
|
HasNoRelationship(foreignKey: IConventionForeignKey, fromDataAnnotation?: boolean): IConventionEntityTypeBuilder | undefined;
|
|
274
|
-
HasNoRelationship(properties:
|
|
294
|
+
HasNoRelationship(properties: IReadOnlyList_1<IConventionProperty>, principalKey: IConventionKey, principalEntityType: IConventionEntityType, fromDataAnnotation?: boolean): IConventionEntityTypeBuilder | undefined;
|
|
275
295
|
HasNoServiceProperty(serviceProperty: IConventionServiceProperty, fromDataAnnotation?: boolean): IConventionEntityTypeBuilder | undefined;
|
|
276
296
|
HasNoSkipNavigation(skipNavigation: IConventionSkipNavigation, fromDataAnnotation?: boolean): IConventionEntityTypeBuilder | undefined;
|
|
277
297
|
HasOwnership(targetEntityType: IConventionEntityType, navigation: MemberInfo, fromDataAnnotation?: boolean): IConventionForeignKeyBuilder | undefined;
|
|
@@ -286,22 +306,22 @@ export interface IConventionEntityTypeBuilder$instance extends IConventionTypeBa
|
|
|
286
306
|
HasQueryFilter(filterKey: string, filter: LambdaExpression, fromDataAnnotation?: boolean): IConventionEntityTypeBuilder | undefined;
|
|
287
307
|
HasRelationship(principalEntityType: IConventionEntityType, principalKey: IConventionKey, fromDataAnnotation?: boolean): IConventionForeignKeyBuilder | undefined;
|
|
288
308
|
HasRelationship(targetEntityType: IConventionEntityType, fromDataAnnotation?: boolean): IConventionForeignKeyBuilder | undefined;
|
|
289
|
-
HasRelationship(principalEntityType: IConventionEntityType, dependentProperties:
|
|
290
|
-
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;
|
|
291
311
|
HasRelationship(targetEntityType: IConventionEntityType, navigation: MemberInfo, setTargetAsPrincipal?: boolean, fromDataAnnotation?: boolean): IConventionForeignKeyBuilder | undefined;
|
|
292
312
|
HasRelationship(targetEntityType: IConventionEntityType, navigation: MemberInfo, inverseNavigation: MemberInfo, setTargetAsPrincipal?: boolean, fromDataAnnotation?: boolean): IConventionForeignKeyBuilder | undefined;
|
|
293
313
|
HasRelationship(targetEntityType: IConventionEntityType, navigationName: string, setTargetAsPrincipal?: boolean, fromDataAnnotation?: boolean): IConventionForeignKeyBuilder | undefined;
|
|
294
314
|
HasRelationship(targetEntityType: IConventionEntityType, navigationName: string, inverseNavigationName: string, setTargetAsPrincipal?: boolean, fromDataAnnotation?: boolean): IConventionForeignKeyBuilder | undefined;
|
|
295
|
-
HasSkipNavigation(navigation: MemberInfo, targetEntityType: IConventionEntityType, collection?:
|
|
296
|
-
HasSkipNavigation(navigation: MemberInfo, targetEntityType: IConventionEntityType, inverseNavigation: MemberInfo, collections?:
|
|
297
|
-
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;
|
|
298
318
|
HasTrigger(modelName: string, fromDataAnnotation?: boolean): IConventionTriggerBuilder | undefined;
|
|
299
319
|
IndexerProperty(propertyType: Type, propertyName: string, fromDataAnnotation?: boolean): IConventionPropertyBuilder | undefined;
|
|
300
|
-
PrimaryKey(properties:
|
|
320
|
+
PrimaryKey(properties: IReadOnlyList_1<IConventionProperty>, fromDataAnnotation?: boolean): IConventionKeyBuilder | undefined;
|
|
301
321
|
Property(memberInfo: MemberInfo, fromDataAnnotation?: boolean): IConventionPropertyBuilder | undefined;
|
|
302
322
|
Property(propertyType: Type, propertyName: string, setTypeConfigurationSource?: boolean, fromDataAnnotation?: boolean): IConventionPropertyBuilder | undefined;
|
|
303
|
-
RemoveUnusedImplicitProperties(properties:
|
|
304
|
-
RemoveUnusedImplicitProperties(properties:
|
|
323
|
+
RemoveUnusedImplicitProperties(properties: IReadOnlyList_1<IConventionProperty>): IConventionEntityTypeBuilder;
|
|
324
|
+
RemoveUnusedImplicitProperties(properties: IReadOnlyList_1<IConventionProperty>): IConventionTypeBaseBuilder;
|
|
305
325
|
ServiceProperty(memberInfo: MemberInfo, fromDataAnnotation?: boolean): IConventionServicePropertyBuilder | undefined;
|
|
306
326
|
ServiceProperty(serviceType: Type, memberInfo: MemberInfo, fromDataAnnotation?: boolean): IConventionServicePropertyBuilder | undefined;
|
|
307
327
|
CanRemoveAnnotation(name: string, fromDataAnnotation?: boolean): boolean;
|
|
@@ -315,6 +335,8 @@ export interface IConventionEntityTypeBuilder$instance extends IConventionTypeBa
|
|
|
315
335
|
export type IConventionEntityTypeBuilder = IConventionEntityTypeBuilder$instance;
|
|
316
336
|
|
|
317
337
|
export interface IConventionEntityTypeMappingFragmentBuilder$instance extends IConventionAnnotatableBuilder {
|
|
338
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Builders_IConventionEntityTypeMappingFragmentBuilder: never;
|
|
339
|
+
|
|
318
340
|
readonly Metadata: IConventionEntityTypeMappingFragment;
|
|
319
341
|
readonly ModelBuilder: IConventionModelBuilder;
|
|
320
342
|
CanRemoveAnnotation(name: string, fromDataAnnotation?: boolean): boolean;
|
|
@@ -327,13 +349,15 @@ export interface IConventionEntityTypeMappingFragmentBuilder$instance extends IC
|
|
|
327
349
|
export type IConventionEntityTypeMappingFragmentBuilder = IConventionEntityTypeMappingFragmentBuilder$instance;
|
|
328
350
|
|
|
329
351
|
export interface IConventionForeignKeyBuilder$instance extends IConventionAnnotatableBuilder {
|
|
352
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Builders_IConventionForeignKeyBuilder: never;
|
|
353
|
+
|
|
330
354
|
readonly Metadata: IConventionForeignKey;
|
|
331
355
|
readonly ModelBuilder: IConventionModelBuilder;
|
|
332
|
-
CanInvert(newForeignKeyProperties:
|
|
356
|
+
CanInvert(newForeignKeyProperties: IReadOnlyList_1<IConventionProperty>, fromDataAnnotation?: boolean): boolean;
|
|
333
357
|
CanRemoveAnnotation(name: string, fromDataAnnotation?: boolean): boolean;
|
|
334
358
|
CanSetAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): boolean;
|
|
335
359
|
CanSetEntityTypes(principalEntityType: IConventionEntityType, dependentEntityType: IConventionEntityType, fromDataAnnotation?: boolean): boolean;
|
|
336
|
-
CanSetIsRequired(required:
|
|
360
|
+
CanSetIsRequired(required: Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): boolean;
|
|
337
361
|
CanSetNavigation(property: MemberInfo, pointsToPrincipal: boolean, fromDataAnnotation?: boolean): boolean;
|
|
338
362
|
CanSetNavigation(name: string, pointsToPrincipal: boolean, fromDataAnnotation?: boolean): boolean;
|
|
339
363
|
CanSetNavigations(navigationToPrincipal: MemberInfo, navigationToDependent: MemberInfo, fromDataAnnotation?: boolean): boolean;
|
|
@@ -341,38 +365,42 @@ export interface IConventionForeignKeyBuilder$instance extends IConventionAnnota
|
|
|
341
365
|
HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
|
|
342
366
|
HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionForeignKeyBuilder | undefined;
|
|
343
367
|
HasEntityTypes(principalEntityType: IConventionEntityType, dependentEntityType: IConventionEntityType, fromDataAnnotation?: boolean): IConventionForeignKeyBuilder | undefined;
|
|
344
|
-
HasForeignKey(propertyNames:
|
|
368
|
+
HasForeignKey(propertyNames: IReadOnlyList_1<System_Internal.String>, fromDataAnnotation?: boolean): IConventionForeignKeyBuilder | undefined;
|
|
345
369
|
HasNavigation(property: MemberInfo, pointsToPrincipal: boolean, fromDataAnnotation?: boolean): IConventionForeignKeyBuilder | undefined;
|
|
346
370
|
HasNavigation(name: string, pointsToPrincipal: boolean, fromDataAnnotation?: boolean): IConventionForeignKeyBuilder | undefined;
|
|
347
371
|
HasNavigations(navigationToPrincipal: MemberInfo, navigationToDependent: MemberInfo, fromDataAnnotation?: boolean): IConventionForeignKeyBuilder | undefined;
|
|
348
372
|
HasNavigations(navigationToPrincipalName: string, navigationToDependentName: string, fromDataAnnotation?: boolean): IConventionForeignKeyBuilder | undefined;
|
|
349
373
|
HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
|
|
350
374
|
HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionForeignKeyBuilder | undefined;
|
|
351
|
-
IsRequired(required:
|
|
375
|
+
IsRequired(required: Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): IConventionForeignKeyBuilder | undefined;
|
|
352
376
|
}
|
|
353
377
|
|
|
354
378
|
|
|
355
379
|
export type IConventionForeignKeyBuilder = IConventionForeignKeyBuilder$instance;
|
|
356
380
|
|
|
357
381
|
export interface IConventionIndexBuilder$instance extends IConventionAnnotatableBuilder {
|
|
382
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Builders_IConventionIndexBuilder: never;
|
|
383
|
+
|
|
358
384
|
readonly Metadata: IConventionIndex;
|
|
359
385
|
readonly ModelBuilder: IConventionModelBuilder;
|
|
360
386
|
CanRemoveAnnotation(name: string, fromDataAnnotation?: boolean): boolean;
|
|
361
387
|
CanSetAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): boolean;
|
|
362
|
-
CanSetIsDescending(descending:
|
|
363
|
-
CanSetIsUnique(unique:
|
|
388
|
+
CanSetIsDescending(descending: IReadOnlyList_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): boolean;
|
|
389
|
+
CanSetIsUnique(unique: Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): boolean;
|
|
364
390
|
HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
|
|
365
391
|
HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionIndexBuilder | undefined;
|
|
366
392
|
HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
|
|
367
393
|
HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionIndexBuilder | undefined;
|
|
368
|
-
IsDescending(descending:
|
|
369
|
-
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;
|
|
370
396
|
}
|
|
371
397
|
|
|
372
398
|
|
|
373
399
|
export type IConventionIndexBuilder = IConventionIndexBuilder$instance;
|
|
374
400
|
|
|
375
401
|
export interface IConventionKeyBuilder$instance extends IConventionAnnotatableBuilder {
|
|
402
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Builders_IConventionKeyBuilder: never;
|
|
403
|
+
|
|
376
404
|
readonly Metadata: IConventionKey;
|
|
377
405
|
readonly ModelBuilder: IConventionModelBuilder;
|
|
378
406
|
CanRemoveAnnotation(name: string, fromDataAnnotation?: boolean): boolean;
|
|
@@ -387,27 +415,29 @@ export interface IConventionKeyBuilder$instance extends IConventionAnnotatableBu
|
|
|
387
415
|
export type IConventionKeyBuilder = IConventionKeyBuilder$instance;
|
|
388
416
|
|
|
389
417
|
export interface IConventionModelBuilder$instance extends IConventionAnnotatableBuilder {
|
|
418
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Builders_IConventionModelBuilder: never;
|
|
419
|
+
|
|
390
420
|
readonly Metadata: IConventionModel;
|
|
391
421
|
readonly ModelBuilder: IConventionModelBuilder;
|
|
392
422
|
CanHaveSharedTypeEntity(name: string, type: Type, fromDataAnnotation?: boolean): boolean;
|
|
393
423
|
CanRemoveEntity(entityType: IConventionEntityType, fromDataAnnotation?: boolean): boolean;
|
|
394
424
|
CanSetAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): boolean;
|
|
395
|
-
CanSetChangeTrackingStrategy(changeTrackingStrategy:
|
|
425
|
+
CanSetChangeTrackingStrategy(changeTrackingStrategy: Nullable_1<ChangeTrackingStrategy>, fromDataAnnotation?: boolean): boolean;
|
|
396
426
|
ComplexType(type: Type, fromDataAnnotation?: boolean): IConventionModelBuilder | undefined;
|
|
397
|
-
Entity(name: string, shouldBeOwned?:
|
|
427
|
+
Entity(name: string, shouldBeOwned?: Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): IConventionEntityTypeBuilder | undefined;
|
|
398
428
|
Entity(name: string, definingNavigationName: string, definingEntityType: IConventionEntityType, fromDataAnnotation?: boolean): IConventionEntityTypeBuilder | undefined;
|
|
399
|
-
Entity(type: Type, shouldBeOwned?:
|
|
429
|
+
Entity(type: Type, shouldBeOwned?: Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): IConventionEntityTypeBuilder | undefined;
|
|
400
430
|
Entity(type: Type, definingNavigationName: string, definingEntityType: IConventionEntityType, fromDataAnnotation?: boolean): IConventionEntityTypeBuilder | undefined;
|
|
401
431
|
HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
|
|
402
432
|
HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionModelBuilder | undefined;
|
|
403
|
-
HasChangeTrackingStrategy(changeTrackingStrategy:
|
|
433
|
+
HasChangeTrackingStrategy(changeTrackingStrategy: Nullable_1<ChangeTrackingStrategy>, fromDataAnnotation?: boolean): IConventionModelBuilder | undefined;
|
|
404
434
|
HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
|
|
405
435
|
HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionModelBuilder | undefined;
|
|
406
436
|
HasNoEntityType(entityType: IConventionEntityType, fromDataAnnotation?: boolean): IConventionModelBuilder | undefined;
|
|
407
437
|
IsIgnored(typeName: string, fromDataAnnotation?: boolean): boolean;
|
|
408
438
|
IsIgnored(type: Type, fromDataAnnotation?: boolean): boolean;
|
|
409
439
|
Owned(type: Type, fromDataAnnotation?: boolean): IConventionOwnedEntityTypeBuilder | undefined;
|
|
410
|
-
SharedTypeEntity(name: string, type: Type, shouldBeOwned?:
|
|
440
|
+
SharedTypeEntity(name: string, type: Type, shouldBeOwned?: Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): IConventionEntityTypeBuilder | undefined;
|
|
411
441
|
CanRemoveAnnotation(name: string, fromDataAnnotation?: boolean): boolean;
|
|
412
442
|
}
|
|
413
443
|
|
|
@@ -415,11 +445,13 @@ export interface IConventionModelBuilder$instance extends IConventionAnnotatable
|
|
|
415
445
|
export type IConventionModelBuilder = IConventionModelBuilder$instance;
|
|
416
446
|
|
|
417
447
|
export interface IConventionNavigationBuilder$instance extends IConventionPropertyBaseBuilder_1<IConventionNavigationBuilder>, IConventionAnnotatableBuilder {
|
|
448
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Builders_IConventionNavigationBuilder: never;
|
|
449
|
+
|
|
418
450
|
readonly Metadata: IConventionNavigation;
|
|
419
451
|
readonly ModelBuilder: IConventionModelBuilder;
|
|
420
|
-
AutoInclude(autoInclude:
|
|
452
|
+
AutoInclude(autoInclude: Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): IConventionNavigationBuilder | undefined;
|
|
421
453
|
CanSetAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): boolean;
|
|
422
|
-
CanSetAutoInclude(autoInclude:
|
|
454
|
+
CanSetAutoInclude(autoInclude: Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): boolean;
|
|
423
455
|
CanSetField(fieldInfo: FieldInfo, fromDataAnnotation?: boolean): boolean;
|
|
424
456
|
CanSetField(fieldName: string, fromDataAnnotation?: boolean): boolean;
|
|
425
457
|
HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
|
|
@@ -429,34 +461,38 @@ export interface IConventionNavigationBuilder$instance extends IConventionProper
|
|
|
429
461
|
HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
|
|
430
462
|
HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionNavigationBuilder | undefined;
|
|
431
463
|
CanRemoveAnnotation(name: string, fromDataAnnotation?: boolean): boolean;
|
|
432
|
-
CanSetPropertyAccessMode(propertyAccessMode:
|
|
464
|
+
CanSetPropertyAccessMode(propertyAccessMode: Nullable_1<PropertyAccessMode>, fromDataAnnotation?: boolean): boolean;
|
|
433
465
|
HasAnnotation2(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionNavigationBuilder;
|
|
434
466
|
HasNoAnnotation2(name: string, fromDataAnnotation?: boolean): IConventionNavigationBuilder;
|
|
435
|
-
UsePropertyAccessMode(propertyAccessMode:
|
|
467
|
+
UsePropertyAccessMode(propertyAccessMode: Nullable_1<PropertyAccessMode>, fromDataAnnotation?: boolean): IConventionNavigationBuilder;
|
|
436
468
|
}
|
|
437
469
|
|
|
438
470
|
|
|
439
471
|
export type IConventionNavigationBuilder = IConventionNavigationBuilder$instance;
|
|
440
472
|
|
|
441
473
|
export interface IConventionOwnedEntityTypeBuilder$instance {
|
|
474
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Builders_IConventionOwnedEntityTypeBuilder: never;
|
|
475
|
+
|
|
442
476
|
}
|
|
443
477
|
|
|
444
478
|
|
|
445
479
|
export type IConventionOwnedEntityTypeBuilder = IConventionOwnedEntityTypeBuilder$instance;
|
|
446
480
|
|
|
447
481
|
export interface IConventionPropertyBaseBuilder_1$instance<TBuilder extends IConventionPropertyBaseBuilder_1<TBuilder>> extends IConventionAnnotatableBuilder {
|
|
482
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Builders_IConventionPropertyBaseBuilder_1: never;
|
|
483
|
+
|
|
448
484
|
readonly Metadata: IConventionPropertyBase;
|
|
449
485
|
readonly ModelBuilder: IConventionModelBuilder;
|
|
450
486
|
CanSetAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): boolean;
|
|
451
487
|
CanSetField(fieldInfo: FieldInfo, fromDataAnnotation?: boolean): boolean;
|
|
452
488
|
CanSetField(fieldName: string, fromDataAnnotation?: boolean): boolean;
|
|
453
|
-
CanSetPropertyAccessMode(propertyAccessMode:
|
|
489
|
+
CanSetPropertyAccessMode(propertyAccessMode: Nullable_1<PropertyAccessMode>, fromDataAnnotation?: boolean): boolean;
|
|
454
490
|
HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
|
|
455
491
|
HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): TBuilder | undefined;
|
|
456
492
|
HasField(fieldInfo: FieldInfo, fromDataAnnotation?: boolean): TBuilder | undefined;
|
|
457
493
|
HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
|
|
458
494
|
HasNoAnnotation(name: string, fromDataAnnotation?: boolean): TBuilder | undefined;
|
|
459
|
-
UsePropertyAccessMode(propertyAccessMode:
|
|
495
|
+
UsePropertyAccessMode(propertyAccessMode: Nullable_1<PropertyAccessMode>, fromDataAnnotation?: boolean): TBuilder | undefined;
|
|
460
496
|
CanRemoveAnnotation(name: string, fromDataAnnotation?: boolean): boolean;
|
|
461
497
|
}
|
|
462
498
|
|
|
@@ -464,17 +500,19 @@ export interface IConventionPropertyBaseBuilder_1$instance<TBuilder extends ICon
|
|
|
464
500
|
export type IConventionPropertyBaseBuilder_1<TBuilder extends IConventionPropertyBaseBuilder_1<TBuilder>> = IConventionPropertyBaseBuilder_1$instance<TBuilder>;
|
|
465
501
|
|
|
466
502
|
export interface IConventionPropertyBuilder$instance extends IConventionPropertyBaseBuilder_1<IConventionPropertyBuilder>, IConventionAnnotatableBuilder {
|
|
503
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Builders_IConventionPropertyBuilder: never;
|
|
504
|
+
|
|
467
505
|
readonly Metadata: IConventionProperty;
|
|
468
506
|
readonly ModelBuilder: IConventionModelBuilder;
|
|
469
507
|
CanSetAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): boolean;
|
|
470
508
|
CanSetConversion(converter: ValueConverter, fromDataAnnotation?: boolean): boolean;
|
|
471
509
|
CanSetField(fieldInfo: FieldInfo, fromDataAnnotation?: boolean): boolean;
|
|
472
510
|
CanSetField(fieldName: string, fromDataAnnotation?: boolean): boolean;
|
|
473
|
-
CanSetIsRequired(required:
|
|
511
|
+
CanSetIsRequired(required: Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): boolean;
|
|
474
512
|
CanSetSentinel(sentinel: unknown, fromDataAnnotation?: boolean): boolean;
|
|
475
513
|
CanSetTypeMapping(typeMapping: CoreTypeMapping, fromDataAnnotation?: boolean): boolean;
|
|
476
514
|
CanSetValueComparer(comparer: ValueComparer, fromDataAnnotation?: boolean): boolean;
|
|
477
|
-
CanSetValueGenerator(factory:
|
|
515
|
+
CanSetValueGenerator(factory: Func_3<IProperty, ITypeBase, ValueGenerator>, fromDataAnnotation?: boolean): boolean;
|
|
478
516
|
CanSetValueGeneratorFactory(valueGeneratorFactoryType: Type, fromDataAnnotation?: boolean): boolean;
|
|
479
517
|
HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
|
|
480
518
|
HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionPropertyBuilder | undefined;
|
|
@@ -486,21 +524,23 @@ export interface IConventionPropertyBuilder$instance extends IConventionProperty
|
|
|
486
524
|
HasSentinel(sentinel: unknown, fromDataAnnotation?: boolean): IConventionPropertyBuilder | undefined;
|
|
487
525
|
HasTypeMapping(typeMapping: CoreTypeMapping, fromDataAnnotation?: boolean): IConventionPropertyBuilder | undefined;
|
|
488
526
|
HasValueComparer(comparer: ValueComparer, fromDataAnnotation?: boolean): IConventionPropertyBuilder | undefined;
|
|
489
|
-
HasValueGenerator(factory:
|
|
527
|
+
HasValueGenerator(factory: Func_3<IProperty, ITypeBase, ValueGenerator>, fromDataAnnotation?: boolean): IConventionPropertyBuilder | undefined;
|
|
490
528
|
HasValueGenerator(valueGeneratorType: Type, fromDataAnnotation?: boolean): IConventionPropertyBuilder | undefined;
|
|
491
|
-
IsRequired(required:
|
|
529
|
+
IsRequired(required: Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): IConventionPropertyBuilder | undefined;
|
|
492
530
|
SetElementType(elementType: Type, fromDataAnnotation?: boolean): IConventionElementTypeBuilder | undefined;
|
|
493
531
|
CanRemoveAnnotation(name: string, fromDataAnnotation?: boolean): boolean;
|
|
494
|
-
CanSetPropertyAccessMode(propertyAccessMode:
|
|
532
|
+
CanSetPropertyAccessMode(propertyAccessMode: Nullable_1<PropertyAccessMode>, fromDataAnnotation?: boolean): boolean;
|
|
495
533
|
HasAnnotation2(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionPropertyBuilder;
|
|
496
534
|
HasNoAnnotation2(name: string, fromDataAnnotation?: boolean): IConventionPropertyBuilder;
|
|
497
|
-
UsePropertyAccessMode(propertyAccessMode:
|
|
535
|
+
UsePropertyAccessMode(propertyAccessMode: Nullable_1<PropertyAccessMode>, fromDataAnnotation?: boolean): IConventionPropertyBuilder;
|
|
498
536
|
}
|
|
499
537
|
|
|
500
538
|
|
|
501
539
|
export type IConventionPropertyBuilder = IConventionPropertyBuilder$instance;
|
|
502
540
|
|
|
503
541
|
export interface IConventionRelationalPropertyOverridesBuilder$instance extends IConventionAnnotatableBuilder {
|
|
542
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Builders_IConventionRelationalPropertyOverridesBuilder: never;
|
|
543
|
+
|
|
504
544
|
readonly Metadata: IConventionRelationalPropertyOverrides;
|
|
505
545
|
readonly ModelBuilder: IConventionModelBuilder;
|
|
506
546
|
CanRemoveAnnotation(name: string, fromDataAnnotation?: boolean): boolean;
|
|
@@ -513,31 +553,35 @@ export interface IConventionRelationalPropertyOverridesBuilder$instance extends
|
|
|
513
553
|
export type IConventionRelationalPropertyOverridesBuilder = IConventionRelationalPropertyOverridesBuilder$instance;
|
|
514
554
|
|
|
515
555
|
export interface IConventionSequenceBuilder$instance extends IConventionAnnotatableBuilder {
|
|
556
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Builders_IConventionSequenceBuilder: never;
|
|
557
|
+
|
|
516
558
|
readonly Metadata: IConventionSequence;
|
|
517
559
|
readonly ModelBuilder: IConventionModelBuilder;
|
|
518
560
|
CanRemoveAnnotation(name: string, fromDataAnnotation?: boolean): boolean;
|
|
519
561
|
CanSetAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): boolean;
|
|
520
|
-
CanSetIncrementsBy(increment:
|
|
562
|
+
CanSetIncrementsBy(increment: Nullable_1<System_Internal.Int32>, fromDataAnnotation?: boolean): boolean;
|
|
521
563
|
CanSetType(type: Type, fromDataAnnotation?: boolean): boolean;
|
|
522
564
|
HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
|
|
523
565
|
HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionSequenceBuilder | undefined;
|
|
524
566
|
HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
|
|
525
567
|
HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionSequenceBuilder | undefined;
|
|
526
568
|
HasType(type: Type, fromDataAnnotation?: boolean): IConventionSequenceBuilder | undefined;
|
|
527
|
-
IncrementsBy(increment:
|
|
569
|
+
IncrementsBy(increment: Nullable_1<System_Internal.Int32>, fromDataAnnotation?: boolean): IConventionSequenceBuilder | undefined;
|
|
528
570
|
}
|
|
529
571
|
|
|
530
572
|
|
|
531
573
|
export type IConventionSequenceBuilder = IConventionSequenceBuilder$instance;
|
|
532
574
|
|
|
533
575
|
export interface IConventionServicePropertyBuilder$instance extends IConventionPropertyBaseBuilder_1<IConventionServicePropertyBuilder>, IConventionAnnotatableBuilder {
|
|
576
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Builders_IConventionServicePropertyBuilder: never;
|
|
577
|
+
|
|
534
578
|
readonly Metadata: IConventionServiceProperty;
|
|
535
579
|
readonly ModelBuilder: IConventionModelBuilder;
|
|
536
580
|
CanSetAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): boolean;
|
|
537
581
|
CanSetField(fieldInfo: FieldInfo, fromDataAnnotation?: boolean): boolean;
|
|
538
582
|
CanSetField(fieldName: string, fromDataAnnotation?: boolean): boolean;
|
|
539
583
|
CanSetParameterBinding(parameterBinding: ServiceParameterBinding, fromDataAnnotation?: boolean): boolean;
|
|
540
|
-
CanSetPropertyAccessMode(propertyAccessMode:
|
|
584
|
+
CanSetPropertyAccessMode(propertyAccessMode: Nullable_1<PropertyAccessMode>, fromDataAnnotation?: boolean): boolean;
|
|
541
585
|
HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
|
|
542
586
|
HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionServicePropertyBuilder | undefined;
|
|
543
587
|
HasField(fieldInfo: FieldInfo, fromDataAnnotation?: boolean): IConventionServicePropertyBuilder | undefined;
|
|
@@ -545,8 +589,8 @@ export interface IConventionServicePropertyBuilder$instance extends IConventionP
|
|
|
545
589
|
HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
|
|
546
590
|
HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionServicePropertyBuilder | undefined;
|
|
547
591
|
HasParameterBinding(parameterBinding: ServiceParameterBinding, fromDataAnnotation?: boolean): IConventionServicePropertyBuilder | undefined;
|
|
548
|
-
UsePropertyAccessMode(propertyAccessMode:
|
|
549
|
-
UsePropertyAccessMode(propertyAccessMode:
|
|
592
|
+
UsePropertyAccessMode(propertyAccessMode: Nullable_1<PropertyAccessMode>, fromDataAnnotation?: boolean): IConventionServicePropertyBuilder | undefined;
|
|
593
|
+
UsePropertyAccessMode(propertyAccessMode: Nullable_1<PropertyAccessMode>, fromDataAnnotation?: boolean): IConventionServicePropertyBuilder;
|
|
550
594
|
CanRemoveAnnotation(name: string, fromDataAnnotation?: boolean): boolean;
|
|
551
595
|
HasAnnotation2(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionServicePropertyBuilder;
|
|
552
596
|
HasNoAnnotation2(name: string, fromDataAnnotation?: boolean): IConventionServicePropertyBuilder;
|
|
@@ -556,11 +600,13 @@ export interface IConventionServicePropertyBuilder$instance extends IConventionP
|
|
|
556
600
|
export type IConventionServicePropertyBuilder = IConventionServicePropertyBuilder$instance;
|
|
557
601
|
|
|
558
602
|
export interface IConventionSkipNavigationBuilder$instance extends IConventionPropertyBaseBuilder_1<IConventionSkipNavigationBuilder>, IConventionAnnotatableBuilder {
|
|
603
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Builders_IConventionSkipNavigationBuilder: never;
|
|
604
|
+
|
|
559
605
|
readonly Metadata: IConventionSkipNavigation;
|
|
560
606
|
readonly ModelBuilder: IConventionModelBuilder;
|
|
561
|
-
AutoInclude(autoInclude:
|
|
607
|
+
AutoInclude(autoInclude: Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): IConventionSkipNavigationBuilder | undefined;
|
|
562
608
|
CanSetAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): boolean;
|
|
563
|
-
CanSetAutoInclude(autoInclude:
|
|
609
|
+
CanSetAutoInclude(autoInclude: Nullable_1<System_Internal.Boolean>, fromDataAnnotation?: boolean): boolean;
|
|
564
610
|
CanSetField(fieldInfo: FieldInfo, fromDataAnnotation?: boolean): boolean;
|
|
565
611
|
CanSetField(fieldName: string, fromDataAnnotation?: boolean): boolean;
|
|
566
612
|
CanSetForeignKey(foreignKey: IConventionForeignKey, fromDataAnnotation?: boolean): boolean;
|
|
@@ -574,16 +620,18 @@ export interface IConventionSkipNavigationBuilder$instance extends IConventionPr
|
|
|
574
620
|
HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
|
|
575
621
|
HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionSkipNavigationBuilder | undefined;
|
|
576
622
|
CanRemoveAnnotation(name: string, fromDataAnnotation?: boolean): boolean;
|
|
577
|
-
CanSetPropertyAccessMode(propertyAccessMode:
|
|
623
|
+
CanSetPropertyAccessMode(propertyAccessMode: Nullable_1<PropertyAccessMode>, fromDataAnnotation?: boolean): boolean;
|
|
578
624
|
HasAnnotation2(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionSkipNavigationBuilder;
|
|
579
625
|
HasNoAnnotation2(name: string, fromDataAnnotation?: boolean): IConventionSkipNavigationBuilder;
|
|
580
|
-
UsePropertyAccessMode(propertyAccessMode:
|
|
626
|
+
UsePropertyAccessMode(propertyAccessMode: Nullable_1<PropertyAccessMode>, fromDataAnnotation?: boolean): IConventionSkipNavigationBuilder;
|
|
581
627
|
}
|
|
582
628
|
|
|
583
629
|
|
|
584
630
|
export type IConventionSkipNavigationBuilder = IConventionSkipNavigationBuilder$instance;
|
|
585
631
|
|
|
586
632
|
export interface IConventionStoredProcedureBuilder$instance extends IConventionAnnotatableBuilder {
|
|
633
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Builders_IConventionStoredProcedureBuilder: never;
|
|
634
|
+
|
|
587
635
|
readonly Metadata: IConventionStoredProcedure;
|
|
588
636
|
readonly ModelBuilder: IConventionModelBuilder;
|
|
589
637
|
CanHaveRowsAffectedParameter(fromDataAnnotation?: boolean): boolean;
|
|
@@ -605,6 +653,8 @@ export interface IConventionStoredProcedureBuilder$instance extends IConventionA
|
|
|
605
653
|
export type IConventionStoredProcedureBuilder = IConventionStoredProcedureBuilder$instance;
|
|
606
654
|
|
|
607
655
|
export interface IConventionStoredProcedureParameterBuilder$instance extends IConventionAnnotatableBuilder {
|
|
656
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Builders_IConventionStoredProcedureParameterBuilder: never;
|
|
657
|
+
|
|
608
658
|
readonly Metadata: IConventionStoredProcedureParameter;
|
|
609
659
|
readonly ModelBuilder: IConventionModelBuilder;
|
|
610
660
|
CanSetAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): boolean;
|
|
@@ -622,6 +672,8 @@ export interface IConventionStoredProcedureParameterBuilder$instance extends ICo
|
|
|
622
672
|
export type IConventionStoredProcedureParameterBuilder = IConventionStoredProcedureParameterBuilder$instance;
|
|
623
673
|
|
|
624
674
|
export interface IConventionStoredProcedureResultColumnBuilder$instance extends IConventionAnnotatableBuilder {
|
|
675
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Builders_IConventionStoredProcedureResultColumnBuilder: never;
|
|
676
|
+
|
|
625
677
|
readonly Metadata: IConventionStoredProcedureResultColumn;
|
|
626
678
|
readonly ModelBuilder: IConventionModelBuilder;
|
|
627
679
|
CanSetAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): boolean;
|
|
@@ -637,6 +689,8 @@ export interface IConventionStoredProcedureResultColumnBuilder$instance extends
|
|
|
637
689
|
export type IConventionStoredProcedureResultColumnBuilder = IConventionStoredProcedureResultColumnBuilder$instance;
|
|
638
690
|
|
|
639
691
|
export interface IConventionTriggerBuilder$instance extends IConventionAnnotatableBuilder {
|
|
692
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Builders_IConventionTriggerBuilder: never;
|
|
693
|
+
|
|
640
694
|
readonly Metadata: IConventionTrigger;
|
|
641
695
|
readonly ModelBuilder: IConventionModelBuilder;
|
|
642
696
|
CanRemoveAnnotation(name: string, fromDataAnnotation?: boolean): boolean;
|
|
@@ -651,6 +705,8 @@ export interface IConventionTriggerBuilder$instance extends IConventionAnnotatab
|
|
|
651
705
|
export type IConventionTriggerBuilder = IConventionTriggerBuilder$instance;
|
|
652
706
|
|
|
653
707
|
export interface IConventionTypeBaseBuilder$instance extends IConventionAnnotatableBuilder {
|
|
708
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Builders_IConventionTypeBaseBuilder: never;
|
|
709
|
+
|
|
654
710
|
readonly Metadata: IConventionTypeBase;
|
|
655
711
|
readonly ModelBuilder: IConventionModelBuilder;
|
|
656
712
|
CanHaveComplexProperty(memberInfo: MemberInfo, complexType?: Type, fromDataAnnotation?: boolean): boolean;
|
|
@@ -661,16 +717,16 @@ export interface IConventionTypeBaseBuilder$instance extends IConventionAnnotata
|
|
|
661
717
|
CanRemoveDiscriminator(fromDataAnnotation?: boolean): boolean;
|
|
662
718
|
CanRemoveProperty(property: IConventionProperty, fromDataAnnotation?: boolean): boolean;
|
|
663
719
|
CanSetAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): boolean;
|
|
664
|
-
CanSetChangeTrackingStrategy(changeTrackingStrategy:
|
|
720
|
+
CanSetChangeTrackingStrategy(changeTrackingStrategy: Nullable_1<ChangeTrackingStrategy>, fromDataAnnotation?: boolean): boolean;
|
|
665
721
|
CanSetDiscriminator(name: string, type: Type, fromDataAnnotation?: boolean): boolean;
|
|
666
722
|
CanSetDiscriminator(type: Type, fromDataAnnotation?: boolean): boolean;
|
|
667
723
|
ComplexProperty(memberInfo: MemberInfo, complexType?: Type, fromDataAnnotation?: boolean): IConventionComplexPropertyBuilder | undefined;
|
|
668
724
|
ComplexProperty(propertyType: Type, propertyName: string, complexType?: Type, fromDataAnnotation?: boolean): IConventionComplexPropertyBuilder | undefined;
|
|
669
|
-
GetOrCreateProperties(memberInfos:
|
|
670
|
-
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;
|
|
671
727
|
HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
|
|
672
728
|
HasAnnotation(name: string, value: unknown, fromDataAnnotation?: boolean): IConventionTypeBaseBuilder | undefined;
|
|
673
|
-
HasChangeTrackingStrategy(changeTrackingStrategy:
|
|
729
|
+
HasChangeTrackingStrategy(changeTrackingStrategy: Nullable_1<ChangeTrackingStrategy>, fromDataAnnotation?: boolean): IConventionTypeBaseBuilder | undefined;
|
|
674
730
|
HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionAnnotatableBuilder | undefined;
|
|
675
731
|
HasNoAnnotation(name: string, fromDataAnnotation?: boolean): IConventionTypeBaseBuilder | undefined;
|
|
676
732
|
HasNoComplexProperty(complexProperty: IConventionComplexProperty, fromDataAnnotation?: boolean): IConventionTypeBaseBuilder | undefined;
|
|
@@ -679,7 +735,7 @@ export interface IConventionTypeBaseBuilder$instance extends IConventionAnnotata
|
|
|
679
735
|
IsIgnored(memberName: string, fromDataAnnotation?: boolean): boolean;
|
|
680
736
|
Property(memberInfo: MemberInfo, fromDataAnnotation?: boolean): IConventionPropertyBuilder | undefined;
|
|
681
737
|
Property(propertyType: Type, propertyName: string, setTypeConfigurationSource?: boolean, fromDataAnnotation?: boolean): IConventionPropertyBuilder | undefined;
|
|
682
|
-
RemoveUnusedImplicitProperties(properties:
|
|
738
|
+
RemoveUnusedImplicitProperties(properties: IReadOnlyList_1<IConventionProperty>): IConventionTypeBaseBuilder;
|
|
683
739
|
CanRemoveAnnotation(name: string, fromDataAnnotation?: boolean): boolean;
|
|
684
740
|
}
|
|
685
741
|
|
|
@@ -687,6 +743,10 @@ export interface IConventionTypeBaseBuilder$instance extends IConventionAnnotata
|
|
|
687
743
|
export type IConventionTypeBaseBuilder = IConventionTypeBaseBuilder$instance;
|
|
688
744
|
|
|
689
745
|
export interface CheckConstraintBuilder$instance {
|
|
746
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_CheckConstraintBuilder: never;
|
|
747
|
+
|
|
748
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
749
|
+
|
|
690
750
|
readonly Builder: InternalCheckConstraintBuilder;
|
|
691
751
|
readonly Metadata: IMutableCheckConstraint;
|
|
692
752
|
Equals(obj: unknown): boolean;
|
|
@@ -706,12 +766,12 @@ export interface __CheckConstraintBuilder$views {
|
|
|
706
766
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionCheckConstraintBuilder>;
|
|
707
767
|
}
|
|
708
768
|
|
|
709
|
-
export interface CheckConstraintBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionCheckConstraintBuilder> {}
|
|
710
|
-
|
|
711
769
|
export type CheckConstraintBuilder = CheckConstraintBuilder$instance & __CheckConstraintBuilder$views;
|
|
712
770
|
|
|
713
771
|
|
|
714
772
|
export interface CollectionCollectionBuilder$instance {
|
|
773
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_CollectionCollectionBuilder: never;
|
|
774
|
+
|
|
715
775
|
readonly LeftEntityType: IMutableEntityType;
|
|
716
776
|
readonly LeftNavigation: IMutableSkipNavigation;
|
|
717
777
|
readonly ModelBuilder: InternalModelBuilder;
|
|
@@ -723,19 +783,19 @@ export interface CollectionCollectionBuilder$instance {
|
|
|
723
783
|
UsingEntity(joinEntityType: Type): EntityTypeBuilder;
|
|
724
784
|
UsingEntity(joinEntityName: string): EntityTypeBuilder;
|
|
725
785
|
UsingEntity(joinEntityName: string, joinEntityType: Type): EntityTypeBuilder;
|
|
726
|
-
UsingEntity(configureJoinEntityType:
|
|
727
|
-
UsingEntity(joinEntityType: Type, configureJoinEntityType:
|
|
728
|
-
UsingEntity(joinEntityName: string, configureJoinEntityType:
|
|
729
|
-
UsingEntity(joinEntityName: string, joinEntityType: Type, configureJoinEntityType:
|
|
730
|
-
UsingEntity(configureRight:
|
|
731
|
-
UsingEntity(joinEntityType: Type, configureRight:
|
|
732
|
-
UsingEntity(joinEntityName: string, configureRight:
|
|
733
|
-
UsingEntity(joinEntityName: string, joinEntityType: Type, configureRight:
|
|
734
|
-
UsingEntity(configureRight:
|
|
735
|
-
UsingEntity(joinEntityType: Type, configureRight:
|
|
736
|
-
UsingEntity(joinEntityName: string, configureRight:
|
|
737
|
-
UsingEntity(joinEntityName: string, joinEntityType: Type, configureRight:
|
|
738
|
-
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;
|
|
739
799
|
}
|
|
740
800
|
|
|
741
801
|
|
|
@@ -747,38 +807,40 @@ export const CollectionCollectionBuilder: {
|
|
|
747
807
|
export type CollectionCollectionBuilder = CollectionCollectionBuilder$instance;
|
|
748
808
|
|
|
749
809
|
export interface CollectionCollectionBuilder_2$instance<TLeftEntity, TRightEntity> extends CollectionCollectionBuilder {
|
|
810
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_CollectionCollectionBuilder_2: never;
|
|
811
|
+
|
|
750
812
|
UsingEntity<TJoinEntity>(): EntityTypeBuilder_1<TJoinEntity>;
|
|
751
813
|
UsingEntity<TJoinEntity>(joinEntityName: string): EntityTypeBuilder_1<TJoinEntity>;
|
|
752
|
-
UsingEntity(configureJoinEntityType:
|
|
753
|
-
UsingEntity(joinEntityType: Type, configureJoinEntityType:
|
|
754
|
-
UsingEntity(joinEntityName: string, configureJoinEntityType:
|
|
755
|
-
UsingEntity(joinEntityName: string, joinEntityType: Type, configureJoinEntityType:
|
|
756
|
-
UsingEntity<TJoinEntity>(configureJoinEntityType:
|
|
757
|
-
UsingEntity<TJoinEntity>(joinEntityName: string, configureJoinEntityType:
|
|
758
|
-
UsingEntity<TJoinEntity>(configureRight:
|
|
759
|
-
UsingEntity<TJoinEntity>(joinEntityName: string, configureRight:
|
|
760
|
-
UsingEntity(configureRight:
|
|
761
|
-
UsingEntity(joinEntityType: Type, configureRight:
|
|
762
|
-
UsingEntity(joinEntityName: string, configureRight:
|
|
763
|
-
UsingEntity(joinEntityName: string, joinEntityType: Type, configureRight:
|
|
764
|
-
UsingEntity<TJoinEntity>(configureRight:
|
|
765
|
-
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>;
|
|
766
828
|
UsingEntity(joinEntityType: Type): EntityTypeBuilder;
|
|
767
829
|
UsingEntity(joinEntityName: string): EntityTypeBuilder;
|
|
768
830
|
UsingEntity(joinEntityName: string, joinEntityType: Type): EntityTypeBuilder;
|
|
769
|
-
UsingEntity(configureJoinEntityType:
|
|
770
|
-
UsingEntity(joinEntityType: Type, configureJoinEntityType:
|
|
771
|
-
UsingEntity(joinEntityName: string, configureJoinEntityType:
|
|
772
|
-
UsingEntity(joinEntityName: string, joinEntityType: Type, configureJoinEntityType:
|
|
773
|
-
UsingEntity(configureRight:
|
|
774
|
-
UsingEntity(joinEntityType: Type, configureRight:
|
|
775
|
-
UsingEntity(joinEntityName: string, configureRight:
|
|
776
|
-
UsingEntity(joinEntityName: string, joinEntityType: Type, configureRight:
|
|
777
|
-
UsingEntity(configureRight:
|
|
778
|
-
UsingEntity(joinEntityType: Type, configureRight:
|
|
779
|
-
UsingEntity(joinEntityName: string, configureRight:
|
|
780
|
-
UsingEntity(joinEntityName: string, joinEntityType: Type, configureRight:
|
|
781
|
-
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;
|
|
782
844
|
}
|
|
783
845
|
|
|
784
846
|
|
|
@@ -790,6 +852,10 @@ export const CollectionCollectionBuilder_2: {
|
|
|
790
852
|
export type CollectionCollectionBuilder_2<TLeftEntity, TRightEntity> = CollectionCollectionBuilder_2$instance<TLeftEntity, TRightEntity>;
|
|
791
853
|
|
|
792
854
|
export interface CollectionNavigationBuilder$instance {
|
|
855
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_CollectionNavigationBuilder: never;
|
|
856
|
+
|
|
857
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
858
|
+
|
|
793
859
|
get Builder(): InternalForeignKeyBuilder | undefined;
|
|
794
860
|
set Builder(value: InternalForeignKeyBuilder | undefined);
|
|
795
861
|
readonly CollectionMember: MemberInfo | undefined;
|
|
@@ -819,12 +885,14 @@ export interface __CollectionNavigationBuilder$views {
|
|
|
819
885
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionForeignKeyBuilder>;
|
|
820
886
|
}
|
|
821
887
|
|
|
822
|
-
export interface CollectionNavigationBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionForeignKeyBuilder> {}
|
|
823
|
-
|
|
824
888
|
export type CollectionNavigationBuilder = CollectionNavigationBuilder$instance & __CollectionNavigationBuilder$views;
|
|
825
889
|
|
|
826
890
|
|
|
827
|
-
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
|
+
|
|
894
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
895
|
+
|
|
828
896
|
WithMany(navigationName?: string): CollectionCollectionBuilder_2<TRelatedEntity, TEntity>;
|
|
829
897
|
WithMany(navigationName?: string): CollectionCollectionBuilder;
|
|
830
898
|
WithOne(navigationName?: string): ReferenceCollectionBuilder_2<TEntity, TRelatedEntity>;
|
|
@@ -841,12 +909,14 @@ export interface __CollectionNavigationBuilder_2$views<TEntity, TRelatedEntity>
|
|
|
841
909
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionForeignKeyBuilder>;
|
|
842
910
|
}
|
|
843
911
|
|
|
844
|
-
export interface CollectionNavigationBuilder_2$instance<TEntity, TRelatedEntity> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionForeignKeyBuilder> {}
|
|
845
|
-
|
|
846
912
|
export type CollectionNavigationBuilder_2<TEntity, TRelatedEntity> = CollectionNavigationBuilder_2$instance<TEntity, TRelatedEntity> & __CollectionNavigationBuilder_2$views<TEntity, TRelatedEntity>;
|
|
847
913
|
|
|
848
914
|
|
|
849
915
|
export interface ColumnBuilder$instance {
|
|
916
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_ColumnBuilder: never;
|
|
917
|
+
|
|
918
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
919
|
+
|
|
850
920
|
readonly InternalOverrides: RelationalPropertyOverrides;
|
|
851
921
|
readonly Overrides: IMutableRelationalPropertyOverrides;
|
|
852
922
|
Equals(obj: unknown): boolean;
|
|
@@ -866,12 +936,14 @@ export interface __ColumnBuilder$views {
|
|
|
866
936
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<PropertyBuilder>;
|
|
867
937
|
}
|
|
868
938
|
|
|
869
|
-
export interface ColumnBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<PropertyBuilder> {}
|
|
870
|
-
|
|
871
939
|
export type ColumnBuilder = ColumnBuilder$instance & __ColumnBuilder$views;
|
|
872
940
|
|
|
873
941
|
|
|
874
|
-
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
|
+
|
|
945
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
946
|
+
|
|
875
947
|
HasAnnotation(annotation: string, value: unknown): ColumnBuilder;
|
|
876
948
|
HasColumnName(name: string): ColumnBuilder;
|
|
877
949
|
}
|
|
@@ -886,35 +958,37 @@ export interface __ColumnBuilder_1$views<TProperty> {
|
|
|
886
958
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<PropertyBuilder>;
|
|
887
959
|
}
|
|
888
960
|
|
|
889
|
-
export interface ColumnBuilder_1$instance<TProperty> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<PropertyBuilder> {}
|
|
890
|
-
|
|
891
961
|
export type ColumnBuilder_1<TProperty> = ColumnBuilder_1$instance<TProperty> & __ColumnBuilder_1$views<TProperty>;
|
|
892
962
|
|
|
893
963
|
|
|
894
964
|
export interface ComplexCollectionBuilder$instance {
|
|
965
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_ComplexCollectionBuilder: never;
|
|
966
|
+
|
|
967
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
968
|
+
|
|
895
969
|
readonly Metadata: IMutableComplexProperty;
|
|
896
970
|
readonly PropertyBuilder: InternalComplexPropertyBuilder;
|
|
897
971
|
readonly TypeBuilder: InternalComplexTypeBuilder;
|
|
898
972
|
ComplexCollection(propertyName: string): ComplexCollectionBuilder;
|
|
899
|
-
ComplexCollection<TProperty extends
|
|
900
|
-
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>;
|
|
901
975
|
ComplexCollection(propertyType: Type, propertyName: string): ComplexCollectionBuilder;
|
|
902
976
|
ComplexCollection(propertyType: Type, propertyName: string, complexTypeName: string): ComplexCollectionBuilder;
|
|
903
|
-
ComplexCollection(propertyName: string, buildAction:
|
|
904
|
-
ComplexCollection<TProperty extends
|
|
905
|
-
ComplexCollection<TProperty extends
|
|
906
|
-
ComplexCollection(propertyType: Type, propertyName: string, buildAction:
|
|
907
|
-
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;
|
|
908
982
|
ComplexProperty(propertyName: string): ComplexPropertyBuilder;
|
|
909
983
|
ComplexProperty<TProperty>(propertyName: string): ComplexPropertyBuilder_1<TProperty>;
|
|
910
984
|
ComplexProperty<TProperty>(propertyName: string, complexTypeName: string): ComplexPropertyBuilder_1<TProperty>;
|
|
911
985
|
ComplexProperty(propertyType: Type, propertyName: string): ComplexPropertyBuilder;
|
|
912
986
|
ComplexProperty(propertyType: Type, propertyName: string, complexTypeName: string): ComplexPropertyBuilder;
|
|
913
|
-
ComplexProperty(propertyName: string, buildAction:
|
|
914
|
-
ComplexProperty<TProperty>(propertyName: string, buildAction:
|
|
915
|
-
ComplexProperty<TProperty>(propertyName: string, complexTypeName: string, buildAction:
|
|
916
|
-
ComplexProperty(propertyType: Type, propertyName: string, buildAction:
|
|
917
|
-
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;
|
|
918
992
|
Equals(obj: unknown): boolean;
|
|
919
993
|
GetHashCode(): int;
|
|
920
994
|
HasChangeTrackingStrategy(changeTrackingStrategy: ChangeTrackingStrategy): ComplexCollectionBuilder;
|
|
@@ -946,34 +1020,36 @@ export interface __ComplexCollectionBuilder$views {
|
|
|
946
1020
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionComplexPropertyBuilder>;
|
|
947
1021
|
}
|
|
948
1022
|
|
|
949
|
-
export interface ComplexCollectionBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionComplexPropertyBuilder> {}
|
|
950
|
-
|
|
951
1023
|
export type ComplexCollectionBuilder = ComplexCollectionBuilder$instance & __ComplexCollectionBuilder$views;
|
|
952
1024
|
|
|
953
1025
|
|
|
954
|
-
export interface ComplexCollectionBuilder_1$instance<TComplex> extends ComplexCollectionBuilder$instance {
|
|
955
|
-
|
|
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
|
+
|
|
1029
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
1030
|
+
|
|
1031
|
+
ComplexCollection<TElement>(propertyExpression: Expression_1<Func_2<TComplex, IEnumerable_1<TElement>>>, complexTypeName: string): ComplexCollectionBuilder_1<TElement>;
|
|
956
1032
|
ComplexCollection(propertyName: string): ComplexCollectionBuilder;
|
|
957
|
-
ComplexCollection<TProperty extends
|
|
958
|
-
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>;
|
|
959
1035
|
ComplexCollection(propertyType: Type, propertyName: string): ComplexCollectionBuilder;
|
|
960
1036
|
ComplexCollection(propertyType: Type, propertyName: string, complexTypeName: string): ComplexCollectionBuilder;
|
|
961
|
-
ComplexCollection(propertyName: string, buildAction:
|
|
962
|
-
ComplexCollection<TProperty extends
|
|
963
|
-
ComplexCollection(propertyType: Type, propertyName: string, buildAction:
|
|
964
|
-
ComplexCollection(propertyType: Type, propertyName: string, complexTypeName: string, buildAction:
|
|
965
|
-
ComplexProperty<TProperty>(propertyName: string, buildAction:
|
|
966
|
-
ComplexProperty<TProperty>(propertyName: string, complexTypeName: string, buildAction:
|
|
967
|
-
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>;
|
|
968
1044
|
ComplexProperty(propertyName: string): ComplexPropertyBuilder;
|
|
969
1045
|
ComplexProperty<TProperty>(propertyName: string): ComplexPropertyBuilder_1<TProperty>;
|
|
970
1046
|
ComplexProperty<TProperty>(propertyName: string, complexTypeName: string): ComplexPropertyBuilder_1<TProperty>;
|
|
971
1047
|
ComplexProperty(propertyType: Type, propertyName: string): ComplexPropertyBuilder;
|
|
972
1048
|
ComplexProperty(propertyType: Type, propertyName: string, complexTypeName: string): ComplexPropertyBuilder;
|
|
973
|
-
ComplexProperty(propertyName: string, buildAction:
|
|
974
|
-
ComplexProperty<TProperty>(propertyName: string, complexTypeName: string, buildAction:
|
|
975
|
-
ComplexProperty(propertyType: Type, propertyName: string, buildAction:
|
|
976
|
-
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;
|
|
977
1053
|
HasChangeTrackingStrategy(changeTrackingStrategy: ChangeTrackingStrategy): ComplexCollectionBuilder;
|
|
978
1054
|
HasField(fieldName: string): ComplexCollectionBuilder;
|
|
979
1055
|
HasPropertyAnnotation(annotation: string, value: unknown): ComplexCollectionBuilder;
|
|
@@ -1001,12 +1077,14 @@ export interface __ComplexCollectionBuilder_1$views<TComplex> {
|
|
|
1001
1077
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionComplexPropertyBuilder>;
|
|
1002
1078
|
}
|
|
1003
1079
|
|
|
1004
|
-
export interface ComplexCollectionBuilder_1$instance<TComplex> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionComplexPropertyBuilder> {}
|
|
1005
|
-
|
|
1006
1080
|
export type ComplexCollectionBuilder_1<TComplex> = ComplexCollectionBuilder_1$instance<TComplex> & __ComplexCollectionBuilder_1$views<TComplex>;
|
|
1007
1081
|
|
|
1008
1082
|
|
|
1009
1083
|
export interface ComplexCollectionTypePropertyBuilder$instance {
|
|
1084
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_ComplexCollectionTypePropertyBuilder: never;
|
|
1085
|
+
|
|
1086
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
1087
|
+
|
|
1010
1088
|
readonly Metadata: IMutableProperty;
|
|
1011
1089
|
Equals(obj: unknown): boolean;
|
|
1012
1090
|
GetHashCode(): int;
|
|
@@ -1044,12 +1122,14 @@ export interface __ComplexCollectionTypePropertyBuilder$views {
|
|
|
1044
1122
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionPropertyBuilder>;
|
|
1045
1123
|
}
|
|
1046
1124
|
|
|
1047
|
-
export interface ComplexCollectionTypePropertyBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionPropertyBuilder> {}
|
|
1048
|
-
|
|
1049
1125
|
export type ComplexCollectionTypePropertyBuilder = ComplexCollectionTypePropertyBuilder$instance & __ComplexCollectionTypePropertyBuilder$views;
|
|
1050
1126
|
|
|
1051
1127
|
|
|
1052
|
-
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
|
+
|
|
1131
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
1132
|
+
|
|
1053
1133
|
HasAnnotation(annotation: string, value: unknown): ComplexCollectionTypePropertyBuilder;
|
|
1054
1134
|
HasConversion(providerClrType: Type): ComplexCollectionTypePropertyBuilder_1<TProperty>;
|
|
1055
1135
|
HasConversion<TProvider>(converter: ValueConverter_2<TProperty, TProvider>): ComplexCollectionTypePropertyBuilder_1<TProperty>;
|
|
@@ -1093,12 +1173,12 @@ export interface __ComplexCollectionTypePropertyBuilder_1$views<TProperty> {
|
|
|
1093
1173
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionPropertyBuilder>;
|
|
1094
1174
|
}
|
|
1095
1175
|
|
|
1096
|
-
export interface ComplexCollectionTypePropertyBuilder_1$instance<TProperty> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionPropertyBuilder> {}
|
|
1097
|
-
|
|
1098
1176
|
export type ComplexCollectionTypePropertyBuilder_1<TProperty> = ComplexCollectionTypePropertyBuilder_1$instance<TProperty> & __ComplexCollectionTypePropertyBuilder_1$views<TProperty>;
|
|
1099
1177
|
|
|
1100
1178
|
|
|
1101
1179
|
export interface ComplexPropertiesConfigurationBuilder$instance {
|
|
1180
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_ComplexPropertiesConfigurationBuilder: never;
|
|
1181
|
+
|
|
1102
1182
|
readonly Configuration: ComplexPropertyConfiguration;
|
|
1103
1183
|
Equals(obj: unknown): boolean;
|
|
1104
1184
|
GetHashCode(): int;
|
|
@@ -1114,6 +1194,8 @@ export const ComplexPropertiesConfigurationBuilder: {
|
|
|
1114
1194
|
export type ComplexPropertiesConfigurationBuilder = ComplexPropertiesConfigurationBuilder$instance;
|
|
1115
1195
|
|
|
1116
1196
|
export interface ComplexPropertiesConfigurationBuilder_1$instance<TProperty> extends ComplexPropertiesConfigurationBuilder {
|
|
1197
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_ComplexPropertiesConfigurationBuilder_1: never;
|
|
1198
|
+
|
|
1117
1199
|
}
|
|
1118
1200
|
|
|
1119
1201
|
|
|
@@ -1125,29 +1207,33 @@ export const ComplexPropertiesConfigurationBuilder_1: {
|
|
|
1125
1207
|
export type ComplexPropertiesConfigurationBuilder_1<TProperty> = ComplexPropertiesConfigurationBuilder_1$instance<TProperty>;
|
|
1126
1208
|
|
|
1127
1209
|
export interface ComplexPropertyBuilder$instance {
|
|
1210
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_ComplexPropertyBuilder: never;
|
|
1211
|
+
|
|
1212
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
1213
|
+
|
|
1128
1214
|
readonly Metadata: IMutableComplexProperty;
|
|
1129
1215
|
readonly PropertyBuilder: InternalComplexPropertyBuilder;
|
|
1130
1216
|
readonly TypeBuilder: InternalComplexTypeBuilder;
|
|
1131
1217
|
ComplexCollection(propertyName: string): ComplexCollectionBuilder;
|
|
1132
|
-
ComplexCollection<TProperty extends
|
|
1133
|
-
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>;
|
|
1134
1220
|
ComplexCollection(propertyType: Type, propertyName: string): ComplexCollectionBuilder;
|
|
1135
1221
|
ComplexCollection(propertyType: Type, propertyName: string, complexTypeName: string): ComplexCollectionBuilder;
|
|
1136
|
-
ComplexCollection(propertyName: string, buildAction:
|
|
1137
|
-
ComplexCollection<TProperty extends
|
|
1138
|
-
ComplexCollection<TProperty extends
|
|
1139
|
-
ComplexCollection(propertyType: Type, propertyName: string, buildAction:
|
|
1140
|
-
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;
|
|
1141
1227
|
ComplexProperty(propertyName: string): ComplexPropertyBuilder;
|
|
1142
1228
|
ComplexProperty<TProperty>(propertyName: string): ComplexPropertyBuilder_1<TProperty>;
|
|
1143
1229
|
ComplexProperty<TProperty>(propertyName: string, complexTypeName: string): ComplexPropertyBuilder_1<TProperty>;
|
|
1144
1230
|
ComplexProperty(propertyType: Type, propertyName: string): ComplexPropertyBuilder;
|
|
1145
1231
|
ComplexProperty(propertyType: Type, propertyName: string, complexTypeName: string): ComplexPropertyBuilder;
|
|
1146
|
-
ComplexProperty(propertyName: string, buildAction:
|
|
1147
|
-
ComplexProperty<TProperty>(propertyName: string, buildAction:
|
|
1148
|
-
ComplexProperty<TProperty>(propertyName: string, complexTypeName: string, buildAction:
|
|
1149
|
-
ComplexProperty(propertyType: Type, propertyName: string, buildAction:
|
|
1150
|
-
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;
|
|
1151
1237
|
Equals(obj: unknown): boolean;
|
|
1152
1238
|
GetHashCode(): int;
|
|
1153
1239
|
HasChangeTrackingStrategy(changeTrackingStrategy: ChangeTrackingStrategy): ComplexPropertyBuilder;
|
|
@@ -1183,34 +1269,36 @@ export interface __ComplexPropertyBuilder$views {
|
|
|
1183
1269
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionComplexPropertyBuilder>;
|
|
1184
1270
|
}
|
|
1185
1271
|
|
|
1186
|
-
export interface ComplexPropertyBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionComplexPropertyBuilder> {}
|
|
1187
|
-
|
|
1188
1272
|
export type ComplexPropertyBuilder = ComplexPropertyBuilder$instance & __ComplexPropertyBuilder$views;
|
|
1189
1273
|
|
|
1190
1274
|
|
|
1191
|
-
export interface ComplexPropertyBuilder_1$instance<TComplex> extends ComplexPropertyBuilder$instance {
|
|
1192
|
-
|
|
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
|
+
|
|
1278
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
1279
|
+
|
|
1280
|
+
ComplexCollection<TElement>(propertyExpression: Expression_1<Func_2<TComplex, IEnumerable_1<TElement>>>, complexTypeName: string): ComplexCollectionBuilder_1<TElement>;
|
|
1193
1281
|
ComplexCollection(propertyName: string): ComplexCollectionBuilder;
|
|
1194
|
-
ComplexCollection<TProperty extends
|
|
1195
|
-
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>;
|
|
1196
1284
|
ComplexCollection(propertyType: Type, propertyName: string): ComplexCollectionBuilder;
|
|
1197
1285
|
ComplexCollection(propertyType: Type, propertyName: string, complexTypeName: string): ComplexCollectionBuilder;
|
|
1198
|
-
ComplexCollection(propertyName: string, buildAction:
|
|
1199
|
-
ComplexCollection<TProperty extends
|
|
1200
|
-
ComplexCollection(propertyType: Type, propertyName: string, buildAction:
|
|
1201
|
-
ComplexCollection(propertyType: Type, propertyName: string, complexTypeName: string, buildAction:
|
|
1202
|
-
ComplexProperty<TProperty>(propertyName: string, buildAction:
|
|
1203
|
-
ComplexProperty<TProperty>(propertyName: string, complexTypeName: string, buildAction:
|
|
1204
|
-
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>;
|
|
1205
1293
|
ComplexProperty(propertyName: string): ComplexPropertyBuilder;
|
|
1206
1294
|
ComplexProperty<TProperty>(propertyName: string): ComplexPropertyBuilder_1<TProperty>;
|
|
1207
1295
|
ComplexProperty<TProperty>(propertyName: string, complexTypeName: string): ComplexPropertyBuilder_1<TProperty>;
|
|
1208
1296
|
ComplexProperty(propertyType: Type, propertyName: string): ComplexPropertyBuilder;
|
|
1209
1297
|
ComplexProperty(propertyType: Type, propertyName: string, complexTypeName: string): ComplexPropertyBuilder;
|
|
1210
|
-
ComplexProperty(propertyName: string, buildAction:
|
|
1211
|
-
ComplexProperty<TProperty>(propertyName: string, complexTypeName: string, buildAction:
|
|
1212
|
-
ComplexProperty(propertyType: Type, propertyName: string, buildAction:
|
|
1213
|
-
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;
|
|
1214
1302
|
HasChangeTrackingStrategy(changeTrackingStrategy: ChangeTrackingStrategy): ComplexPropertyBuilder;
|
|
1215
1303
|
HasDiscriminator(): ComplexTypeDiscriminatorBuilder;
|
|
1216
1304
|
HasDiscriminator(name: string, type: Type): ComplexTypeDiscriminatorBuilder;
|
|
@@ -1242,12 +1330,14 @@ export interface __ComplexPropertyBuilder_1$views<TComplex> {
|
|
|
1242
1330
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionComplexPropertyBuilder>;
|
|
1243
1331
|
}
|
|
1244
1332
|
|
|
1245
|
-
export interface ComplexPropertyBuilder_1$instance<TComplex> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionComplexPropertyBuilder> {}
|
|
1246
|
-
|
|
1247
1333
|
export type ComplexPropertyBuilder_1<TComplex> = ComplexPropertyBuilder_1$instance<TComplex> & __ComplexPropertyBuilder_1$views<TComplex>;
|
|
1248
1334
|
|
|
1249
1335
|
|
|
1250
1336
|
export interface ComplexTypeDiscriminatorBuilder$instance {
|
|
1337
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_ComplexTypeDiscriminatorBuilder: never;
|
|
1338
|
+
|
|
1339
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Builders_IConventionComplexTypeDiscriminatorBuilder: never;
|
|
1340
|
+
|
|
1251
1341
|
readonly ComplexTypeBuilder: InternalComplexTypeBuilder;
|
|
1252
1342
|
Equals(obj: unknown): boolean;
|
|
1253
1343
|
GetHashCode(): int;
|
|
@@ -1269,6 +1359,8 @@ export type ComplexTypeDiscriminatorBuilder = ComplexTypeDiscriminatorBuilder$in
|
|
|
1269
1359
|
|
|
1270
1360
|
|
|
1271
1361
|
export interface ComplexTypeDiscriminatorBuilder_1$instance<TDiscriminator> {
|
|
1362
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_ComplexTypeDiscriminatorBuilder_1: never;
|
|
1363
|
+
|
|
1272
1364
|
HasValue(value: TDiscriminator): ComplexTypeDiscriminatorBuilder_1<TDiscriminator>;
|
|
1273
1365
|
}
|
|
1274
1366
|
|
|
@@ -1281,9 +1373,13 @@ export const ComplexTypeDiscriminatorBuilder_1: {
|
|
|
1281
1373
|
export type ComplexTypeDiscriminatorBuilder_1<TDiscriminator> = ComplexTypeDiscriminatorBuilder_1$instance<TDiscriminator>;
|
|
1282
1374
|
|
|
1283
1375
|
export interface ComplexTypePrimitiveCollectionBuilder$instance {
|
|
1376
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_ComplexTypePrimitiveCollectionBuilder: never;
|
|
1377
|
+
|
|
1378
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
1379
|
+
|
|
1284
1380
|
readonly Metadata: IMutableProperty;
|
|
1285
1381
|
ElementType(): ElementTypeBuilder;
|
|
1286
|
-
ElementType(builderAction:
|
|
1382
|
+
ElementType(builderAction: Action_1<ElementTypeBuilder>): ComplexTypePrimitiveCollectionBuilder;
|
|
1287
1383
|
Equals(obj: unknown): boolean;
|
|
1288
1384
|
GetHashCode(): int;
|
|
1289
1385
|
HasAnnotation(annotation: string, value: unknown): ComplexTypePrimitiveCollectionBuilder;
|
|
@@ -1316,14 +1412,16 @@ export interface __ComplexTypePrimitiveCollectionBuilder$views {
|
|
|
1316
1412
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionPropertyBuilder>;
|
|
1317
1413
|
}
|
|
1318
1414
|
|
|
1319
|
-
export interface ComplexTypePrimitiveCollectionBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionPropertyBuilder> {}
|
|
1320
|
-
|
|
1321
1415
|
export type ComplexTypePrimitiveCollectionBuilder = ComplexTypePrimitiveCollectionBuilder$instance & __ComplexTypePrimitiveCollectionBuilder$views;
|
|
1322
1416
|
|
|
1323
1417
|
|
|
1324
|
-
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
|
+
|
|
1421
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
1422
|
+
|
|
1325
1423
|
ElementType(): ElementTypeBuilder;
|
|
1326
|
-
ElementType(builderAction:
|
|
1424
|
+
ElementType(builderAction: Action_1<ElementTypeBuilder>): ComplexTypePrimitiveCollectionBuilder;
|
|
1327
1425
|
HasAnnotation(annotation: string, value: unknown): ComplexTypePrimitiveCollectionBuilder;
|
|
1328
1426
|
HasField(fieldName: string): ComplexTypePrimitiveCollectionBuilder;
|
|
1329
1427
|
HasMaxLength(maxLength: int): ComplexTypePrimitiveCollectionBuilder;
|
|
@@ -1354,12 +1452,14 @@ export interface __ComplexTypePrimitiveCollectionBuilder_1$views<TProperty> {
|
|
|
1354
1452
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionPropertyBuilder>;
|
|
1355
1453
|
}
|
|
1356
1454
|
|
|
1357
|
-
export interface ComplexTypePrimitiveCollectionBuilder_1$instance<TProperty> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionPropertyBuilder> {}
|
|
1358
|
-
|
|
1359
1455
|
export type ComplexTypePrimitiveCollectionBuilder_1<TProperty> = ComplexTypePrimitiveCollectionBuilder_1$instance<TProperty> & __ComplexTypePrimitiveCollectionBuilder_1$views<TProperty>;
|
|
1360
1456
|
|
|
1361
1457
|
|
|
1362
1458
|
export interface ComplexTypePropertyBuilder$instance {
|
|
1459
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_ComplexTypePropertyBuilder: never;
|
|
1460
|
+
|
|
1461
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
1462
|
+
|
|
1363
1463
|
readonly Metadata: IMutableProperty;
|
|
1364
1464
|
Equals(obj: unknown): boolean;
|
|
1365
1465
|
GetHashCode(): int;
|
|
@@ -1407,12 +1507,14 @@ export interface __ComplexTypePropertyBuilder$views {
|
|
|
1407
1507
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionPropertyBuilder>;
|
|
1408
1508
|
}
|
|
1409
1509
|
|
|
1410
|
-
export interface ComplexTypePropertyBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionPropertyBuilder> {}
|
|
1411
|
-
|
|
1412
1510
|
export type ComplexTypePropertyBuilder = ComplexTypePropertyBuilder$instance & __ComplexTypePropertyBuilder$views;
|
|
1413
1511
|
|
|
1414
1512
|
|
|
1415
|
-
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
|
+
|
|
1516
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
1517
|
+
|
|
1416
1518
|
HasAnnotation(annotation: string, value: unknown): ComplexTypePropertyBuilder;
|
|
1417
1519
|
HasConversion(providerClrType: Type): ComplexTypePropertyBuilder_1<TProperty>;
|
|
1418
1520
|
HasConversion<TProvider>(converter: ValueConverter_2<TProperty, TProvider>): ComplexTypePropertyBuilder_1<TProperty>;
|
|
@@ -1466,18 +1568,18 @@ export interface __ComplexTypePropertyBuilder_1$views<TProperty> {
|
|
|
1466
1568
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionPropertyBuilder>;
|
|
1467
1569
|
}
|
|
1468
1570
|
|
|
1469
|
-
export interface ComplexTypePropertyBuilder_1$instance<TProperty> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionPropertyBuilder> {}
|
|
1470
|
-
|
|
1471
1571
|
export type ComplexTypePropertyBuilder_1<TProperty> = ComplexTypePropertyBuilder_1$instance<TProperty> & __ComplexTypePropertyBuilder_1$views<TProperty>;
|
|
1472
1572
|
|
|
1473
1573
|
|
|
1474
1574
|
export interface ConventionSetBuilder$instance {
|
|
1475
|
-
|
|
1575
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_ConventionSetBuilder: never;
|
|
1576
|
+
|
|
1577
|
+
Add(conventionFactory: Func_2<IServiceProvider, IConvention>): void;
|
|
1476
1578
|
Equals(obj: unknown): boolean;
|
|
1477
1579
|
GetHashCode(): int;
|
|
1478
1580
|
Remove(conventionType: Type): void;
|
|
1479
1581
|
Remove<TImplementation extends IConvention>(): void;
|
|
1480
|
-
Replace<TImplementation extends IConvention>(conventionFactory:
|
|
1582
|
+
Replace<TImplementation extends IConvention>(conventionFactory: Func_2<IServiceProvider, TImplementation>): void;
|
|
1481
1583
|
ToString(): string | undefined;
|
|
1482
1584
|
}
|
|
1483
1585
|
|
|
@@ -1490,6 +1592,8 @@ export const ConventionSetBuilder: {
|
|
|
1490
1592
|
export type ConventionSetBuilder = ConventionSetBuilder$instance;
|
|
1491
1593
|
|
|
1492
1594
|
export interface DataBuilder$instance {
|
|
1595
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_DataBuilder: never;
|
|
1596
|
+
|
|
1493
1597
|
Equals(obj: unknown): boolean;
|
|
1494
1598
|
GetHashCode(): int;
|
|
1495
1599
|
ToString(): string | undefined;
|
|
@@ -1504,6 +1608,8 @@ export const DataBuilder: {
|
|
|
1504
1608
|
export type DataBuilder = DataBuilder$instance;
|
|
1505
1609
|
|
|
1506
1610
|
export interface DataBuilder_1$instance<TEntity> extends DataBuilder {
|
|
1611
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_DataBuilder_1: never;
|
|
1612
|
+
|
|
1507
1613
|
}
|
|
1508
1614
|
|
|
1509
1615
|
|
|
@@ -1515,13 +1621,17 @@ export const DataBuilder_1: {
|
|
|
1515
1621
|
export type DataBuilder_1<TEntity> = DataBuilder_1$instance<TEntity>;
|
|
1516
1622
|
|
|
1517
1623
|
export interface DbFunctionBuilder$instance extends DbFunctionBuilderBase$instance {
|
|
1624
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_DbFunctionBuilder: never;
|
|
1625
|
+
|
|
1626
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
1627
|
+
|
|
1518
1628
|
HasAnnotation(annotation: string, value: unknown): DbFunctionBuilder;
|
|
1519
1629
|
HasName(name: string): DbFunctionBuilderBase;
|
|
1520
1630
|
HasParameter(name: string): DbFunctionParameterBuilder;
|
|
1521
|
-
HasParameter(name: string, buildAction:
|
|
1631
|
+
HasParameter(name: string, buildAction: Action_1<DbFunctionParameterBuilder>): DbFunctionBuilderBase;
|
|
1522
1632
|
HasSchema(schema: string): DbFunctionBuilderBase;
|
|
1523
1633
|
HasStoreType(storeType: string): DbFunctionBuilder;
|
|
1524
|
-
HasTranslation(translation:
|
|
1634
|
+
HasTranslation(translation: Func_2<IReadOnlyList_1<SqlExpression>, SqlExpression>): DbFunctionBuilder;
|
|
1525
1635
|
IsBuiltIn(builtIn?: boolean): DbFunctionBuilderBase;
|
|
1526
1636
|
IsNullable(nullable?: boolean): DbFunctionBuilderBase;
|
|
1527
1637
|
}
|
|
@@ -1536,19 +1646,21 @@ export interface __DbFunctionBuilder$views {
|
|
|
1536
1646
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionDbFunctionBuilder>;
|
|
1537
1647
|
}
|
|
1538
1648
|
|
|
1539
|
-
export interface DbFunctionBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionDbFunctionBuilder> {}
|
|
1540
|
-
|
|
1541
1649
|
export type DbFunctionBuilder = DbFunctionBuilder$instance & __DbFunctionBuilder$views;
|
|
1542
1650
|
|
|
1543
1651
|
|
|
1544
1652
|
export interface DbFunctionBuilderBase$instance {
|
|
1653
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_DbFunctionBuilderBase: never;
|
|
1654
|
+
|
|
1655
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
1656
|
+
|
|
1545
1657
|
readonly Builder: InternalDbFunctionBuilder;
|
|
1546
1658
|
readonly Metadata: IMutableDbFunction;
|
|
1547
1659
|
Equals(obj: unknown): boolean;
|
|
1548
1660
|
GetHashCode(): int;
|
|
1549
1661
|
HasName(name: string): DbFunctionBuilderBase;
|
|
1550
1662
|
HasParameter(name: string): DbFunctionParameterBuilder;
|
|
1551
|
-
HasParameter(name: string, buildAction:
|
|
1663
|
+
HasParameter(name: string, buildAction: Action_1<DbFunctionParameterBuilder>): DbFunctionBuilderBase;
|
|
1552
1664
|
HasSchema(schema: string): DbFunctionBuilderBase;
|
|
1553
1665
|
IsBuiltIn(builtIn?: boolean): DbFunctionBuilderBase;
|
|
1554
1666
|
ToString(): string | undefined;
|
|
@@ -1563,12 +1675,14 @@ export interface __DbFunctionBuilderBase$views {
|
|
|
1563
1675
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionDbFunctionBuilder>;
|
|
1564
1676
|
}
|
|
1565
1677
|
|
|
1566
|
-
export interface DbFunctionBuilderBase$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionDbFunctionBuilder> {}
|
|
1567
|
-
|
|
1568
1678
|
export type DbFunctionBuilderBase = DbFunctionBuilderBase$instance & __DbFunctionBuilderBase$views;
|
|
1569
1679
|
|
|
1570
1680
|
|
|
1571
1681
|
export interface DbFunctionParameterBuilder$instance {
|
|
1682
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_DbFunctionParameterBuilder: never;
|
|
1683
|
+
|
|
1684
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
1685
|
+
|
|
1572
1686
|
readonly Metadata: IMutableDbFunctionParameter;
|
|
1573
1687
|
Equals(obj: unknown): boolean;
|
|
1574
1688
|
GetHashCode(): int;
|
|
@@ -1587,12 +1701,14 @@ export interface __DbFunctionParameterBuilder$views {
|
|
|
1587
1701
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionDbFunctionParameterBuilder>;
|
|
1588
1702
|
}
|
|
1589
1703
|
|
|
1590
|
-
export interface DbFunctionParameterBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionDbFunctionParameterBuilder> {}
|
|
1591
|
-
|
|
1592
1704
|
export type DbFunctionParameterBuilder = DbFunctionParameterBuilder$instance & __DbFunctionParameterBuilder$views;
|
|
1593
1705
|
|
|
1594
1706
|
|
|
1595
1707
|
export interface DiscriminatorBuilder$instance {
|
|
1708
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_DiscriminatorBuilder: never;
|
|
1709
|
+
|
|
1710
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Builders_IConventionDiscriminatorBuilder: never;
|
|
1711
|
+
|
|
1596
1712
|
readonly EntityTypeBuilder: InternalEntityTypeBuilder;
|
|
1597
1713
|
Equals(obj: unknown): boolean;
|
|
1598
1714
|
GetHashCode(): int;
|
|
@@ -1617,6 +1733,8 @@ export type DiscriminatorBuilder = DiscriminatorBuilder$instance & __Discriminat
|
|
|
1617
1733
|
|
|
1618
1734
|
|
|
1619
1735
|
export interface DiscriminatorBuilder_1$instance<TDiscriminator> {
|
|
1736
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_DiscriminatorBuilder_1: never;
|
|
1737
|
+
|
|
1620
1738
|
HasValue(value: TDiscriminator): DiscriminatorBuilder_1<TDiscriminator>;
|
|
1621
1739
|
HasValue(entityType: Type, value: TDiscriminator): DiscriminatorBuilder_1<TDiscriminator>;
|
|
1622
1740
|
HasValue(entityTypeName: string, value: TDiscriminator): DiscriminatorBuilder_1<TDiscriminator>;
|
|
@@ -1632,6 +1750,10 @@ export const DiscriminatorBuilder_1: {
|
|
|
1632
1750
|
export type DiscriminatorBuilder_1<TDiscriminator> = DiscriminatorBuilder_1$instance<TDiscriminator>;
|
|
1633
1751
|
|
|
1634
1752
|
export interface ElementTypeBuilder$instance {
|
|
1753
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_ElementTypeBuilder: never;
|
|
1754
|
+
|
|
1755
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
1756
|
+
|
|
1635
1757
|
readonly Metadata: IMutableElementType;
|
|
1636
1758
|
Equals(obj: unknown): boolean;
|
|
1637
1759
|
GetHashCode(): int;
|
|
@@ -1661,34 +1783,36 @@ export interface __ElementTypeBuilder$views {
|
|
|
1661
1783
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionElementTypeBuilder>;
|
|
1662
1784
|
}
|
|
1663
1785
|
|
|
1664
|
-
export interface ElementTypeBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionElementTypeBuilder> {}
|
|
1665
|
-
|
|
1666
1786
|
export type ElementTypeBuilder = ElementTypeBuilder$instance & __ElementTypeBuilder$views;
|
|
1667
1787
|
|
|
1668
1788
|
|
|
1669
1789
|
export interface EntityTypeBuilder$instance {
|
|
1790
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_EntityTypeBuilder: never;
|
|
1791
|
+
|
|
1792
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
1793
|
+
|
|
1670
1794
|
readonly Builder: InternalEntityTypeBuilder;
|
|
1671
1795
|
readonly Metadata: IMutableEntityType;
|
|
1672
1796
|
ComplexCollection(propertyName: string): ComplexCollectionBuilder;
|
|
1673
|
-
ComplexCollection<TProperty extends
|
|
1674
|
-
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>;
|
|
1675
1799
|
ComplexCollection(propertyType: Type, propertyName: string): ComplexCollectionBuilder;
|
|
1676
1800
|
ComplexCollection(propertyType: Type, propertyName: string, complexTypeName: string): ComplexCollectionBuilder;
|
|
1677
|
-
ComplexCollection(propertyName: string, buildAction:
|
|
1678
|
-
ComplexCollection<TProperty extends
|
|
1679
|
-
ComplexCollection<TProperty extends
|
|
1680
|
-
ComplexCollection(propertyType: Type, propertyName: string, buildAction:
|
|
1681
|
-
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;
|
|
1682
1806
|
ComplexProperty(propertyName: string): ComplexPropertyBuilder;
|
|
1683
1807
|
ComplexProperty<TProperty>(propertyName: string): ComplexPropertyBuilder_1<TProperty>;
|
|
1684
1808
|
ComplexProperty<TProperty>(propertyName: string, complexTypeName: string): ComplexPropertyBuilder_1<TProperty>;
|
|
1685
1809
|
ComplexProperty(propertyType: Type, propertyName: string): ComplexPropertyBuilder;
|
|
1686
1810
|
ComplexProperty(propertyType: Type, propertyName: string, complexTypeName: string): ComplexPropertyBuilder;
|
|
1687
|
-
ComplexProperty(propertyName: string, buildAction:
|
|
1688
|
-
ComplexProperty<TProperty>(propertyName: string, buildAction:
|
|
1689
|
-
ComplexProperty<TProperty>(propertyName: string, complexTypeName: string, buildAction:
|
|
1690
|
-
ComplexProperty(propertyType: Type, propertyName: string, buildAction:
|
|
1691
|
-
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;
|
|
1692
1816
|
Equals(obj: unknown): boolean;
|
|
1693
1817
|
FindRelatedEntityType(relatedTypeName: string, navigationName: string): EntityType;
|
|
1694
1818
|
FindRelatedEntityType(relatedType: Type, navigationName: string): EntityType;
|
|
@@ -1699,7 +1823,7 @@ export interface EntityTypeBuilder$instance {
|
|
|
1699
1823
|
HasBaseType(entityType: Type): EntityTypeBuilder;
|
|
1700
1824
|
HasChangeTrackingStrategy(changeTrackingStrategy: ChangeTrackingStrategy): EntityTypeBuilder;
|
|
1701
1825
|
HasData(...data: unknown[]): DataBuilder;
|
|
1702
|
-
HasData(data:
|
|
1826
|
+
HasData(data: IEnumerable_1<unknown>): DataBuilder;
|
|
1703
1827
|
HasDiscriminator(): DiscriminatorBuilder;
|
|
1704
1828
|
HasDiscriminator(name: string, type: Type): DiscriminatorBuilder;
|
|
1705
1829
|
HasDiscriminator<TDiscriminator>(name: string): DiscriminatorBuilder_1<TDiscriminator>;
|
|
@@ -1724,15 +1848,15 @@ export interface EntityTypeBuilder$instance {
|
|
|
1724
1848
|
OwnsMany(ownedTypeName: string, navigationName: string): OwnedNavigationBuilder;
|
|
1725
1849
|
OwnsMany(ownedTypeName: string, ownedType: Type, navigationName: string): OwnedNavigationBuilder;
|
|
1726
1850
|
OwnsMany(ownedType: Type, navigationName: string): OwnedNavigationBuilder;
|
|
1727
|
-
OwnsMany(ownedTypeName: string, navigationName: string, buildAction:
|
|
1728
|
-
OwnsMany(ownedTypeName: string, ownedType: Type, navigationName: string, buildAction:
|
|
1729
|
-
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;
|
|
1730
1854
|
OwnsOne(ownedTypeName: string, navigationName: string): OwnedNavigationBuilder;
|
|
1731
1855
|
OwnsOne(ownedTypeName: string, ownedType: Type, navigationName: string): OwnedNavigationBuilder;
|
|
1732
1856
|
OwnsOne(ownedType: Type, navigationName: string): OwnedNavigationBuilder;
|
|
1733
|
-
OwnsOne(ownedTypeName: string, navigationName: string, buildAction:
|
|
1734
|
-
OwnsOne(ownedTypeName: string, ownedType: Type, navigationName: string, buildAction:
|
|
1735
|
-
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;
|
|
1736
1860
|
PrimitiveCollection(propertyName: string): PrimitiveCollectionBuilder;
|
|
1737
1861
|
PrimitiveCollection<TProperty>(propertyName: string): PrimitiveCollectionBuilder_1<TProperty>;
|
|
1738
1862
|
PrimitiveCollection(propertyType: Type, propertyName: string): PrimitiveCollectionBuilder;
|
|
@@ -1754,34 +1878,36 @@ export interface __EntityTypeBuilder$views {
|
|
|
1754
1878
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionEntityTypeBuilder>;
|
|
1755
1879
|
}
|
|
1756
1880
|
|
|
1757
|
-
export interface EntityTypeBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionEntityTypeBuilder> {}
|
|
1758
|
-
|
|
1759
1881
|
export type EntityTypeBuilder = EntityTypeBuilder$instance & __EntityTypeBuilder$views;
|
|
1760
1882
|
|
|
1761
1883
|
|
|
1762
|
-
export interface EntityTypeBuilder_1$instance<TEntity> extends EntityTypeBuilder$instance {
|
|
1763
|
-
|
|
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
|
+
|
|
1887
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
1888
|
+
|
|
1889
|
+
ComplexCollection<TElement>(propertyExpression: Expression_1<Func_2<TEntity, IEnumerable_1<TElement>>>, complexTypeName: string): ComplexCollectionBuilder_1<TElement>;
|
|
1764
1890
|
ComplexCollection(propertyName: string): ComplexCollectionBuilder;
|
|
1765
|
-
ComplexCollection<TProperty extends
|
|
1766
|
-
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>;
|
|
1767
1893
|
ComplexCollection(propertyType: Type, propertyName: string): ComplexCollectionBuilder;
|
|
1768
1894
|
ComplexCollection(propertyType: Type, propertyName: string, complexTypeName: string): ComplexCollectionBuilder;
|
|
1769
|
-
ComplexCollection(propertyName: string, buildAction:
|
|
1770
|
-
ComplexCollection<TProperty extends
|
|
1771
|
-
ComplexCollection(propertyType: Type, propertyName: string, buildAction:
|
|
1772
|
-
ComplexCollection(propertyType: Type, propertyName: string, complexTypeName: string, buildAction:
|
|
1773
|
-
ComplexProperty<TProperty>(propertyName: string, buildAction:
|
|
1774
|
-
ComplexProperty<TProperty>(propertyName: string, complexTypeName: string, buildAction:
|
|
1775
|
-
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>;
|
|
1776
1902
|
ComplexProperty(propertyName: string): ComplexPropertyBuilder;
|
|
1777
1903
|
ComplexProperty<TProperty>(propertyName: string): ComplexPropertyBuilder_1<TProperty>;
|
|
1778
1904
|
ComplexProperty<TProperty>(propertyName: string, complexTypeName: string): ComplexPropertyBuilder_1<TProperty>;
|
|
1779
1905
|
ComplexProperty(propertyType: Type, propertyName: string): ComplexPropertyBuilder;
|
|
1780
1906
|
ComplexProperty(propertyType: Type, propertyName: string, complexTypeName: string): ComplexPropertyBuilder;
|
|
1781
|
-
ComplexProperty(propertyName: string, buildAction:
|
|
1782
|
-
ComplexProperty<TProperty>(propertyName: string, complexTypeName: string, buildAction:
|
|
1783
|
-
ComplexProperty(propertyType: Type, propertyName: string, buildAction:
|
|
1784
|
-
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;
|
|
1785
1911
|
HasAlternateKey(...propertyNames: string[]): KeyBuilder_1<TEntity>;
|
|
1786
1912
|
HasAlternateKey(...propertyNames: string[]): KeyBuilder;
|
|
1787
1913
|
HasAnnotation(annotation: string, value: unknown): EntityTypeBuilder;
|
|
@@ -1791,9 +1917,9 @@ export interface EntityTypeBuilder_1$instance<TEntity> extends EntityTypeBuilder
|
|
|
1791
1917
|
HasChangeTrackingStrategy(changeTrackingStrategy: ChangeTrackingStrategy): EntityTypeBuilder;
|
|
1792
1918
|
HasData(...data: TEntity[]): DataBuilder_1<TEntity>;
|
|
1793
1919
|
HasData(...data: unknown[]): DataBuilder_1<TEntity>;
|
|
1794
|
-
HasData(data:
|
|
1920
|
+
HasData(data: IEnumerable_1<unknown>): DataBuilder_1<TEntity>;
|
|
1795
1921
|
HasData(...data: unknown[]): DataBuilder;
|
|
1796
|
-
HasData(data:
|
|
1922
|
+
HasData(data: IEnumerable_1<unknown>): DataBuilder;
|
|
1797
1923
|
HasDiscriminator(): DiscriminatorBuilder;
|
|
1798
1924
|
HasDiscriminator(name: string, type: Type): DiscriminatorBuilder;
|
|
1799
1925
|
HasDiscriminator<TDiscriminator>(name: string): DiscriminatorBuilder_1<TDiscriminator>;
|
|
@@ -1822,28 +1948,28 @@ export interface EntityTypeBuilder_1$instance<TEntity> extends EntityTypeBuilder
|
|
|
1822
1948
|
Navigation(navigationName: string): NavigationBuilder;
|
|
1823
1949
|
OwnsMany<TRelatedEntity>(navigationName: string): OwnedNavigationBuilder_2<TEntity, TRelatedEntity>;
|
|
1824
1950
|
OwnsMany<TRelatedEntity>(ownedTypeName: string, navigationName: string): OwnedNavigationBuilder_2<TEntity, TRelatedEntity>;
|
|
1825
|
-
OwnsMany<TRelatedEntity>(ownedTypeName: string, navigationExpression:
|
|
1826
|
-
OwnsMany<TRelatedEntity>(navigationName: string, buildAction:
|
|
1827
|
-
OwnsMany(ownedType: Type, navigationName: string, buildAction:
|
|
1828
|
-
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>;
|
|
1829
1955
|
OwnsMany(ownedTypeName: string, navigationName: string): OwnedNavigationBuilder;
|
|
1830
1956
|
OwnsMany(ownedTypeName: string, ownedType: Type, navigationName: string): OwnedNavigationBuilder;
|
|
1831
1957
|
OwnsMany(ownedType: Type, navigationName: string): OwnedNavigationBuilder;
|
|
1832
|
-
OwnsMany(ownedTypeName: string, navigationName: string, buildAction:
|
|
1833
|
-
OwnsMany(ownedTypeName: string, ownedType: Type, navigationName: string, buildAction:
|
|
1834
|
-
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;
|
|
1835
1961
|
OwnsOne<TRelatedEntity>(navigationName: string): OwnedNavigationBuilder_2<TEntity, TRelatedEntity>;
|
|
1836
1962
|
OwnsOne<TRelatedEntity>(ownedTypeName: string, navigationName: string): OwnedNavigationBuilder_2<TEntity, TRelatedEntity>;
|
|
1837
|
-
OwnsOne<TRelatedEntity>(ownedTypeName: string, navigationExpression:
|
|
1838
|
-
OwnsOne<TRelatedEntity>(navigationName: string, buildAction:
|
|
1839
|
-
OwnsOne(ownedType: Type, navigationName: string, buildAction:
|
|
1840
|
-
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>;
|
|
1841
1967
|
OwnsOne(ownedTypeName: string, navigationName: string): OwnedNavigationBuilder;
|
|
1842
1968
|
OwnsOne(ownedTypeName: string, ownedType: Type, navigationName: string): OwnedNavigationBuilder;
|
|
1843
1969
|
OwnsOne(ownedType: Type, navigationName: string): OwnedNavigationBuilder;
|
|
1844
|
-
OwnsOne(ownedTypeName: string, navigationName: string, buildAction:
|
|
1845
|
-
OwnsOne(ownedTypeName: string, ownedType: Type, navigationName: string, buildAction:
|
|
1846
|
-
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;
|
|
1847
1973
|
PrimitiveCollection(propertyName: string): PrimitiveCollectionBuilder;
|
|
1848
1974
|
PrimitiveCollection<TProperty>(propertyName: string): PrimitiveCollectionBuilder_1<TProperty>;
|
|
1849
1975
|
PrimitiveCollection(propertyType: Type, propertyName: string): PrimitiveCollectionBuilder;
|
|
@@ -1863,12 +1989,14 @@ export interface __EntityTypeBuilder_1$views<TEntity> {
|
|
|
1863
1989
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionEntityTypeBuilder>;
|
|
1864
1990
|
}
|
|
1865
1991
|
|
|
1866
|
-
export interface EntityTypeBuilder_1$instance<TEntity> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionEntityTypeBuilder> {}
|
|
1867
|
-
|
|
1868
1992
|
export type EntityTypeBuilder_1<TEntity> = EntityTypeBuilder_1$instance<TEntity> & __EntityTypeBuilder_1$views<TEntity>;
|
|
1869
1993
|
|
|
1870
1994
|
|
|
1871
1995
|
export interface IndexBuilder$instance {
|
|
1996
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_IndexBuilder: never;
|
|
1997
|
+
|
|
1998
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
1999
|
+
|
|
1872
2000
|
readonly Metadata: IMutableIndex;
|
|
1873
2001
|
Equals(obj: unknown): boolean;
|
|
1874
2002
|
GetHashCode(): int;
|
|
@@ -1888,12 +2016,14 @@ export interface __IndexBuilder$views {
|
|
|
1888
2016
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionIndexBuilder>;
|
|
1889
2017
|
}
|
|
1890
2018
|
|
|
1891
|
-
export interface IndexBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionIndexBuilder> {}
|
|
1892
|
-
|
|
1893
2019
|
export type IndexBuilder = IndexBuilder$instance & __IndexBuilder$views;
|
|
1894
2020
|
|
|
1895
2021
|
|
|
1896
|
-
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
|
+
|
|
2025
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
2026
|
+
|
|
1897
2027
|
HasAnnotation(annotation: string, value: unknown): IndexBuilder;
|
|
1898
2028
|
IsDescending(...descending: boolean[]): IndexBuilder;
|
|
1899
2029
|
IsUnique(unique?: boolean): IndexBuilder;
|
|
@@ -1909,12 +2039,14 @@ export interface __IndexBuilder_1$views<T> {
|
|
|
1909
2039
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionIndexBuilder>;
|
|
1910
2040
|
}
|
|
1911
2041
|
|
|
1912
|
-
export interface IndexBuilder_1$instance<T> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionIndexBuilder> {}
|
|
1913
|
-
|
|
1914
2042
|
export type IndexBuilder_1<T> = IndexBuilder_1$instance<T> & __IndexBuilder_1$views<T>;
|
|
1915
2043
|
|
|
1916
2044
|
|
|
1917
2045
|
export interface InvertibleRelationshipBuilderBase$instance {
|
|
2046
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_InvertibleRelationshipBuilderBase: never;
|
|
2047
|
+
|
|
2048
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
2049
|
+
|
|
1918
2050
|
Builder: InternalForeignKeyBuilder;
|
|
1919
2051
|
readonly DeclaringEntityType: IMutableEntityType;
|
|
1920
2052
|
readonly Metadata: IMutableForeignKey;
|
|
@@ -1933,12 +2065,14 @@ export interface __InvertibleRelationshipBuilderBase$views {
|
|
|
1933
2065
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionForeignKeyBuilder>;
|
|
1934
2066
|
}
|
|
1935
2067
|
|
|
1936
|
-
export interface InvertibleRelationshipBuilderBase$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionForeignKeyBuilder> {}
|
|
1937
|
-
|
|
1938
2068
|
export type InvertibleRelationshipBuilderBase = InvertibleRelationshipBuilderBase$instance & __InvertibleRelationshipBuilderBase$views;
|
|
1939
2069
|
|
|
1940
2070
|
|
|
1941
2071
|
export interface KeyBuilder$instance {
|
|
2072
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_KeyBuilder: never;
|
|
2073
|
+
|
|
2074
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
2075
|
+
|
|
1942
2076
|
readonly Metadata: IMutableKey;
|
|
1943
2077
|
Equals(obj: unknown): boolean;
|
|
1944
2078
|
GetHashCode(): int;
|
|
@@ -1956,12 +2090,14 @@ export interface __KeyBuilder$views {
|
|
|
1956
2090
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionKeyBuilder>;
|
|
1957
2091
|
}
|
|
1958
2092
|
|
|
1959
|
-
export interface KeyBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionKeyBuilder> {}
|
|
1960
|
-
|
|
1961
2093
|
export type KeyBuilder = KeyBuilder$instance & __KeyBuilder$views;
|
|
1962
2094
|
|
|
1963
2095
|
|
|
1964
|
-
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
|
+
|
|
2099
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
2100
|
+
|
|
1965
2101
|
HasAnnotation(annotation: string, value: unknown): KeyBuilder;
|
|
1966
2102
|
}
|
|
1967
2103
|
|
|
@@ -1975,12 +2111,14 @@ export interface __KeyBuilder_1$views<T> {
|
|
|
1975
2111
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionKeyBuilder>;
|
|
1976
2112
|
}
|
|
1977
2113
|
|
|
1978
|
-
export interface KeyBuilder_1$instance<T> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionKeyBuilder> {}
|
|
1979
|
-
|
|
1980
2114
|
export type KeyBuilder_1<T> = KeyBuilder_1$instance<T> & __KeyBuilder_1$views<T>;
|
|
1981
2115
|
|
|
1982
2116
|
|
|
1983
2117
|
export interface NavigationBuilder$instance {
|
|
2118
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_NavigationBuilder: never;
|
|
2119
|
+
|
|
2120
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
2121
|
+
|
|
1984
2122
|
readonly Metadata: IMutableNavigationBase;
|
|
1985
2123
|
AutoInclude(autoInclude?: boolean): NavigationBuilder;
|
|
1986
2124
|
EnableLazyLoading(lazyLoadingEnabled?: boolean): NavigationBuilder;
|
|
@@ -2003,12 +2141,14 @@ export interface __NavigationBuilder$views {
|
|
|
2003
2141
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionSkipNavigationBuilder>;
|
|
2004
2142
|
}
|
|
2005
2143
|
|
|
2006
|
-
export interface NavigationBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionSkipNavigationBuilder> {}
|
|
2007
|
-
|
|
2008
2144
|
export type NavigationBuilder = NavigationBuilder$instance & __NavigationBuilder$views;
|
|
2009
2145
|
|
|
2010
2146
|
|
|
2011
|
-
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
|
+
|
|
2150
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
2151
|
+
|
|
2012
2152
|
AutoInclude(autoInclude?: boolean): NavigationBuilder;
|
|
2013
2153
|
EnableLazyLoading(lazyLoadingEnabled?: boolean): NavigationBuilder;
|
|
2014
2154
|
Equals(obj: unknown): boolean;
|
|
@@ -2030,12 +2170,12 @@ export interface __NavigationBuilder_2$views<TSource, TTarget> {
|
|
|
2030
2170
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionSkipNavigationBuilder>;
|
|
2031
2171
|
}
|
|
2032
2172
|
|
|
2033
|
-
export interface NavigationBuilder_2$instance<TSource, TTarget> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionSkipNavigationBuilder> {}
|
|
2034
|
-
|
|
2035
2173
|
export type NavigationBuilder_2<TSource, TTarget> = NavigationBuilder_2$instance<TSource, TTarget> & __NavigationBuilder_2$views<TSource, TTarget>;
|
|
2036
2174
|
|
|
2037
2175
|
|
|
2038
2176
|
export interface OwnedEntityTypeBuilder$instance {
|
|
2177
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_OwnedEntityTypeBuilder: never;
|
|
2178
|
+
|
|
2039
2179
|
Equals(obj: unknown): boolean;
|
|
2040
2180
|
GetHashCode(): int;
|
|
2041
2181
|
ToString(): string | undefined;
|
|
@@ -2050,6 +2190,8 @@ export const OwnedEntityTypeBuilder: {
|
|
|
2050
2190
|
export type OwnedEntityTypeBuilder = OwnedEntityTypeBuilder$instance;
|
|
2051
2191
|
|
|
2052
2192
|
export interface OwnedEntityTypeBuilder_1$instance<T> extends OwnedEntityTypeBuilder {
|
|
2193
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_OwnedEntityTypeBuilder_1: never;
|
|
2194
|
+
|
|
2053
2195
|
}
|
|
2054
2196
|
|
|
2055
2197
|
|
|
@@ -2061,6 +2203,10 @@ export const OwnedEntityTypeBuilder_1: {
|
|
|
2061
2203
|
export type OwnedEntityTypeBuilder_1<T> = OwnedEntityTypeBuilder_1$instance<T>;
|
|
2062
2204
|
|
|
2063
2205
|
export interface OwnedNavigationBuilder$instance {
|
|
2206
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_OwnedNavigationBuilder: never;
|
|
2207
|
+
|
|
2208
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
2209
|
+
|
|
2064
2210
|
Builder: InternalForeignKeyBuilder;
|
|
2065
2211
|
readonly DependentEntityType: EntityType;
|
|
2066
2212
|
readonly Metadata: IMutableForeignKey;
|
|
@@ -2071,7 +2217,7 @@ export interface OwnedNavigationBuilder$instance {
|
|
|
2071
2217
|
HasAnnotation(annotation: string, value: unknown): OwnedNavigationBuilder;
|
|
2072
2218
|
HasChangeTrackingStrategy(changeTrackingStrategy: ChangeTrackingStrategy): OwnedNavigationBuilder;
|
|
2073
2219
|
HasData(...data: unknown[]): DataBuilder;
|
|
2074
|
-
HasData(data:
|
|
2220
|
+
HasData(data: IEnumerable_1<unknown>): DataBuilder;
|
|
2075
2221
|
HasIndex(...propertyNames: string[]): IndexBuilder;
|
|
2076
2222
|
HasIndex(propertyNames: string[], name: string): IndexBuilder;
|
|
2077
2223
|
HasKey(...propertyNames: string[]): KeyBuilder;
|
|
@@ -2086,22 +2232,22 @@ export interface OwnedNavigationBuilder$instance {
|
|
|
2086
2232
|
OwnsMany(ownedTypeName: string, navigationName: string): OwnedNavigationBuilder;
|
|
2087
2233
|
OwnsMany(ownedTypeName: string, ownedType: Type, navigationName: string): OwnedNavigationBuilder;
|
|
2088
2234
|
OwnsMany(ownedType: Type, navigationName: string): OwnedNavigationBuilder;
|
|
2089
|
-
OwnsMany(ownedTypeName: string, navigationName: string, buildAction:
|
|
2090
|
-
OwnsMany(ownedTypeName: string, ownedType: Type, navigationName: string, buildAction:
|
|
2091
|
-
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;
|
|
2092
2238
|
OwnsOne(ownedTypeName: string, navigationName: string): OwnedNavigationBuilder;
|
|
2093
2239
|
OwnsOne(ownedTypeName: string, ownedType: Type, navigationName: string): OwnedNavigationBuilder;
|
|
2094
2240
|
OwnsOne(ownedType: Type, navigationName: string): OwnedNavigationBuilder;
|
|
2095
|
-
OwnsOne(ownedTypeName: string, navigationName: string, buildAction:
|
|
2096
|
-
OwnsOne(ownedTypeName: string, ownedType: Type, navigationName: string, buildAction:
|
|
2097
|
-
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;
|
|
2098
2244
|
PrimitiveCollection(propertyName: string): PrimitiveCollectionBuilder;
|
|
2099
2245
|
PrimitiveCollection<TProperty>(propertyName: string): PrimitiveCollectionBuilder_1<TProperty>;
|
|
2100
2246
|
PrimitiveCollection(propertyType: Type, propertyName: string): PrimitiveCollectionBuilder;
|
|
2101
2247
|
Property(propertyName: string): PropertyBuilder;
|
|
2102
2248
|
Property<TProperty>(propertyName: string): PropertyBuilder_1<TProperty>;
|
|
2103
2249
|
Property(propertyType: Type, propertyName: string): PropertyBuilder;
|
|
2104
|
-
UpdateBuilder<T>(configure:
|
|
2250
|
+
UpdateBuilder<T>(configure: Func_1<T>): T;
|
|
2105
2251
|
UsePropertyAccessMode(propertyAccessMode: PropertyAccessMode): OwnedNavigationBuilder;
|
|
2106
2252
|
WithOwner(ownerReference?: string): OwnershipBuilder;
|
|
2107
2253
|
}
|
|
@@ -2116,19 +2262,21 @@ export interface __OwnedNavigationBuilder$views {
|
|
|
2116
2262
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionEntityTypeBuilder>;
|
|
2117
2263
|
}
|
|
2118
2264
|
|
|
2119
|
-
export interface OwnedNavigationBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionEntityTypeBuilder> {}
|
|
2120
|
-
|
|
2121
2265
|
export type OwnedNavigationBuilder = OwnedNavigationBuilder$instance & __OwnedNavigationBuilder$views;
|
|
2122
2266
|
|
|
2123
2267
|
|
|
2124
|
-
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
|
+
|
|
2271
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
2272
|
+
|
|
2125
2273
|
HasAnnotation(annotation: string, value: unknown): OwnedNavigationBuilder;
|
|
2126
2274
|
HasChangeTrackingStrategy(changeTrackingStrategy: ChangeTrackingStrategy): OwnedNavigationBuilder;
|
|
2127
2275
|
HasData(...data: TDependentEntity[]): DataBuilder_1<TDependentEntity>;
|
|
2128
2276
|
HasData(...data: unknown[]): DataBuilder_1<TDependentEntity>;
|
|
2129
|
-
HasData(data:
|
|
2277
|
+
HasData(data: IEnumerable_1<unknown>): DataBuilder_1<TDependentEntity>;
|
|
2130
2278
|
HasData(...data: unknown[]): DataBuilder;
|
|
2131
|
-
HasData(data:
|
|
2279
|
+
HasData(data: IEnumerable_1<unknown>): DataBuilder;
|
|
2132
2280
|
HasIndex(...propertyNames: string[]): IndexBuilder_1<TDependentEntity>;
|
|
2133
2281
|
HasIndex(propertyNames: string[], name: string): IndexBuilder_1<TDependentEntity>;
|
|
2134
2282
|
HasIndex(...propertyNames: string[]): IndexBuilder;
|
|
@@ -2144,28 +2292,28 @@ export interface OwnedNavigationBuilder_2$instance<TOwnerEntity, TDependentEntit
|
|
|
2144
2292
|
Navigation(navigationName: string): NavigationBuilder;
|
|
2145
2293
|
OwnsMany<TNewDependentEntity>(navigationName: string): OwnedNavigationBuilder_2<TDependentEntity, TNewDependentEntity>;
|
|
2146
2294
|
OwnsMany<TNewDependentEntity>(ownedTypeName: string, navigationName: string): OwnedNavigationBuilder_2<TDependentEntity, TNewDependentEntity>;
|
|
2147
|
-
OwnsMany<TNewDependentEntity>(ownedTypeName: string, navigationExpression:
|
|
2148
|
-
OwnsMany<TNewDependentEntity>(navigationName: string, buildAction:
|
|
2149
|
-
OwnsMany(ownedType: Type, navigationName: string, buildAction:
|
|
2150
|
-
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>;
|
|
2151
2299
|
OwnsMany(ownedTypeName: string, navigationName: string): OwnedNavigationBuilder;
|
|
2152
2300
|
OwnsMany(ownedTypeName: string, ownedType: Type, navigationName: string): OwnedNavigationBuilder;
|
|
2153
2301
|
OwnsMany(ownedType: Type, navigationName: string): OwnedNavigationBuilder;
|
|
2154
|
-
OwnsMany(ownedTypeName: string, navigationName: string, buildAction:
|
|
2155
|
-
OwnsMany(ownedTypeName: string, ownedType: Type, navigationName: string, buildAction:
|
|
2156
|
-
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;
|
|
2157
2305
|
OwnsOne<TNewDependentEntity>(navigationName: string): OwnedNavigationBuilder_2<TDependentEntity, TNewDependentEntity>;
|
|
2158
2306
|
OwnsOne<TNewDependentEntity>(ownedTypeName: string, navigationName: string): OwnedNavigationBuilder_2<TDependentEntity, TNewDependentEntity>;
|
|
2159
|
-
OwnsOne<TNewDependentEntity>(ownedTypeName: string, navigationExpression:
|
|
2160
|
-
OwnsOne<TNewDependentEntity>(navigationName: string, buildAction:
|
|
2161
|
-
OwnsOne(ownedType: Type, navigationName: string, buildAction:
|
|
2162
|
-
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>;
|
|
2163
2311
|
OwnsOne(ownedTypeName: string, navigationName: string): OwnedNavigationBuilder;
|
|
2164
2312
|
OwnsOne(ownedTypeName: string, ownedType: Type, navigationName: string): OwnedNavigationBuilder;
|
|
2165
2313
|
OwnsOne(ownedType: Type, navigationName: string): OwnedNavigationBuilder;
|
|
2166
|
-
OwnsOne(ownedTypeName: string, navigationName: string, buildAction:
|
|
2167
|
-
OwnsOne(ownedTypeName: string, ownedType: Type, navigationName: string, buildAction:
|
|
2168
|
-
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;
|
|
2169
2317
|
PrimitiveCollection(propertyName: string): PrimitiveCollectionBuilder;
|
|
2170
2318
|
PrimitiveCollection<TProperty>(propertyName: string): PrimitiveCollectionBuilder_1<TProperty>;
|
|
2171
2319
|
PrimitiveCollection(propertyType: Type, propertyName: string): PrimitiveCollectionBuilder;
|
|
@@ -2187,12 +2335,14 @@ export interface __OwnedNavigationBuilder_2$views<TOwnerEntity, TDependentEntity
|
|
|
2187
2335
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionEntityTypeBuilder>;
|
|
2188
2336
|
}
|
|
2189
2337
|
|
|
2190
|
-
export interface OwnedNavigationBuilder_2$instance<TOwnerEntity, TDependentEntity> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionEntityTypeBuilder> {}
|
|
2191
|
-
|
|
2192
2338
|
export type OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity> = OwnedNavigationBuilder_2$instance<TOwnerEntity, TDependentEntity> & __OwnedNavigationBuilder_2$views<TOwnerEntity, TDependentEntity>;
|
|
2193
2339
|
|
|
2194
2340
|
|
|
2195
2341
|
export interface OwnedNavigationSplitTableBuilder$instance {
|
|
2342
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_OwnedNavigationSplitTableBuilder: never;
|
|
2343
|
+
|
|
2344
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
2345
|
+
|
|
2196
2346
|
readonly InternalMappingFragment: EntityTypeMappingFragment;
|
|
2197
2347
|
readonly MappingFragment: IMutableEntityTypeMappingFragment;
|
|
2198
2348
|
readonly Metadata: IMutableEntityType;
|
|
@@ -2218,12 +2368,14 @@ export interface __OwnedNavigationSplitTableBuilder$views {
|
|
|
2218
2368
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<OwnedNavigationBuilder>;
|
|
2219
2369
|
}
|
|
2220
2370
|
|
|
2221
|
-
export interface OwnedNavigationSplitTableBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<OwnedNavigationBuilder> {}
|
|
2222
|
-
|
|
2223
2371
|
export type OwnedNavigationSplitTableBuilder = OwnedNavigationSplitTableBuilder$instance & __OwnedNavigationSplitTableBuilder$views;
|
|
2224
2372
|
|
|
2225
2373
|
|
|
2226
|
-
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
|
+
|
|
2377
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
2378
|
+
|
|
2227
2379
|
ExcludeFromMigrations(excluded?: boolean): OwnedNavigationSplitTableBuilder;
|
|
2228
2380
|
HasAnnotation(annotation: string, value: unknown): OwnedNavigationSplitTableBuilder;
|
|
2229
2381
|
Property(propertyName: string): ColumnBuilder;
|
|
@@ -2240,12 +2392,14 @@ export interface __OwnedNavigationSplitTableBuilder_2$views<TOwnerEntity, TDepen
|
|
|
2240
2392
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<OwnedNavigationBuilder>;
|
|
2241
2393
|
}
|
|
2242
2394
|
|
|
2243
|
-
export interface OwnedNavigationSplitTableBuilder_2$instance<TOwnerEntity, TDependentEntity> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<OwnedNavigationBuilder> {}
|
|
2244
|
-
|
|
2245
2395
|
export type OwnedNavigationSplitTableBuilder_2<TOwnerEntity, TDependentEntity> = OwnedNavigationSplitTableBuilder_2$instance<TOwnerEntity, TDependentEntity> & __OwnedNavigationSplitTableBuilder_2$views<TOwnerEntity, TDependentEntity>;
|
|
2246
2396
|
|
|
2247
2397
|
|
|
2248
2398
|
export interface OwnedNavigationSplitViewBuilder$instance {
|
|
2399
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_OwnedNavigationSplitViewBuilder: never;
|
|
2400
|
+
|
|
2401
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
2402
|
+
|
|
2249
2403
|
readonly MappingFragment: IMutableEntityTypeMappingFragment;
|
|
2250
2404
|
readonly Name: string;
|
|
2251
2405
|
readonly Schema: string | undefined;
|
|
@@ -2267,12 +2421,14 @@ export interface __OwnedNavigationSplitViewBuilder$views {
|
|
|
2267
2421
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<OwnedNavigationBuilder>;
|
|
2268
2422
|
}
|
|
2269
2423
|
|
|
2270
|
-
export interface OwnedNavigationSplitViewBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<OwnedNavigationBuilder> {}
|
|
2271
|
-
|
|
2272
2424
|
export type OwnedNavigationSplitViewBuilder = OwnedNavigationSplitViewBuilder$instance & __OwnedNavigationSplitViewBuilder$views;
|
|
2273
2425
|
|
|
2274
2426
|
|
|
2275
|
-
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
|
+
|
|
2430
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
2431
|
+
|
|
2276
2432
|
HasAnnotation(annotation: string, value: unknown): OwnedNavigationSplitViewBuilder;
|
|
2277
2433
|
Property(propertyName: string): ViewColumnBuilder;
|
|
2278
2434
|
Property<TProperty>(propertyName: string): ViewColumnBuilder_1<TProperty>;
|
|
@@ -2288,27 +2444,29 @@ export interface __OwnedNavigationSplitViewBuilder_2$views<TOwnerEntity, TDepend
|
|
|
2288
2444
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<OwnedNavigationBuilder>;
|
|
2289
2445
|
}
|
|
2290
2446
|
|
|
2291
|
-
export interface OwnedNavigationSplitViewBuilder_2$instance<TOwnerEntity, TDependentEntity> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<OwnedNavigationBuilder> {}
|
|
2292
|
-
|
|
2293
2447
|
export type OwnedNavigationSplitViewBuilder_2<TOwnerEntity, TDependentEntity> = OwnedNavigationSplitViewBuilder_2$instance<TOwnerEntity, TDependentEntity> & __OwnedNavigationSplitViewBuilder_2$views<TOwnerEntity, TDependentEntity>;
|
|
2294
2448
|
|
|
2295
2449
|
|
|
2296
2450
|
export interface OwnedNavigationStoredProcedureBuilder$instance {
|
|
2451
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_OwnedNavigationStoredProcedureBuilder: never;
|
|
2452
|
+
|
|
2453
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
2454
|
+
|
|
2297
2455
|
readonly Builder: InternalStoredProcedureBuilder;
|
|
2298
2456
|
readonly Metadata: IMutableStoredProcedure;
|
|
2299
2457
|
CreatePropertyBuilder(propertyName: string): PropertyBuilder;
|
|
2300
|
-
CreatePropertyBuilder<TDependentEntity, TProperty>(propertyExpression:
|
|
2458
|
+
CreatePropertyBuilder<TDependentEntity, TProperty>(propertyExpression: Expression_1<Func_2<TDependentEntity, TProperty>>): PropertyBuilder;
|
|
2301
2459
|
HasAnnotation(annotation: string, value: unknown): OwnedNavigationStoredProcedureBuilder;
|
|
2302
2460
|
HasOriginalValueParameter(propertyName: string): OwnedNavigationStoredProcedureBuilder;
|
|
2303
|
-
HasOriginalValueParameter(propertyName: string, buildAction:
|
|
2461
|
+
HasOriginalValueParameter(propertyName: string, buildAction: Action_1<StoredProcedureParameterBuilder>): OwnedNavigationStoredProcedureBuilder;
|
|
2304
2462
|
HasParameter(propertyName: string): OwnedNavigationStoredProcedureBuilder;
|
|
2305
|
-
HasParameter(propertyName: string, buildAction:
|
|
2463
|
+
HasParameter(propertyName: string, buildAction: Action_1<StoredProcedureParameterBuilder>): OwnedNavigationStoredProcedureBuilder;
|
|
2306
2464
|
HasResultColumn(propertyName: string): OwnedNavigationStoredProcedureBuilder;
|
|
2307
|
-
HasResultColumn(propertyName: string, buildAction:
|
|
2465
|
+
HasResultColumn(propertyName: string, buildAction: Action_1<StoredProcedureResultColumnBuilder>): OwnedNavigationStoredProcedureBuilder;
|
|
2308
2466
|
HasRowsAffectedParameter(): OwnedNavigationStoredProcedureBuilder;
|
|
2309
|
-
HasRowsAffectedParameter(buildAction:
|
|
2467
|
+
HasRowsAffectedParameter(buildAction: Action_1<StoredProcedureParameterBuilder>): OwnedNavigationStoredProcedureBuilder;
|
|
2310
2468
|
HasRowsAffectedResultColumn(): OwnedNavigationStoredProcedureBuilder;
|
|
2311
|
-
HasRowsAffectedResultColumn(buildAction:
|
|
2469
|
+
HasRowsAffectedResultColumn(buildAction: Action_1<StoredProcedureResultColumnBuilder>): OwnedNavigationStoredProcedureBuilder;
|
|
2312
2470
|
HasRowsAffectedReturnValue(rowsAffectedReturned?: boolean): OwnedNavigationStoredProcedureBuilder;
|
|
2313
2471
|
}
|
|
2314
2472
|
|
|
@@ -2322,23 +2480,25 @@ export interface __OwnedNavigationStoredProcedureBuilder$views {
|
|
|
2322
2480
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<OwnedNavigationBuilder>;
|
|
2323
2481
|
}
|
|
2324
2482
|
|
|
2325
|
-
export interface OwnedNavigationStoredProcedureBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<OwnedNavigationBuilder> {}
|
|
2326
|
-
|
|
2327
2483
|
export type OwnedNavigationStoredProcedureBuilder = OwnedNavigationStoredProcedureBuilder$instance & __OwnedNavigationStoredProcedureBuilder$views;
|
|
2328
2484
|
|
|
2329
2485
|
|
|
2330
|
-
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
|
+
|
|
2489
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
2490
|
+
|
|
2331
2491
|
HasAnnotation(annotation: string, value: unknown): OwnedNavigationStoredProcedureBuilder;
|
|
2332
2492
|
HasOriginalValueParameter(propertyName: string): OwnedNavigationStoredProcedureBuilder;
|
|
2333
|
-
HasOriginalValueParameter(propertyName: string, buildAction:
|
|
2493
|
+
HasOriginalValueParameter(propertyName: string, buildAction: Action_1<StoredProcedureParameterBuilder>): OwnedNavigationStoredProcedureBuilder;
|
|
2334
2494
|
HasParameter(propertyName: string): OwnedNavigationStoredProcedureBuilder;
|
|
2335
|
-
HasParameter(propertyName: string, buildAction:
|
|
2495
|
+
HasParameter(propertyName: string, buildAction: Action_1<StoredProcedureParameterBuilder>): OwnedNavigationStoredProcedureBuilder;
|
|
2336
2496
|
HasResultColumn(propertyName: string): OwnedNavigationStoredProcedureBuilder;
|
|
2337
|
-
HasResultColumn(propertyName: string, buildAction:
|
|
2497
|
+
HasResultColumn(propertyName: string, buildAction: Action_1<StoredProcedureResultColumnBuilder>): OwnedNavigationStoredProcedureBuilder;
|
|
2338
2498
|
HasRowsAffectedParameter(): OwnedNavigationStoredProcedureBuilder;
|
|
2339
|
-
HasRowsAffectedParameter(buildAction:
|
|
2499
|
+
HasRowsAffectedParameter(buildAction: Action_1<StoredProcedureParameterBuilder>): OwnedNavigationStoredProcedureBuilder;
|
|
2340
2500
|
HasRowsAffectedResultColumn(): OwnedNavigationStoredProcedureBuilder;
|
|
2341
|
-
HasRowsAffectedResultColumn(buildAction:
|
|
2501
|
+
HasRowsAffectedResultColumn(buildAction: Action_1<StoredProcedureResultColumnBuilder>): OwnedNavigationStoredProcedureBuilder;
|
|
2342
2502
|
HasRowsAffectedReturnValue(rowsAffectedReturned?: boolean): OwnedNavigationStoredProcedureBuilder;
|
|
2343
2503
|
}
|
|
2344
2504
|
|
|
@@ -2352,16 +2512,18 @@ export interface __OwnedNavigationStoredProcedureBuilder_2$views<TOwnerEntity, T
|
|
|
2352
2512
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<OwnedNavigationBuilder>;
|
|
2353
2513
|
}
|
|
2354
2514
|
|
|
2355
|
-
export interface OwnedNavigationStoredProcedureBuilder_2$instance<TOwnerEntity, TDependentEntity> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<OwnedNavigationBuilder> {}
|
|
2356
|
-
|
|
2357
2515
|
export type OwnedNavigationStoredProcedureBuilder_2<TOwnerEntity, TDependentEntity> = OwnedNavigationStoredProcedureBuilder_2$instance<TOwnerEntity, TDependentEntity> & __OwnedNavigationStoredProcedureBuilder_2$views<TOwnerEntity, TDependentEntity>;
|
|
2358
2516
|
|
|
2359
2517
|
|
|
2360
2518
|
export interface OwnedNavigationTableBuilder$instance {
|
|
2519
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_OwnedNavigationTableBuilder: never;
|
|
2520
|
+
|
|
2521
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
2522
|
+
|
|
2361
2523
|
readonly Metadata: IMutableEntityType;
|
|
2362
2524
|
readonly Name: string | undefined;
|
|
2363
2525
|
readonly Schema: string | undefined;
|
|
2364
|
-
readonly StoreObject:
|
|
2526
|
+
readonly StoreObject: Nullable_1<StoreObjectIdentifier>;
|
|
2365
2527
|
Equals(obj: unknown): boolean;
|
|
2366
2528
|
ExcludeFromMigrations(excluded?: boolean): OwnedNavigationTableBuilder;
|
|
2367
2529
|
GetHashCode(): int;
|
|
@@ -2376,7 +2538,7 @@ export interface OwnedNavigationTableBuilder$instance {
|
|
|
2376
2538
|
|
|
2377
2539
|
|
|
2378
2540
|
export const OwnedNavigationTableBuilder: {
|
|
2379
|
-
new(storeObject:
|
|
2541
|
+
new(storeObject: Nullable_1<StoreObjectIdentifier>, ownedNavigationBuilder: OwnedNavigationBuilder): OwnedNavigationTableBuilder;
|
|
2380
2542
|
};
|
|
2381
2543
|
|
|
2382
2544
|
|
|
@@ -2384,12 +2546,14 @@ export interface __OwnedNavigationTableBuilder$views {
|
|
|
2384
2546
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<OwnedNavigationBuilder>;
|
|
2385
2547
|
}
|
|
2386
2548
|
|
|
2387
|
-
export interface OwnedNavigationTableBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<OwnedNavigationBuilder> {}
|
|
2388
|
-
|
|
2389
2549
|
export type OwnedNavigationTableBuilder = OwnedNavigationTableBuilder$instance & __OwnedNavigationTableBuilder$views;
|
|
2390
2550
|
|
|
2391
2551
|
|
|
2392
|
-
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
|
+
|
|
2555
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
2556
|
+
|
|
2393
2557
|
ExcludeFromMigrations(excluded?: boolean): OwnedNavigationTableBuilder;
|
|
2394
2558
|
HasComment(comment: string): OwnedNavigationTableBuilder;
|
|
2395
2559
|
Property(propertyName: string): ColumnBuilder;
|
|
@@ -2398,7 +2562,7 @@ export interface OwnedNavigationTableBuilder_2$instance<TOwnerEntity, TDependent
|
|
|
2398
2562
|
|
|
2399
2563
|
|
|
2400
2564
|
export const OwnedNavigationTableBuilder_2: {
|
|
2401
|
-
new<TOwnerEntity, TDependentEntity>(storeObject:
|
|
2565
|
+
new<TOwnerEntity, TDependentEntity>(storeObject: Nullable_1<StoreObjectIdentifier>, ownedNavigationBuilder: OwnedNavigationBuilder_2<TOwnerEntity, TDependentEntity>): OwnedNavigationTableBuilder_2<TOwnerEntity, TDependentEntity>;
|
|
2402
2566
|
};
|
|
2403
2567
|
|
|
2404
2568
|
|
|
@@ -2406,16 +2570,18 @@ export interface __OwnedNavigationTableBuilder_2$views<TOwnerEntity, TDependentE
|
|
|
2406
2570
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<OwnedNavigationBuilder>;
|
|
2407
2571
|
}
|
|
2408
2572
|
|
|
2409
|
-
export interface OwnedNavigationTableBuilder_2$instance<TOwnerEntity, TDependentEntity> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<OwnedNavigationBuilder> {}
|
|
2410
|
-
|
|
2411
2573
|
export type OwnedNavigationTableBuilder_2<TOwnerEntity, TDependentEntity> = OwnedNavigationTableBuilder_2$instance<TOwnerEntity, TDependentEntity> & __OwnedNavigationTableBuilder_2$views<TOwnerEntity, TDependentEntity>;
|
|
2412
2574
|
|
|
2413
2575
|
|
|
2414
2576
|
export interface OwnedNavigationTableValuedFunctionBuilder$instance extends DbFunctionBuilderBase$instance {
|
|
2577
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_OwnedNavigationTableValuedFunctionBuilder: never;
|
|
2578
|
+
|
|
2579
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
2580
|
+
|
|
2415
2581
|
HasAnnotation(annotation: string, value: unknown): OwnedNavigationTableValuedFunctionBuilder;
|
|
2416
2582
|
HasName(name: string): DbFunctionBuilderBase;
|
|
2417
2583
|
HasParameter(name: string): DbFunctionParameterBuilder;
|
|
2418
|
-
HasParameter(name: string, buildAction:
|
|
2584
|
+
HasParameter(name: string, buildAction: Action_1<DbFunctionParameterBuilder>): DbFunctionBuilderBase;
|
|
2419
2585
|
HasSchema(schema: string): DbFunctionBuilderBase;
|
|
2420
2586
|
IsBuiltIn(builtIn?: boolean): DbFunctionBuilderBase;
|
|
2421
2587
|
}
|
|
@@ -2430,18 +2596,20 @@ export interface __OwnedNavigationTableValuedFunctionBuilder$views {
|
|
|
2430
2596
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionDbFunctionBuilder>;
|
|
2431
2597
|
}
|
|
2432
2598
|
|
|
2433
|
-
export interface OwnedNavigationTableValuedFunctionBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionDbFunctionBuilder> {}
|
|
2434
|
-
|
|
2435
2599
|
export type OwnedNavigationTableValuedFunctionBuilder = OwnedNavigationTableValuedFunctionBuilder$instance & __OwnedNavigationTableValuedFunctionBuilder$views;
|
|
2436
2600
|
|
|
2437
2601
|
|
|
2438
|
-
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
|
+
|
|
2605
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
2606
|
+
|
|
2439
2607
|
HasAnnotation(annotation: string, value: unknown): OwnedNavigationTableValuedFunctionBuilder;
|
|
2440
2608
|
HasName(name: string): OwnedNavigationTableValuedFunctionBuilder;
|
|
2441
2609
|
HasName(name: string): DbFunctionBuilderBase;
|
|
2442
|
-
HasParameter(name: string, buildAction:
|
|
2610
|
+
HasParameter(name: string, buildAction: Action_1<DbFunctionParameterBuilder>): OwnedNavigationTableValuedFunctionBuilder;
|
|
2443
2611
|
HasParameter(name: string): DbFunctionParameterBuilder;
|
|
2444
|
-
HasParameter(name: string, buildAction:
|
|
2612
|
+
HasParameter(name: string, buildAction: Action_1<DbFunctionParameterBuilder>): DbFunctionBuilderBase;
|
|
2445
2613
|
HasSchema(schema: string): OwnedNavigationTableValuedFunctionBuilder;
|
|
2446
2614
|
HasSchema(schema: string): DbFunctionBuilderBase;
|
|
2447
2615
|
IsBuiltIn(builtIn?: boolean): OwnedNavigationTableValuedFunctionBuilder;
|
|
@@ -2458,12 +2626,14 @@ export interface __OwnedNavigationTableValuedFunctionBuilder_2$views<TOwnerEntit
|
|
|
2458
2626
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionDbFunctionBuilder>;
|
|
2459
2627
|
}
|
|
2460
2628
|
|
|
2461
|
-
export interface OwnedNavigationTableValuedFunctionBuilder_2$instance<TOwnerEntity, TDependentEntity> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionDbFunctionBuilder> {}
|
|
2462
|
-
|
|
2463
2629
|
export type OwnedNavigationTableValuedFunctionBuilder_2<TOwnerEntity, TDependentEntity> = OwnedNavigationTableValuedFunctionBuilder_2$instance<TOwnerEntity, TDependentEntity> & __OwnedNavigationTableValuedFunctionBuilder_2$views<TOwnerEntity, TDependentEntity>;
|
|
2464
2630
|
|
|
2465
2631
|
|
|
2466
2632
|
export interface OwnedNavigationViewBuilder$instance {
|
|
2633
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_OwnedNavigationViewBuilder: never;
|
|
2634
|
+
|
|
2635
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
2636
|
+
|
|
2467
2637
|
readonly Name: string;
|
|
2468
2638
|
readonly Schema: string | undefined;
|
|
2469
2639
|
readonly StoreObject: StoreObjectIdentifier;
|
|
@@ -2484,12 +2654,14 @@ export interface __OwnedNavigationViewBuilder$views {
|
|
|
2484
2654
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<OwnedNavigationBuilder>;
|
|
2485
2655
|
}
|
|
2486
2656
|
|
|
2487
|
-
export interface OwnedNavigationViewBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<OwnedNavigationBuilder> {}
|
|
2488
|
-
|
|
2489
2657
|
export type OwnedNavigationViewBuilder = OwnedNavigationViewBuilder$instance & __OwnedNavigationViewBuilder$views;
|
|
2490
2658
|
|
|
2491
2659
|
|
|
2492
|
-
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
|
+
|
|
2663
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
2664
|
+
|
|
2493
2665
|
Property(propertyName: string): ViewColumnBuilder;
|
|
2494
2666
|
Property<TProperty>(propertyName: string): ViewColumnBuilder_1<TProperty>;
|
|
2495
2667
|
}
|
|
@@ -2504,12 +2676,14 @@ export interface __OwnedNavigationViewBuilder_2$views<TOwnerEntity, TDependentEn
|
|
|
2504
2676
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<OwnedNavigationBuilder>;
|
|
2505
2677
|
}
|
|
2506
2678
|
|
|
2507
|
-
export interface OwnedNavigationViewBuilder_2$instance<TOwnerEntity, TDependentEntity> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<OwnedNavigationBuilder> {}
|
|
2508
|
-
|
|
2509
2679
|
export type OwnedNavigationViewBuilder_2<TOwnerEntity, TDependentEntity> = OwnedNavigationViewBuilder_2$instance<TOwnerEntity, TDependentEntity> & __OwnedNavigationViewBuilder_2$views<TOwnerEntity, TDependentEntity>;
|
|
2510
2680
|
|
|
2511
2681
|
|
|
2512
2682
|
export interface OwnershipBuilder$instance extends RelationshipBuilderBase$instance {
|
|
2683
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_OwnershipBuilder: never;
|
|
2684
|
+
|
|
2685
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
2686
|
+
|
|
2513
2687
|
HasAnnotation(annotation: string, value: unknown): OwnershipBuilder;
|
|
2514
2688
|
HasForeignKey(...foreignKeyPropertyNames: string[]): OwnershipBuilder;
|
|
2515
2689
|
HasPrincipalKey(...keyPropertyNames: string[]): OwnershipBuilder;
|
|
@@ -2525,12 +2699,14 @@ export interface __OwnershipBuilder$views {
|
|
|
2525
2699
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionForeignKeyBuilder>;
|
|
2526
2700
|
}
|
|
2527
2701
|
|
|
2528
|
-
export interface OwnershipBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionForeignKeyBuilder> {}
|
|
2529
|
-
|
|
2530
2702
|
export type OwnershipBuilder = OwnershipBuilder$instance & __OwnershipBuilder$views;
|
|
2531
2703
|
|
|
2532
2704
|
|
|
2533
|
-
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
|
+
|
|
2708
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
2709
|
+
|
|
2534
2710
|
HasAnnotation(annotation: string, value: unknown): OwnershipBuilder;
|
|
2535
2711
|
HasForeignKey(...foreignKeyPropertyNames: string[]): OwnershipBuilder_2<TEntity, TDependentEntity>;
|
|
2536
2712
|
HasForeignKey(...foreignKeyPropertyNames: string[]): OwnershipBuilder;
|
|
@@ -2548,15 +2724,17 @@ export interface __OwnershipBuilder_2$views<TEntity, TDependentEntity> {
|
|
|
2548
2724
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionForeignKeyBuilder>;
|
|
2549
2725
|
}
|
|
2550
2726
|
|
|
2551
|
-
export interface OwnershipBuilder_2$instance<TEntity, TDependentEntity> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionForeignKeyBuilder> {}
|
|
2552
|
-
|
|
2553
2727
|
export type OwnershipBuilder_2<TEntity, TDependentEntity> = OwnershipBuilder_2$instance<TEntity, TDependentEntity> & __OwnershipBuilder_2$views<TEntity, TDependentEntity>;
|
|
2554
2728
|
|
|
2555
2729
|
|
|
2556
2730
|
export interface PrimitiveCollectionBuilder$instance {
|
|
2731
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_PrimitiveCollectionBuilder: never;
|
|
2732
|
+
|
|
2733
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
2734
|
+
|
|
2557
2735
|
readonly Metadata: IMutableProperty;
|
|
2558
2736
|
ElementType(): ElementTypeBuilder;
|
|
2559
|
-
ElementType(builderAction:
|
|
2737
|
+
ElementType(builderAction: Action_1<ElementTypeBuilder>): PrimitiveCollectionBuilder;
|
|
2560
2738
|
Equals(obj: unknown): boolean;
|
|
2561
2739
|
GetHashCode(): int;
|
|
2562
2740
|
HasAnnotation(annotation: string, value: unknown): PrimitiveCollectionBuilder;
|
|
@@ -2589,14 +2767,16 @@ export interface __PrimitiveCollectionBuilder$views {
|
|
|
2589
2767
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionPropertyBuilder>;
|
|
2590
2768
|
}
|
|
2591
2769
|
|
|
2592
|
-
export interface PrimitiveCollectionBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionPropertyBuilder> {}
|
|
2593
|
-
|
|
2594
2770
|
export type PrimitiveCollectionBuilder = PrimitiveCollectionBuilder$instance & __PrimitiveCollectionBuilder$views;
|
|
2595
2771
|
|
|
2596
2772
|
|
|
2597
|
-
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
|
+
|
|
2776
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
2777
|
+
|
|
2598
2778
|
ElementType(): ElementTypeBuilder;
|
|
2599
|
-
ElementType(builderAction:
|
|
2779
|
+
ElementType(builderAction: Action_1<ElementTypeBuilder>): PrimitiveCollectionBuilder;
|
|
2600
2780
|
HasAnnotation(annotation: string, value: unknown): PrimitiveCollectionBuilder;
|
|
2601
2781
|
HasField(fieldName: string): PrimitiveCollectionBuilder;
|
|
2602
2782
|
HasMaxLength(maxLength: int): PrimitiveCollectionBuilder;
|
|
@@ -2627,12 +2807,12 @@ export interface __PrimitiveCollectionBuilder_1$views<TProperty> {
|
|
|
2627
2807
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionPropertyBuilder>;
|
|
2628
2808
|
}
|
|
2629
2809
|
|
|
2630
|
-
export interface PrimitiveCollectionBuilder_1$instance<TProperty> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionPropertyBuilder> {}
|
|
2631
|
-
|
|
2632
2810
|
export type PrimitiveCollectionBuilder_1<TProperty> = PrimitiveCollectionBuilder_1$instance<TProperty> & __PrimitiveCollectionBuilder_1$views<TProperty>;
|
|
2633
2811
|
|
|
2634
2812
|
|
|
2635
2813
|
export interface PropertiesConfigurationBuilder$instance {
|
|
2814
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_PropertiesConfigurationBuilder: never;
|
|
2815
|
+
|
|
2636
2816
|
readonly Configuration: PropertyConfiguration;
|
|
2637
2817
|
AreUnicode(unicode?: boolean): PropertiesConfigurationBuilder;
|
|
2638
2818
|
Equals(obj: unknown): boolean;
|
|
@@ -2658,6 +2838,8 @@ export const PropertiesConfigurationBuilder: {
|
|
|
2658
2838
|
export type PropertiesConfigurationBuilder = PropertiesConfigurationBuilder$instance;
|
|
2659
2839
|
|
|
2660
2840
|
export interface PropertiesConfigurationBuilder_1$instance<TProperty> extends PropertiesConfigurationBuilder {
|
|
2841
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_PropertiesConfigurationBuilder_1: never;
|
|
2842
|
+
|
|
2661
2843
|
AreUnicode(unicode?: boolean): PropertiesConfigurationBuilder_1<TProperty>;
|
|
2662
2844
|
AreUnicode(unicode?: boolean): PropertiesConfigurationBuilder;
|
|
2663
2845
|
HaveAnnotation(annotation: string, value: unknown): PropertiesConfigurationBuilder_1<TProperty>;
|
|
@@ -2686,6 +2868,10 @@ export const PropertiesConfigurationBuilder_1: {
|
|
|
2686
2868
|
export type PropertiesConfigurationBuilder_1<TProperty> = PropertiesConfigurationBuilder_1$instance<TProperty>;
|
|
2687
2869
|
|
|
2688
2870
|
export interface PropertyBuilder$instance {
|
|
2871
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_PropertyBuilder: never;
|
|
2872
|
+
|
|
2873
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
2874
|
+
|
|
2689
2875
|
readonly Metadata: IMutableProperty;
|
|
2690
2876
|
Equals(obj: unknown): boolean;
|
|
2691
2877
|
GetHashCode(): int;
|
|
@@ -2708,7 +2894,7 @@ export interface PropertyBuilder$instance {
|
|
|
2708
2894
|
HasSentinel(sentinel: unknown): PropertyBuilder;
|
|
2709
2895
|
HasValueGenerator<TGenerator extends ValueGenerator>(): PropertyBuilder;
|
|
2710
2896
|
HasValueGenerator(valueGeneratorType: Type): PropertyBuilder;
|
|
2711
|
-
HasValueGenerator(factory:
|
|
2897
|
+
HasValueGenerator(factory: Func_3<IProperty, ITypeBase, ValueGenerator>): PropertyBuilder;
|
|
2712
2898
|
HasValueGeneratorFactory<TFactory extends ValueGeneratorFactory>(): PropertyBuilder;
|
|
2713
2899
|
HasValueGeneratorFactory(valueGeneratorFactoryType: Type): PropertyBuilder;
|
|
2714
2900
|
IsConcurrencyToken(concurrencyToken?: boolean): PropertyBuilder;
|
|
@@ -2734,12 +2920,14 @@ export interface __PropertyBuilder$views {
|
|
|
2734
2920
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionPropertyBuilder>;
|
|
2735
2921
|
}
|
|
2736
2922
|
|
|
2737
|
-
export interface PropertyBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionPropertyBuilder> {}
|
|
2738
|
-
|
|
2739
2923
|
export type PropertyBuilder = PropertyBuilder$instance & __PropertyBuilder$views;
|
|
2740
2924
|
|
|
2741
2925
|
|
|
2742
|
-
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
|
+
|
|
2929
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
2930
|
+
|
|
2743
2931
|
HasAnnotation(annotation: string, value: unknown): PropertyBuilder;
|
|
2744
2932
|
HasConversion(providerClrType: Type): PropertyBuilder_1<TProperty>;
|
|
2745
2933
|
HasConversion<TProvider>(converter: ValueConverter_2<TProperty, TProvider>): PropertyBuilder_1<TProperty>;
|
|
@@ -2770,7 +2958,7 @@ export interface PropertyBuilder_1$instance<TProperty> extends PropertyBuilder$i
|
|
|
2770
2958
|
HasValueGenerator(valueGeneratorType: Type): PropertyBuilder_1<TProperty>;
|
|
2771
2959
|
HasValueGenerator<TGenerator extends ValueGenerator>(): PropertyBuilder;
|
|
2772
2960
|
HasValueGenerator(valueGeneratorType: Type): PropertyBuilder;
|
|
2773
|
-
HasValueGenerator(factory:
|
|
2961
|
+
HasValueGenerator(factory: Func_3<IProperty, ITypeBase, ValueGenerator>): PropertyBuilder;
|
|
2774
2962
|
HasValueGeneratorFactory<TFactory extends ValueGeneratorFactory>(): PropertyBuilder;
|
|
2775
2963
|
HasValueGeneratorFactory(valueGeneratorFactoryType: Type): PropertyBuilder;
|
|
2776
2964
|
IsConcurrencyToken(concurrencyToken?: boolean): PropertyBuilder;
|
|
@@ -2795,19 +2983,21 @@ export interface __PropertyBuilder_1$views<TProperty> {
|
|
|
2795
2983
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionPropertyBuilder>;
|
|
2796
2984
|
}
|
|
2797
2985
|
|
|
2798
|
-
export interface PropertyBuilder_1$instance<TProperty> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionPropertyBuilder> {}
|
|
2799
|
-
|
|
2800
2986
|
export type PropertyBuilder_1<TProperty> = PropertyBuilder_1$instance<TProperty> & __PropertyBuilder_1$views<TProperty>;
|
|
2801
2987
|
|
|
2802
2988
|
|
|
2803
2989
|
export interface ReferenceCollectionBuilder$instance extends RelationshipBuilderBase$instance {
|
|
2990
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_ReferenceCollectionBuilder: never;
|
|
2991
|
+
|
|
2992
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
2993
|
+
|
|
2804
2994
|
HasAnnotation(annotation: string, value: unknown): ReferenceCollectionBuilder;
|
|
2805
2995
|
HasForeignKey(...foreignKeyPropertyNames: string[]): ReferenceCollectionBuilder;
|
|
2806
|
-
HasForeignKeyBuilder(foreignKeyPropertyNames:
|
|
2807
|
-
HasForeignKeyBuilder(foreignKeyMembers:
|
|
2996
|
+
HasForeignKeyBuilder(foreignKeyPropertyNames: IReadOnlyList_1<System_Internal.String>): InternalForeignKeyBuilder;
|
|
2997
|
+
HasForeignKeyBuilder(foreignKeyMembers: IReadOnlyList_1<MemberInfo>): InternalForeignKeyBuilder;
|
|
2808
2998
|
HasPrincipalKey(...keyPropertyNames: string[]): ReferenceCollectionBuilder;
|
|
2809
|
-
HasPrincipalKeyBuilder(keyPropertyNames:
|
|
2810
|
-
HasPrincipalKeyBuilder(keyMembers:
|
|
2999
|
+
HasPrincipalKeyBuilder(keyPropertyNames: IReadOnlyList_1<System_Internal.String>): InternalForeignKeyBuilder;
|
|
3000
|
+
HasPrincipalKeyBuilder(keyMembers: IReadOnlyList_1<MemberInfo>): InternalForeignKeyBuilder;
|
|
2811
3001
|
IsRequired(required?: boolean): ReferenceCollectionBuilder;
|
|
2812
3002
|
OnDelete(deleteBehavior: DeleteBehavior): ReferenceCollectionBuilder;
|
|
2813
3003
|
}
|
|
@@ -2822,12 +3012,14 @@ export interface __ReferenceCollectionBuilder$views {
|
|
|
2822
3012
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionForeignKeyBuilder>;
|
|
2823
3013
|
}
|
|
2824
3014
|
|
|
2825
|
-
export interface ReferenceCollectionBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionForeignKeyBuilder> {}
|
|
2826
|
-
|
|
2827
3015
|
export type ReferenceCollectionBuilder = ReferenceCollectionBuilder$instance & __ReferenceCollectionBuilder$views;
|
|
2828
3016
|
|
|
2829
3017
|
|
|
2830
|
-
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
|
+
|
|
3021
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
3022
|
+
|
|
2831
3023
|
HasAnnotation(annotation: string, value: unknown): ReferenceCollectionBuilder;
|
|
2832
3024
|
HasForeignKey(...foreignKeyPropertyNames: string[]): ReferenceCollectionBuilder_2<TPrincipalEntity, TDependentEntity>;
|
|
2833
3025
|
HasForeignKey(...foreignKeyPropertyNames: string[]): ReferenceCollectionBuilder;
|
|
@@ -2847,12 +3039,14 @@ export interface __ReferenceCollectionBuilder_2$views<TPrincipalEntity, TDepende
|
|
|
2847
3039
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionForeignKeyBuilder>;
|
|
2848
3040
|
}
|
|
2849
3041
|
|
|
2850
|
-
export interface ReferenceCollectionBuilder_2$instance<TPrincipalEntity, TDependentEntity> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionForeignKeyBuilder> {}
|
|
2851
|
-
|
|
2852
3042
|
export type ReferenceCollectionBuilder_2<TPrincipalEntity, TDependentEntity> = ReferenceCollectionBuilder_2$instance<TPrincipalEntity, TDependentEntity> & __ReferenceCollectionBuilder_2$views<TPrincipalEntity, TDependentEntity>;
|
|
2853
3043
|
|
|
2854
3044
|
|
|
2855
3045
|
export interface ReferenceNavigationBuilder$instance {
|
|
3046
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_ReferenceNavigationBuilder: never;
|
|
3047
|
+
|
|
3048
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
3049
|
+
|
|
2856
3050
|
readonly Builder: InternalForeignKeyBuilder;
|
|
2857
3051
|
readonly DeclaringEntityType: IMutableEntityType;
|
|
2858
3052
|
readonly ReferenceMember: MemberInfo | undefined;
|
|
@@ -2880,12 +3074,14 @@ export interface __ReferenceNavigationBuilder$views {
|
|
|
2880
3074
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionForeignKeyBuilder>;
|
|
2881
3075
|
}
|
|
2882
3076
|
|
|
2883
|
-
export interface ReferenceNavigationBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionForeignKeyBuilder> {}
|
|
2884
|
-
|
|
2885
3077
|
export type ReferenceNavigationBuilder = ReferenceNavigationBuilder$instance & __ReferenceNavigationBuilder$views;
|
|
2886
3078
|
|
|
2887
3079
|
|
|
2888
|
-
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
|
+
|
|
3083
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
3084
|
+
|
|
2889
3085
|
WithMany(navigationName?: string): ReferenceCollectionBuilder_2<TRelatedEntity, TEntity>;
|
|
2890
3086
|
WithMany(collection?: string): ReferenceCollectionBuilder;
|
|
2891
3087
|
WithOne(navigationName?: string): ReferenceReferenceBuilder_2<TEntity, TRelatedEntity>;
|
|
@@ -2903,21 +3099,23 @@ export interface __ReferenceNavigationBuilder_2$views<TEntity, TRelatedEntity> {
|
|
|
2903
3099
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionForeignKeyBuilder>;
|
|
2904
3100
|
}
|
|
2905
3101
|
|
|
2906
|
-
export interface ReferenceNavigationBuilder_2$instance<TEntity, TRelatedEntity> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionForeignKeyBuilder> {}
|
|
2907
|
-
|
|
2908
3102
|
export type ReferenceNavigationBuilder_2<TEntity, TRelatedEntity> = ReferenceNavigationBuilder_2$instance<TEntity, TRelatedEntity> & __ReferenceNavigationBuilder_2$views<TEntity, TRelatedEntity>;
|
|
2909
3103
|
|
|
2910
3104
|
|
|
2911
3105
|
export interface ReferenceReferenceBuilder$instance extends InvertibleRelationshipBuilderBase$instance {
|
|
3106
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_ReferenceReferenceBuilder: never;
|
|
3107
|
+
|
|
3108
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
3109
|
+
|
|
2912
3110
|
HasAnnotation(annotation: string, value: unknown): ReferenceReferenceBuilder;
|
|
2913
3111
|
HasForeignKey(dependentEntityTypeName: string, ...foreignKeyPropertyNames: string[]): ReferenceReferenceBuilder;
|
|
2914
3112
|
HasForeignKey(dependentEntityType: Type, ...foreignKeyPropertyNames: string[]): ReferenceReferenceBuilder;
|
|
2915
|
-
HasForeignKeyBuilder(dependentEntityType: EntityType, dependentEntityTypeName: string, foreignKeyPropertyNames:
|
|
2916
|
-
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;
|
|
2917
3115
|
HasPrincipalKey(principalEntityTypeName: string, ...keyPropertyNames: string[]): ReferenceReferenceBuilder;
|
|
2918
3116
|
HasPrincipalKey(principalEntityType: Type, ...keyPropertyNames: string[]): ReferenceReferenceBuilder;
|
|
2919
|
-
HasPrincipalKeyBuilder(principalEntityType: EntityType, principalEntityTypeName: string, foreignKeyPropertyNames:
|
|
2920
|
-
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;
|
|
2921
3119
|
IsRequired(required?: boolean): ReferenceReferenceBuilder;
|
|
2922
3120
|
OnDelete(deleteBehavior: DeleteBehavior): ReferenceReferenceBuilder;
|
|
2923
3121
|
ResolveEntityType(entityTypeName: string): EntityType | undefined;
|
|
@@ -2934,12 +3132,14 @@ export interface __ReferenceReferenceBuilder$views {
|
|
|
2934
3132
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionForeignKeyBuilder>;
|
|
2935
3133
|
}
|
|
2936
3134
|
|
|
2937
|
-
export interface ReferenceReferenceBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionForeignKeyBuilder> {}
|
|
2938
|
-
|
|
2939
3135
|
export type ReferenceReferenceBuilder = ReferenceReferenceBuilder$instance & __ReferenceReferenceBuilder$views;
|
|
2940
3136
|
|
|
2941
3137
|
|
|
2942
|
-
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
|
+
|
|
3141
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
3142
|
+
|
|
2943
3143
|
HasAnnotation(annotation: string, value: unknown): ReferenceReferenceBuilder;
|
|
2944
3144
|
HasForeignKey(dependentEntityType: Type, ...foreignKeyPropertyNames: string[]): ReferenceReferenceBuilder_2<TEntity, TRelatedEntity>;
|
|
2945
3145
|
HasForeignKey<TDependentEntity>(...foreignKeyPropertyNames: string[]): ReferenceReferenceBuilder_2<TEntity, TRelatedEntity>;
|
|
@@ -2963,12 +3163,14 @@ export interface __ReferenceReferenceBuilder_2$views<TEntity, TRelatedEntity> {
|
|
|
2963
3163
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionForeignKeyBuilder>;
|
|
2964
3164
|
}
|
|
2965
3165
|
|
|
2966
|
-
export interface ReferenceReferenceBuilder_2$instance<TEntity, TRelatedEntity> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionForeignKeyBuilder> {}
|
|
2967
|
-
|
|
2968
3166
|
export type ReferenceReferenceBuilder_2<TEntity, TRelatedEntity> = ReferenceReferenceBuilder_2$instance<TEntity, TRelatedEntity> & __ReferenceReferenceBuilder_2$views<TEntity, TRelatedEntity>;
|
|
2969
3167
|
|
|
2970
3168
|
|
|
2971
3169
|
export interface RelationshipBuilderBase$instance {
|
|
3170
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_RelationshipBuilderBase: never;
|
|
3171
|
+
|
|
3172
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
3173
|
+
|
|
2972
3174
|
Builder: InternalForeignKeyBuilder;
|
|
2973
3175
|
readonly DependentEntityType: IMutableEntityType;
|
|
2974
3176
|
readonly Metadata: IMutableForeignKey;
|
|
@@ -2987,12 +3189,14 @@ export interface __RelationshipBuilderBase$views {
|
|
|
2987
3189
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionForeignKeyBuilder>;
|
|
2988
3190
|
}
|
|
2989
3191
|
|
|
2990
|
-
export interface RelationshipBuilderBase$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionForeignKeyBuilder> {}
|
|
2991
|
-
|
|
2992
3192
|
export type RelationshipBuilderBase = RelationshipBuilderBase$instance & __RelationshipBuilderBase$views;
|
|
2993
3193
|
|
|
2994
3194
|
|
|
2995
3195
|
export interface SequenceBuilder$instance {
|
|
3196
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_SequenceBuilder: never;
|
|
3197
|
+
|
|
3198
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
3199
|
+
|
|
2996
3200
|
readonly Metadata: IMutableSequence;
|
|
2997
3201
|
Equals(obj: unknown): boolean;
|
|
2998
3202
|
GetHashCode(): int;
|
|
@@ -3015,12 +3219,14 @@ export interface __SequenceBuilder$views {
|
|
|
3015
3219
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionSequenceBuilder>;
|
|
3016
3220
|
}
|
|
3017
3221
|
|
|
3018
|
-
export interface SequenceBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionSequenceBuilder> {}
|
|
3019
|
-
|
|
3020
3222
|
export type SequenceBuilder = SequenceBuilder$instance & __SequenceBuilder$views;
|
|
3021
3223
|
|
|
3022
3224
|
|
|
3023
3225
|
export interface SplitTableBuilder$instance {
|
|
3226
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_SplitTableBuilder: never;
|
|
3227
|
+
|
|
3228
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
3229
|
+
|
|
3024
3230
|
readonly InternalMappingFragment: EntityTypeMappingFragment;
|
|
3025
3231
|
readonly MappingFragment: IMutableEntityTypeMappingFragment;
|
|
3026
3232
|
readonly Metadata: IMutableEntityType;
|
|
@@ -3046,12 +3252,14 @@ export interface __SplitTableBuilder$views {
|
|
|
3046
3252
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<EntityTypeBuilder>;
|
|
3047
3253
|
}
|
|
3048
3254
|
|
|
3049
|
-
export interface SplitTableBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<EntityTypeBuilder> {}
|
|
3050
|
-
|
|
3051
3255
|
export type SplitTableBuilder = SplitTableBuilder$instance & __SplitTableBuilder$views;
|
|
3052
3256
|
|
|
3053
3257
|
|
|
3054
|
-
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
|
+
|
|
3261
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
3262
|
+
|
|
3055
3263
|
ExcludeFromMigrations(excluded?: boolean): SplitTableBuilder;
|
|
3056
3264
|
HasAnnotation(annotation: string, value: unknown): SplitTableBuilder;
|
|
3057
3265
|
Property(propertyName: string): ColumnBuilder;
|
|
@@ -3068,12 +3276,14 @@ export interface __SplitTableBuilder_1$views<TEntity> {
|
|
|
3068
3276
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<EntityTypeBuilder>;
|
|
3069
3277
|
}
|
|
3070
3278
|
|
|
3071
|
-
export interface SplitTableBuilder_1$instance<TEntity> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<EntityTypeBuilder> {}
|
|
3072
|
-
|
|
3073
3279
|
export type SplitTableBuilder_1<TEntity> = SplitTableBuilder_1$instance<TEntity> & __SplitTableBuilder_1$views<TEntity>;
|
|
3074
3280
|
|
|
3075
3281
|
|
|
3076
3282
|
export interface SplitViewBuilder$instance {
|
|
3283
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_SplitViewBuilder: never;
|
|
3284
|
+
|
|
3285
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
3286
|
+
|
|
3077
3287
|
readonly MappingFragment: IMutableEntityTypeMappingFragment;
|
|
3078
3288
|
readonly Name: string;
|
|
3079
3289
|
readonly Schema: string | undefined;
|
|
@@ -3095,12 +3305,14 @@ export interface __SplitViewBuilder$views {
|
|
|
3095
3305
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<EntityTypeBuilder>;
|
|
3096
3306
|
}
|
|
3097
3307
|
|
|
3098
|
-
export interface SplitViewBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<EntityTypeBuilder> {}
|
|
3099
|
-
|
|
3100
3308
|
export type SplitViewBuilder = SplitViewBuilder$instance & __SplitViewBuilder$views;
|
|
3101
3309
|
|
|
3102
3310
|
|
|
3103
|
-
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
|
+
|
|
3314
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
3315
|
+
|
|
3104
3316
|
HasAnnotation(annotation: string, value: unknown): SplitViewBuilder;
|
|
3105
3317
|
Property(propertyName: string): ViewColumnBuilder;
|
|
3106
3318
|
Property<TProperty>(propertyName: string): ViewColumnBuilder_1<TProperty>;
|
|
@@ -3116,27 +3328,29 @@ export interface __SplitViewBuilder_1$views<TEntity> {
|
|
|
3116
3328
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<EntityTypeBuilder>;
|
|
3117
3329
|
}
|
|
3118
3330
|
|
|
3119
|
-
export interface SplitViewBuilder_1$instance<TEntity> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<EntityTypeBuilder> {}
|
|
3120
|
-
|
|
3121
3331
|
export type SplitViewBuilder_1<TEntity> = SplitViewBuilder_1$instance<TEntity> & __SplitViewBuilder_1$views<TEntity>;
|
|
3122
3332
|
|
|
3123
3333
|
|
|
3124
3334
|
export interface StoredProcedureBuilder$instance {
|
|
3335
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_StoredProcedureBuilder: never;
|
|
3336
|
+
|
|
3337
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
3338
|
+
|
|
3125
3339
|
readonly Builder: InternalStoredProcedureBuilder;
|
|
3126
3340
|
readonly Metadata: IMutableStoredProcedure;
|
|
3127
3341
|
CreatePropertyBuilder(propertyName: string): PropertyBuilder;
|
|
3128
|
-
CreatePropertyBuilder<TDerivedEntity, TProperty>(propertyExpression:
|
|
3342
|
+
CreatePropertyBuilder<TDerivedEntity, TProperty>(propertyExpression: Expression_1<Func_2<TDerivedEntity, TProperty>>): PropertyBuilder;
|
|
3129
3343
|
HasAnnotation(annotation: string, value: unknown): StoredProcedureBuilder;
|
|
3130
3344
|
HasOriginalValueParameter(propertyName: string): StoredProcedureBuilder;
|
|
3131
|
-
HasOriginalValueParameter(propertyName: string, buildAction:
|
|
3345
|
+
HasOriginalValueParameter(propertyName: string, buildAction: Action_1<StoredProcedureParameterBuilder>): StoredProcedureBuilder;
|
|
3132
3346
|
HasParameter(propertyName: string): StoredProcedureBuilder;
|
|
3133
|
-
HasParameter(propertyName: string, buildAction:
|
|
3347
|
+
HasParameter(propertyName: string, buildAction: Action_1<StoredProcedureParameterBuilder>): StoredProcedureBuilder;
|
|
3134
3348
|
HasResultColumn(propertyName: string): StoredProcedureBuilder;
|
|
3135
|
-
HasResultColumn(propertyName: string, buildAction:
|
|
3349
|
+
HasResultColumn(propertyName: string, buildAction: Action_1<StoredProcedureResultColumnBuilder>): StoredProcedureBuilder;
|
|
3136
3350
|
HasRowsAffectedParameter(): StoredProcedureBuilder;
|
|
3137
|
-
HasRowsAffectedParameter(buildAction:
|
|
3351
|
+
HasRowsAffectedParameter(buildAction: Action_1<StoredProcedureParameterBuilder>): StoredProcedureBuilder;
|
|
3138
3352
|
HasRowsAffectedResultColumn(): StoredProcedureBuilder;
|
|
3139
|
-
HasRowsAffectedResultColumn(buildAction:
|
|
3353
|
+
HasRowsAffectedResultColumn(buildAction: Action_1<StoredProcedureResultColumnBuilder>): StoredProcedureBuilder;
|
|
3140
3354
|
HasRowsAffectedReturnValue(rowsAffectedReturned?: boolean): StoredProcedureBuilder;
|
|
3141
3355
|
}
|
|
3142
3356
|
|
|
@@ -3150,23 +3364,25 @@ export interface __StoredProcedureBuilder$views {
|
|
|
3150
3364
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<EntityTypeBuilder>;
|
|
3151
3365
|
}
|
|
3152
3366
|
|
|
3153
|
-
export interface StoredProcedureBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<EntityTypeBuilder> {}
|
|
3154
|
-
|
|
3155
3367
|
export type StoredProcedureBuilder = StoredProcedureBuilder$instance & __StoredProcedureBuilder$views;
|
|
3156
3368
|
|
|
3157
3369
|
|
|
3158
|
-
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
|
+
|
|
3373
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
3374
|
+
|
|
3159
3375
|
HasAnnotation(annotation: string, value: unknown): StoredProcedureBuilder;
|
|
3160
3376
|
HasOriginalValueParameter(propertyName: string): StoredProcedureBuilder;
|
|
3161
|
-
HasOriginalValueParameter(propertyName: string, buildAction:
|
|
3377
|
+
HasOriginalValueParameter(propertyName: string, buildAction: Action_1<StoredProcedureParameterBuilder>): StoredProcedureBuilder;
|
|
3162
3378
|
HasParameter(propertyName: string): StoredProcedureBuilder;
|
|
3163
|
-
HasParameter(propertyName: string, buildAction:
|
|
3379
|
+
HasParameter(propertyName: string, buildAction: Action_1<StoredProcedureParameterBuilder>): StoredProcedureBuilder;
|
|
3164
3380
|
HasResultColumn(propertyName: string): StoredProcedureBuilder;
|
|
3165
|
-
HasResultColumn(propertyName: string, buildAction:
|
|
3381
|
+
HasResultColumn(propertyName: string, buildAction: Action_1<StoredProcedureResultColumnBuilder>): StoredProcedureBuilder;
|
|
3166
3382
|
HasRowsAffectedParameter(): StoredProcedureBuilder;
|
|
3167
|
-
HasRowsAffectedParameter(buildAction:
|
|
3383
|
+
HasRowsAffectedParameter(buildAction: Action_1<StoredProcedureParameterBuilder>): StoredProcedureBuilder;
|
|
3168
3384
|
HasRowsAffectedResultColumn(): StoredProcedureBuilder;
|
|
3169
|
-
HasRowsAffectedResultColumn(buildAction:
|
|
3385
|
+
HasRowsAffectedResultColumn(buildAction: Action_1<StoredProcedureResultColumnBuilder>): StoredProcedureBuilder;
|
|
3170
3386
|
HasRowsAffectedReturnValue(rowsAffectedReturned?: boolean): StoredProcedureBuilder;
|
|
3171
3387
|
}
|
|
3172
3388
|
|
|
@@ -3180,12 +3396,14 @@ export interface __StoredProcedureBuilder_1$views<TEntity> {
|
|
|
3180
3396
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<EntityTypeBuilder>;
|
|
3181
3397
|
}
|
|
3182
3398
|
|
|
3183
|
-
export interface StoredProcedureBuilder_1$instance<TEntity> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<EntityTypeBuilder> {}
|
|
3184
|
-
|
|
3185
3399
|
export type StoredProcedureBuilder_1<TEntity> = StoredProcedureBuilder_1$instance<TEntity> & __StoredProcedureBuilder_1$views<TEntity>;
|
|
3186
3400
|
|
|
3187
3401
|
|
|
3188
3402
|
export interface StoredProcedureParameterBuilder$instance {
|
|
3403
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_StoredProcedureParameterBuilder: never;
|
|
3404
|
+
|
|
3405
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
3406
|
+
|
|
3189
3407
|
readonly Builder: InternalStoredProcedureParameterBuilder;
|
|
3190
3408
|
readonly Metadata: IMutableStoredProcedureParameter;
|
|
3191
3409
|
Equals(obj: unknown): boolean;
|
|
@@ -3207,12 +3425,14 @@ export interface __StoredProcedureParameterBuilder$views {
|
|
|
3207
3425
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<PropertyBuilder>;
|
|
3208
3426
|
}
|
|
3209
3427
|
|
|
3210
|
-
export interface StoredProcedureParameterBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<PropertyBuilder> {}
|
|
3211
|
-
|
|
3212
3428
|
export type StoredProcedureParameterBuilder = StoredProcedureParameterBuilder$instance & __StoredProcedureParameterBuilder$views;
|
|
3213
3429
|
|
|
3214
3430
|
|
|
3215
3431
|
export interface StoredProcedureResultColumnBuilder$instance {
|
|
3432
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_StoredProcedureResultColumnBuilder: never;
|
|
3433
|
+
|
|
3434
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
3435
|
+
|
|
3216
3436
|
readonly Builder: InternalStoredProcedureResultColumnBuilder;
|
|
3217
3437
|
readonly Metadata: IMutableStoredProcedureResultColumn;
|
|
3218
3438
|
Equals(obj: unknown): boolean;
|
|
@@ -3232,16 +3452,18 @@ export interface __StoredProcedureResultColumnBuilder$views {
|
|
|
3232
3452
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<PropertyBuilder>;
|
|
3233
3453
|
}
|
|
3234
3454
|
|
|
3235
|
-
export interface StoredProcedureResultColumnBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<PropertyBuilder> {}
|
|
3236
|
-
|
|
3237
3455
|
export type StoredProcedureResultColumnBuilder = StoredProcedureResultColumnBuilder$instance & __StoredProcedureResultColumnBuilder$views;
|
|
3238
3456
|
|
|
3239
3457
|
|
|
3240
3458
|
export interface TableBuilder$instance {
|
|
3459
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_TableBuilder: never;
|
|
3460
|
+
|
|
3461
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
3462
|
+
|
|
3241
3463
|
readonly Metadata: IMutableEntityType;
|
|
3242
3464
|
readonly Name: string | undefined;
|
|
3243
3465
|
readonly Schema: string | undefined;
|
|
3244
|
-
readonly StoreObject:
|
|
3466
|
+
readonly StoreObject: Nullable_1<StoreObjectIdentifier>;
|
|
3245
3467
|
Equals(obj: unknown): boolean;
|
|
3246
3468
|
ExcludeFromMigrations(excluded?: boolean): TableBuilder;
|
|
3247
3469
|
GetHashCode(): int;
|
|
@@ -3256,7 +3478,7 @@ export interface TableBuilder$instance {
|
|
|
3256
3478
|
|
|
3257
3479
|
|
|
3258
3480
|
export const TableBuilder: {
|
|
3259
|
-
new(storeObject:
|
|
3481
|
+
new(storeObject: Nullable_1<StoreObjectIdentifier>, entityTypeBuilder: EntityTypeBuilder): TableBuilder;
|
|
3260
3482
|
};
|
|
3261
3483
|
|
|
3262
3484
|
|
|
@@ -3264,12 +3486,14 @@ export interface __TableBuilder$views {
|
|
|
3264
3486
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<EntityTypeBuilder>;
|
|
3265
3487
|
}
|
|
3266
3488
|
|
|
3267
|
-
export interface TableBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<EntityTypeBuilder> {}
|
|
3268
|
-
|
|
3269
3489
|
export type TableBuilder = TableBuilder$instance & __TableBuilder$views;
|
|
3270
3490
|
|
|
3271
3491
|
|
|
3272
|
-
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
|
+
|
|
3495
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
3496
|
+
|
|
3273
3497
|
ExcludeFromMigrations(excluded?: boolean): TableBuilder;
|
|
3274
3498
|
HasComment(comment: string): TableBuilder;
|
|
3275
3499
|
Property(propertyName: string): ColumnBuilder;
|
|
@@ -3278,7 +3502,7 @@ export interface TableBuilder_1$instance<TEntity> extends TableBuilder$instance
|
|
|
3278
3502
|
|
|
3279
3503
|
|
|
3280
3504
|
export const TableBuilder_1: {
|
|
3281
|
-
new<TEntity>(storeObject:
|
|
3505
|
+
new<TEntity>(storeObject: Nullable_1<StoreObjectIdentifier>, entityTypeBuilder: EntityTypeBuilder_1<TEntity>): TableBuilder_1<TEntity>;
|
|
3282
3506
|
};
|
|
3283
3507
|
|
|
3284
3508
|
|
|
@@ -3286,12 +3510,14 @@ export interface __TableBuilder_1$views<TEntity> {
|
|
|
3286
3510
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<EntityTypeBuilder>;
|
|
3287
3511
|
}
|
|
3288
3512
|
|
|
3289
|
-
export interface TableBuilder_1$instance<TEntity> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<EntityTypeBuilder> {}
|
|
3290
|
-
|
|
3291
3513
|
export type TableBuilder_1<TEntity> = TableBuilder_1$instance<TEntity> & __TableBuilder_1$views<TEntity>;
|
|
3292
3514
|
|
|
3293
3515
|
|
|
3294
3516
|
export interface TableTriggerBuilder$instance extends TriggerBuilder$instance {
|
|
3517
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_TableTriggerBuilder: never;
|
|
3518
|
+
|
|
3519
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
3520
|
+
|
|
3295
3521
|
Equals(obj: unknown): boolean;
|
|
3296
3522
|
GetHashCode(): int;
|
|
3297
3523
|
HasAnnotation(annotation: string, value: unknown): TriggerBuilder;
|
|
@@ -3309,16 +3535,18 @@ export interface __TableTriggerBuilder$views {
|
|
|
3309
3535
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionTriggerBuilder>;
|
|
3310
3536
|
}
|
|
3311
3537
|
|
|
3312
|
-
export interface TableTriggerBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionTriggerBuilder> {}
|
|
3313
|
-
|
|
3314
3538
|
export type TableTriggerBuilder = TableTriggerBuilder$instance & __TableTriggerBuilder$views;
|
|
3315
3539
|
|
|
3316
3540
|
|
|
3317
3541
|
export interface TableValuedFunctionBuilder$instance extends DbFunctionBuilderBase$instance {
|
|
3542
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_TableValuedFunctionBuilder: never;
|
|
3543
|
+
|
|
3544
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
3545
|
+
|
|
3318
3546
|
HasAnnotation(annotation: string, value: unknown): TableValuedFunctionBuilder;
|
|
3319
3547
|
HasName(name: string): DbFunctionBuilderBase;
|
|
3320
3548
|
HasParameter(name: string): DbFunctionParameterBuilder;
|
|
3321
|
-
HasParameter(name: string, buildAction:
|
|
3549
|
+
HasParameter(name: string, buildAction: Action_1<DbFunctionParameterBuilder>): DbFunctionBuilderBase;
|
|
3322
3550
|
HasSchema(schema: string): DbFunctionBuilderBase;
|
|
3323
3551
|
IsBuiltIn(builtIn?: boolean): DbFunctionBuilderBase;
|
|
3324
3552
|
}
|
|
@@ -3333,18 +3561,20 @@ export interface __TableValuedFunctionBuilder$views {
|
|
|
3333
3561
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionDbFunctionBuilder>;
|
|
3334
3562
|
}
|
|
3335
3563
|
|
|
3336
|
-
export interface TableValuedFunctionBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionDbFunctionBuilder> {}
|
|
3337
|
-
|
|
3338
3564
|
export type TableValuedFunctionBuilder = TableValuedFunctionBuilder$instance & __TableValuedFunctionBuilder$views;
|
|
3339
3565
|
|
|
3340
3566
|
|
|
3341
|
-
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
|
+
|
|
3570
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
3571
|
+
|
|
3342
3572
|
HasAnnotation(annotation: string, value: unknown): TableValuedFunctionBuilder;
|
|
3343
3573
|
HasName(name: string): TableValuedFunctionBuilder;
|
|
3344
3574
|
HasName(name: string): DbFunctionBuilderBase;
|
|
3345
|
-
HasParameter(name: string, buildAction:
|
|
3575
|
+
HasParameter(name: string, buildAction: Action_1<DbFunctionParameterBuilder>): TableValuedFunctionBuilder;
|
|
3346
3576
|
HasParameter(name: string): DbFunctionParameterBuilder;
|
|
3347
|
-
HasParameter(name: string, buildAction:
|
|
3577
|
+
HasParameter(name: string, buildAction: Action_1<DbFunctionParameterBuilder>): DbFunctionBuilderBase;
|
|
3348
3578
|
HasSchema(schema: string): TableValuedFunctionBuilder;
|
|
3349
3579
|
HasSchema(schema: string): DbFunctionBuilderBase;
|
|
3350
3580
|
IsBuiltIn(builtIn?: boolean): TableValuedFunctionBuilder;
|
|
@@ -3361,12 +3591,14 @@ export interface __TableValuedFunctionBuilder_1$views<TEntity> {
|
|
|
3361
3591
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionDbFunctionBuilder>;
|
|
3362
3592
|
}
|
|
3363
3593
|
|
|
3364
|
-
export interface TableValuedFunctionBuilder_1$instance<TEntity> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionDbFunctionBuilder> {}
|
|
3365
|
-
|
|
3366
3594
|
export type TableValuedFunctionBuilder_1<TEntity> = TableValuedFunctionBuilder_1$instance<TEntity> & __TableValuedFunctionBuilder_1$views<TEntity>;
|
|
3367
3595
|
|
|
3368
3596
|
|
|
3369
3597
|
export interface TriggerBuilder$instance {
|
|
3598
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_TriggerBuilder: never;
|
|
3599
|
+
|
|
3600
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
3601
|
+
|
|
3370
3602
|
readonly Builder: IConventionTriggerBuilder;
|
|
3371
3603
|
readonly InternalBuilder: InternalTriggerBuilder;
|
|
3372
3604
|
readonly Metadata: IMutableTrigger;
|
|
@@ -3386,12 +3618,12 @@ export interface __TriggerBuilder$views {
|
|
|
3386
3618
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionTriggerBuilder>;
|
|
3387
3619
|
}
|
|
3388
3620
|
|
|
3389
|
-
export interface TriggerBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<IConventionTriggerBuilder> {}
|
|
3390
|
-
|
|
3391
3621
|
export type TriggerBuilder = TriggerBuilder$instance & __TriggerBuilder$views;
|
|
3392
3622
|
|
|
3393
3623
|
|
|
3394
3624
|
export interface TypeMappingConfigurationBuilder$instance {
|
|
3625
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_TypeMappingConfigurationBuilder: never;
|
|
3626
|
+
|
|
3395
3627
|
readonly Configuration: PropertyConfiguration;
|
|
3396
3628
|
Equals(obj: unknown): boolean;
|
|
3397
3629
|
GetHashCode(): int;
|
|
@@ -3415,6 +3647,8 @@ export const TypeMappingConfigurationBuilder: {
|
|
|
3415
3647
|
export type TypeMappingConfigurationBuilder = TypeMappingConfigurationBuilder$instance;
|
|
3416
3648
|
|
|
3417
3649
|
export interface TypeMappingConfigurationBuilder_1$instance<TProperty> extends TypeMappingConfigurationBuilder {
|
|
3650
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_TypeMappingConfigurationBuilder_1: never;
|
|
3651
|
+
|
|
3418
3652
|
HasAnnotation(annotation: string, value: unknown): TypeMappingConfigurationBuilder_1<TProperty>;
|
|
3419
3653
|
HasAnnotation(annotation: string, value: unknown): TypeMappingConfigurationBuilder;
|
|
3420
3654
|
HasConversion<TConversion>(): TypeMappingConfigurationBuilder_1<TProperty>;
|
|
@@ -3443,6 +3677,10 @@ export const TypeMappingConfigurationBuilder_1: {
|
|
|
3443
3677
|
export type TypeMappingConfigurationBuilder_1<TProperty> = TypeMappingConfigurationBuilder_1$instance<TProperty>;
|
|
3444
3678
|
|
|
3445
3679
|
export interface ViewBuilder$instance {
|
|
3680
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_ViewBuilder: never;
|
|
3681
|
+
|
|
3682
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
3683
|
+
|
|
3446
3684
|
readonly Name: string;
|
|
3447
3685
|
readonly Schema: string | undefined;
|
|
3448
3686
|
readonly StoreObject: StoreObjectIdentifier;
|
|
@@ -3463,12 +3701,14 @@ export interface __ViewBuilder$views {
|
|
|
3463
3701
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<EntityTypeBuilder>;
|
|
3464
3702
|
}
|
|
3465
3703
|
|
|
3466
|
-
export interface ViewBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<EntityTypeBuilder> {}
|
|
3467
|
-
|
|
3468
3704
|
export type ViewBuilder = ViewBuilder$instance & __ViewBuilder$views;
|
|
3469
3705
|
|
|
3470
3706
|
|
|
3471
|
-
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
|
+
|
|
3710
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
3711
|
+
|
|
3472
3712
|
Property(propertyName: string): ViewColumnBuilder;
|
|
3473
3713
|
Property<TProperty>(propertyName: string): ViewColumnBuilder_1<TProperty>;
|
|
3474
3714
|
}
|
|
@@ -3483,12 +3723,14 @@ export interface __ViewBuilder_1$views<TEntity> {
|
|
|
3483
3723
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<EntityTypeBuilder>;
|
|
3484
3724
|
}
|
|
3485
3725
|
|
|
3486
|
-
export interface ViewBuilder_1$instance<TEntity> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<EntityTypeBuilder> {}
|
|
3487
|
-
|
|
3488
3726
|
export type ViewBuilder_1<TEntity> = ViewBuilder_1$instance<TEntity> & __ViewBuilder_1$views<TEntity>;
|
|
3489
3727
|
|
|
3490
3728
|
|
|
3491
3729
|
export interface ViewColumnBuilder$instance {
|
|
3730
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Metadata_Builders_ViewColumnBuilder: never;
|
|
3731
|
+
|
|
3732
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
3733
|
+
|
|
3492
3734
|
readonly InternalOverrides: RelationalPropertyOverrides;
|
|
3493
3735
|
readonly Overrides: IMutableRelationalPropertyOverrides;
|
|
3494
3736
|
Equals(obj: unknown): boolean;
|
|
@@ -3508,12 +3750,14 @@ export interface __ViewColumnBuilder$views {
|
|
|
3508
3750
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<PropertyBuilder>;
|
|
3509
3751
|
}
|
|
3510
3752
|
|
|
3511
|
-
export interface ViewColumnBuilder$instance extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<PropertyBuilder> {}
|
|
3512
|
-
|
|
3513
3753
|
export type ViewColumnBuilder = ViewColumnBuilder$instance & __ViewColumnBuilder$views;
|
|
3514
3754
|
|
|
3515
3755
|
|
|
3516
|
-
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
|
+
|
|
3759
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IInfrastructure_1: never;
|
|
3760
|
+
|
|
3517
3761
|
HasAnnotation(annotation: string, value: unknown): ViewColumnBuilder;
|
|
3518
3762
|
HasColumnName(name: string): ViewColumnBuilder;
|
|
3519
3763
|
}
|
|
@@ -3528,8 +3772,6 @@ export interface __ViewColumnBuilder_1$views<TProperty> {
|
|
|
3528
3772
|
As_IInfrastructure_1(): Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<PropertyBuilder>;
|
|
3529
3773
|
}
|
|
3530
3774
|
|
|
3531
|
-
export interface ViewColumnBuilder_1$instance<TProperty> extends Microsoft_EntityFrameworkCore_Infrastructure_Internal.IInfrastructure_1$instance<PropertyBuilder> {}
|
|
3532
|
-
|
|
3533
3775
|
export type ViewColumnBuilder_1<TProperty> = ViewColumnBuilder_1$instance<TProperty> & __ViewColumnBuilder_1$views<TProperty>;
|
|
3534
3776
|
|
|
3535
3777
|
|