@tsonic/efcore 10.0.2 → 10.0.5
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 +52 -34
- package/Microsoft.EntityFrameworkCore.ChangeTracking/internal/index.d.ts +131 -65
- package/Microsoft.EntityFrameworkCore.ChangeTracking.Internal/internal/index.d.ts +350 -252
- package/Microsoft.EntityFrameworkCore.Design/internal/index.d.ts +58 -54
- package/Microsoft.EntityFrameworkCore.Design.Internal/internal/index.d.ts +20 -14
- package/Microsoft.EntityFrameworkCore.Diagnostics/internal/index.d.ts +115 -45
- package/Microsoft.EntityFrameworkCore.Diagnostics.Internal/internal/index.d.ts +40 -43
- package/Microsoft.EntityFrameworkCore.Infrastructure/internal/index.d.ts +264 -236
- package/Microsoft.EntityFrameworkCore.Infrastructure.Internal/internal/index.d.ts +27 -9
- package/Microsoft.EntityFrameworkCore.Internal/internal/index.d.ts +100 -7
- package/Microsoft.EntityFrameworkCore.Metadata/internal/index.d.ts +763 -381
- package/Microsoft.EntityFrameworkCore.Metadata.Builders/internal/index.d.ts +311 -241
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions/internal/index.d.ts +704 -539
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure/internal/index.d.ts +18 -13
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Internal/internal/index.d.ts +11 -1
- package/Microsoft.EntityFrameworkCore.Metadata.Internal/internal/index.d.ts +1041 -691
- package/Microsoft.EntityFrameworkCore.Migrations/internal/index.d.ts +125 -114
- package/Microsoft.EntityFrameworkCore.Migrations.Internal/internal/index.d.ts +65 -63
- package/Microsoft.EntityFrameworkCore.Migrations.Operations/internal/index.d.ts +367 -311
- package/Microsoft.EntityFrameworkCore.Migrations.Operations.Builders/internal/index.d.ts +7 -5
- package/Microsoft.EntityFrameworkCore.Query/internal/index.d.ts +647 -685
- package/Microsoft.EntityFrameworkCore.Query.Internal/internal/index.d.ts +294 -283
- package/Microsoft.EntityFrameworkCore.Query.SqlExpressions/internal/index.d.ts +233 -294
- package/Microsoft.EntityFrameworkCore.Scaffolding/internal/index.d.ts +17 -9
- package/Microsoft.EntityFrameworkCore.Scaffolding.Metadata/internal/index.d.ts +103 -92
- package/Microsoft.EntityFrameworkCore.Storage/internal/index.d.ts +372 -435
- package/Microsoft.EntityFrameworkCore.Storage.Internal/internal/index.d.ts +46 -45
- package/Microsoft.EntityFrameworkCore.Storage.Internal.d.ts +3 -0
- package/Microsoft.EntityFrameworkCore.Storage.Json/internal/index.d.ts +19 -31
- package/Microsoft.EntityFrameworkCore.Storage.ValueConversion/internal/index.d.ts +8 -8
- package/Microsoft.EntityFrameworkCore.Update/internal/index.d.ts +155 -130
- package/Microsoft.EntityFrameworkCore.Update.Internal/internal/index.d.ts +94 -39
- package/Microsoft.EntityFrameworkCore.ValueGeneration/internal/index.d.ts +34 -46
- package/Microsoft.EntityFrameworkCore.ValueGeneration.Internal/internal/index.d.ts +5 -14
- package/Microsoft.Extensions.DependencyInjection.d.ts +3 -0
- package/__internal/extensions/index.d.ts +860 -595
- package/package.json +1 -1
|
@@ -28,6 +28,8 @@ import * as System_Text_Json_Serialization_Internal from "@tsonic/dotnet/System.
|
|
|
28
28
|
import type { JsonPropertyNameAttribute } from "@tsonic/dotnet/System.Text.Json.Serialization.js";
|
|
29
29
|
|
|
30
30
|
export interface IComplexPropertyAddedConvention$instance extends IConvention {
|
|
31
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IComplexPropertyAddedConvention: never;
|
|
32
|
+
|
|
31
33
|
ProcessComplexPropertyAdded(propertyBuilder: IConventionComplexPropertyBuilder, context: IConventionContext_1<IConventionComplexPropertyBuilder>): void;
|
|
32
34
|
}
|
|
33
35
|
|
|
@@ -37,6 +39,8 @@ export interface IComplexPropertyAddedConvention$instance extends IConvention$in
|
|
|
37
39
|
export type IComplexPropertyAddedConvention = IComplexPropertyAddedConvention$instance;
|
|
38
40
|
|
|
39
41
|
export interface IComplexPropertyAnnotationChangedConvention$instance extends IConvention {
|
|
42
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IComplexPropertyAnnotationChangedConvention: never;
|
|
43
|
+
|
|
40
44
|
ProcessComplexPropertyAnnotationChanged(propertyBuilder: IConventionComplexPropertyBuilder, name: string, annotation: IConventionAnnotation, oldAnnotation: IConventionAnnotation, context: IConventionContext_1<IConventionAnnotation>): void;
|
|
41
45
|
}
|
|
42
46
|
|
|
@@ -46,6 +50,8 @@ export interface IComplexPropertyAnnotationChangedConvention$instance extends IC
|
|
|
46
50
|
export type IComplexPropertyAnnotationChangedConvention = IComplexPropertyAnnotationChangedConvention$instance;
|
|
47
51
|
|
|
48
52
|
export interface IComplexPropertyFieldChangedConvention$instance extends IConvention {
|
|
53
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IComplexPropertyFieldChangedConvention: never;
|
|
54
|
+
|
|
49
55
|
ProcessComplexPropertyFieldChanged(propertyBuilder: IConventionComplexPropertyBuilder, newFieldInfo: FieldInfo, oldFieldInfo: FieldInfo, context: IConventionContext_1<FieldInfo>): void;
|
|
50
56
|
}
|
|
51
57
|
|
|
@@ -55,6 +61,8 @@ export interface IComplexPropertyFieldChangedConvention$instance extends IConven
|
|
|
55
61
|
export type IComplexPropertyFieldChangedConvention = IComplexPropertyFieldChangedConvention$instance;
|
|
56
62
|
|
|
57
63
|
export interface IComplexPropertyNullabilityChangedConvention$instance extends IConvention {
|
|
64
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IComplexPropertyNullabilityChangedConvention: never;
|
|
65
|
+
|
|
58
66
|
ProcessComplexPropertyNullabilityChanged(propertyBuilder: IConventionComplexPropertyBuilder, context: IConventionContext_1<Nullable<System_Internal.Boolean>>): void;
|
|
59
67
|
}
|
|
60
68
|
|
|
@@ -64,6 +72,8 @@ export interface IComplexPropertyNullabilityChangedConvention$instance extends I
|
|
|
64
72
|
export type IComplexPropertyNullabilityChangedConvention = IComplexPropertyNullabilityChangedConvention$instance;
|
|
65
73
|
|
|
66
74
|
export interface IComplexPropertyRemovedConvention$instance extends IConvention {
|
|
75
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IComplexPropertyRemovedConvention: never;
|
|
76
|
+
|
|
67
77
|
ProcessComplexPropertyRemoved(typeBaseBuilder: IConventionTypeBaseBuilder, property: IConventionComplexProperty, context: IConventionContext_1<IConventionComplexProperty>): void;
|
|
68
78
|
}
|
|
69
79
|
|
|
@@ -73,6 +83,8 @@ export interface IComplexPropertyRemovedConvention$instance extends IConvention$
|
|
|
73
83
|
export type IComplexPropertyRemovedConvention = IComplexPropertyRemovedConvention$instance;
|
|
74
84
|
|
|
75
85
|
export interface IComplexTypeAnnotationChangedConvention$instance extends IConvention {
|
|
86
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IComplexTypeAnnotationChangedConvention: never;
|
|
87
|
+
|
|
76
88
|
ProcessComplexTypeAnnotationChanged(complexTypeBuilder: IConventionComplexTypeBuilder, name: string, annotation: IConventionAnnotation, oldAnnotation: IConventionAnnotation, context: IConventionContext_1<IConventionAnnotation>): void;
|
|
77
89
|
}
|
|
78
90
|
|
|
@@ -82,6 +94,8 @@ export interface IComplexTypeAnnotationChangedConvention$instance extends IConve
|
|
|
82
94
|
export type IComplexTypeAnnotationChangedConvention = IComplexTypeAnnotationChangedConvention$instance;
|
|
83
95
|
|
|
84
96
|
export interface IComplexTypeMemberIgnoredConvention$instance extends IConvention {
|
|
97
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IComplexTypeMemberIgnoredConvention: never;
|
|
98
|
+
|
|
85
99
|
ProcessComplexTypeMemberIgnored(complexTypeBuilder: IConventionComplexTypeBuilder, name: string, context: IConventionContext_1<System_Internal.String>): void;
|
|
86
100
|
}
|
|
87
101
|
|
|
@@ -91,20 +105,28 @@ export interface IComplexTypeMemberIgnoredConvention$instance extends IConventio
|
|
|
91
105
|
export type IComplexTypeMemberIgnoredConvention = IComplexTypeMemberIgnoredConvention$instance;
|
|
92
106
|
|
|
93
107
|
export interface IConvention$instance {
|
|
108
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
109
|
+
|
|
94
110
|
}
|
|
95
111
|
|
|
96
112
|
|
|
97
113
|
export type IConvention = IConvention$instance;
|
|
98
114
|
|
|
99
115
|
export interface IConventionBatch$instance extends IDisposable {
|
|
116
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConventionBatch: never;
|
|
117
|
+
|
|
100
118
|
Run(foreignKey: IConventionForeignKey): IConventionForeignKey | undefined;
|
|
101
119
|
Track(foreignKey: IConventionForeignKey): IMetadataReference_1<IConventionForeignKey>;
|
|
102
120
|
}
|
|
103
121
|
|
|
104
122
|
|
|
123
|
+
export interface IConventionBatch$instance extends System_Internal.IDisposable {}
|
|
124
|
+
|
|
105
125
|
export type IConventionBatch = IConventionBatch$instance;
|
|
106
126
|
|
|
107
127
|
export interface IConventionContext$instance {
|
|
128
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConventionContext: never;
|
|
129
|
+
|
|
108
130
|
DelayConventions(): IConventionBatch;
|
|
109
131
|
StopProcessing(): void;
|
|
110
132
|
}
|
|
@@ -113,6 +135,8 @@ export interface IConventionContext$instance {
|
|
|
113
135
|
export type IConventionContext = IConventionContext$instance;
|
|
114
136
|
|
|
115
137
|
export interface IConventionContext_1$instance<TMetadata> extends IConventionContext {
|
|
138
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConventionContext_1: never;
|
|
139
|
+
|
|
116
140
|
DelayConventions(): IConventionBatch;
|
|
117
141
|
StopProcessing(): void;
|
|
118
142
|
StopProcessing(result: TMetadata): void;
|
|
@@ -122,6 +146,8 @@ export interface IConventionContext_1$instance<TMetadata> extends IConventionCon
|
|
|
122
146
|
export type IConventionContext_1<TMetadata> = IConventionContext_1$instance<TMetadata>;
|
|
123
147
|
|
|
124
148
|
export interface IDiscriminatorPropertySetConvention$instance extends IConvention {
|
|
149
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IDiscriminatorPropertySetConvention: never;
|
|
150
|
+
|
|
125
151
|
ProcessDiscriminatorPropertySet(structuralTypeBuilder: IConventionTypeBaseBuilder, name: string, context: IConventionContext_1<System_Internal.String>): void;
|
|
126
152
|
}
|
|
127
153
|
|
|
@@ -131,6 +157,8 @@ export interface IDiscriminatorPropertySetConvention$instance extends IConventio
|
|
|
131
157
|
export type IDiscriminatorPropertySetConvention = IDiscriminatorPropertySetConvention$instance;
|
|
132
158
|
|
|
133
159
|
export interface IElementTypeAnnotationChangedConvention$instance extends IConvention {
|
|
160
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IElementTypeAnnotationChangedConvention: never;
|
|
161
|
+
|
|
134
162
|
ProcessElementTypeAnnotationChanged(builder: IConventionElementTypeBuilder, name: string, annotation: IConventionAnnotation, oldAnnotation: IConventionAnnotation, context: IConventionContext_1<IConventionAnnotation>): void;
|
|
135
163
|
}
|
|
136
164
|
|
|
@@ -140,6 +168,8 @@ export interface IElementTypeAnnotationChangedConvention$instance extends IConve
|
|
|
140
168
|
export type IElementTypeAnnotationChangedConvention = IElementTypeAnnotationChangedConvention$instance;
|
|
141
169
|
|
|
142
170
|
export interface IElementTypeNullabilityChangedConvention$instance extends IConvention {
|
|
171
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IElementTypeNullabilityChangedConvention: never;
|
|
172
|
+
|
|
143
173
|
ProcessElementTypeNullabilityChanged(builder: IConventionElementTypeBuilder, context: IConventionContext_1<Nullable<System_Internal.Boolean>>): void;
|
|
144
174
|
}
|
|
145
175
|
|
|
@@ -149,6 +179,8 @@ export interface IElementTypeNullabilityChangedConvention$instance extends IConv
|
|
|
149
179
|
export type IElementTypeNullabilityChangedConvention = IElementTypeNullabilityChangedConvention$instance;
|
|
150
180
|
|
|
151
181
|
export interface IEntityTypeAddedConvention$instance extends IConvention {
|
|
182
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IEntityTypeAddedConvention: never;
|
|
183
|
+
|
|
152
184
|
ProcessEntityTypeAdded(entityTypeBuilder: IConventionEntityTypeBuilder, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
153
185
|
}
|
|
154
186
|
|
|
@@ -158,6 +190,8 @@ export interface IEntityTypeAddedConvention$instance extends IConvention$instanc
|
|
|
158
190
|
export type IEntityTypeAddedConvention = IEntityTypeAddedConvention$instance;
|
|
159
191
|
|
|
160
192
|
export interface IEntityTypeAnnotationChangedConvention$instance extends IConvention {
|
|
193
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IEntityTypeAnnotationChangedConvention: never;
|
|
194
|
+
|
|
161
195
|
ProcessEntityTypeAnnotationChanged(entityTypeBuilder: IConventionEntityTypeBuilder, name: string, annotation: IConventionAnnotation, oldAnnotation: IConventionAnnotation, context: IConventionContext_1<IConventionAnnotation>): void;
|
|
162
196
|
}
|
|
163
197
|
|
|
@@ -167,6 +201,8 @@ export interface IEntityTypeAnnotationChangedConvention$instance extends IConven
|
|
|
167
201
|
export type IEntityTypeAnnotationChangedConvention = IEntityTypeAnnotationChangedConvention$instance;
|
|
168
202
|
|
|
169
203
|
export interface IEntityTypeBaseTypeChangedConvention$instance extends IConvention {
|
|
204
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IEntityTypeBaseTypeChangedConvention: never;
|
|
205
|
+
|
|
170
206
|
ProcessEntityTypeBaseTypeChanged(entityTypeBuilder: IConventionEntityTypeBuilder, newBaseType: IConventionEntityType, oldBaseType: IConventionEntityType, context: IConventionContext_1<IConventionEntityType>): void;
|
|
171
207
|
}
|
|
172
208
|
|
|
@@ -176,6 +212,8 @@ export interface IEntityTypeBaseTypeChangedConvention$instance extends IConventi
|
|
|
176
212
|
export type IEntityTypeBaseTypeChangedConvention = IEntityTypeBaseTypeChangedConvention$instance;
|
|
177
213
|
|
|
178
214
|
export interface IEntityTypeIgnoredConvention$instance extends IConvention {
|
|
215
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IEntityTypeIgnoredConvention: never;
|
|
216
|
+
|
|
179
217
|
ProcessEntityTypeIgnored(modelBuilder: IConventionModelBuilder, name: string, type: Type, context: IConventionContext_1<System_Internal.String>): void;
|
|
180
218
|
}
|
|
181
219
|
|
|
@@ -185,6 +223,8 @@ export interface IEntityTypeIgnoredConvention$instance extends IConvention$insta
|
|
|
185
223
|
export type IEntityTypeIgnoredConvention = IEntityTypeIgnoredConvention$instance;
|
|
186
224
|
|
|
187
225
|
export interface IEntityTypeMemberIgnoredConvention$instance extends IConvention {
|
|
226
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IEntityTypeMemberIgnoredConvention: never;
|
|
227
|
+
|
|
188
228
|
ProcessEntityTypeMemberIgnored(entityTypeBuilder: IConventionEntityTypeBuilder, name: string, context: IConventionContext_1<System_Internal.String>): void;
|
|
189
229
|
}
|
|
190
230
|
|
|
@@ -194,6 +234,8 @@ export interface IEntityTypeMemberIgnoredConvention$instance extends IConvention
|
|
|
194
234
|
export type IEntityTypeMemberIgnoredConvention = IEntityTypeMemberIgnoredConvention$instance;
|
|
195
235
|
|
|
196
236
|
export interface IEntityTypePrimaryKeyChangedConvention$instance extends IConvention {
|
|
237
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IEntityTypePrimaryKeyChangedConvention: never;
|
|
238
|
+
|
|
197
239
|
ProcessEntityTypePrimaryKeyChanged(entityTypeBuilder: IConventionEntityTypeBuilder, newPrimaryKey: IConventionKey, previousPrimaryKey: IConventionKey, context: IConventionContext_1<IConventionKey>): void;
|
|
198
240
|
}
|
|
199
241
|
|
|
@@ -203,6 +245,8 @@ export interface IEntityTypePrimaryKeyChangedConvention$instance extends IConven
|
|
|
203
245
|
export type IEntityTypePrimaryKeyChangedConvention = IEntityTypePrimaryKeyChangedConvention$instance;
|
|
204
246
|
|
|
205
247
|
export interface IEntityTypeRemovedConvention$instance extends IConvention {
|
|
248
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IEntityTypeRemovedConvention: never;
|
|
249
|
+
|
|
206
250
|
ProcessEntityTypeRemoved(modelBuilder: IConventionModelBuilder, entityType: IConventionEntityType, context: IConventionContext_1<IConventionEntityType>): void;
|
|
207
251
|
}
|
|
208
252
|
|
|
@@ -212,6 +256,8 @@ export interface IEntityTypeRemovedConvention$instance extends IConvention$insta
|
|
|
212
256
|
export type IEntityTypeRemovedConvention = IEntityTypeRemovedConvention$instance;
|
|
213
257
|
|
|
214
258
|
export interface IForeignKeyAddedConvention$instance extends IConvention {
|
|
259
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IForeignKeyAddedConvention: never;
|
|
260
|
+
|
|
215
261
|
ProcessForeignKeyAdded(foreignKeyBuilder: IConventionForeignKeyBuilder, context: IConventionContext_1<IConventionForeignKeyBuilder>): void;
|
|
216
262
|
}
|
|
217
263
|
|
|
@@ -221,6 +267,8 @@ export interface IForeignKeyAddedConvention$instance extends IConvention$instanc
|
|
|
221
267
|
export type IForeignKeyAddedConvention = IForeignKeyAddedConvention$instance;
|
|
222
268
|
|
|
223
269
|
export interface IForeignKeyAnnotationChangedConvention$instance extends IConvention {
|
|
270
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IForeignKeyAnnotationChangedConvention: never;
|
|
271
|
+
|
|
224
272
|
ProcessForeignKeyAnnotationChanged(relationshipBuilder: IConventionForeignKeyBuilder, name: string, annotation: IConventionAnnotation, oldAnnotation: IConventionAnnotation, context: IConventionContext_1<IConventionAnnotation>): void;
|
|
225
273
|
}
|
|
226
274
|
|
|
@@ -230,6 +278,8 @@ export interface IForeignKeyAnnotationChangedConvention$instance extends IConven
|
|
|
230
278
|
export type IForeignKeyAnnotationChangedConvention = IForeignKeyAnnotationChangedConvention$instance;
|
|
231
279
|
|
|
232
280
|
export interface IForeignKeyDependentRequirednessChangedConvention$instance extends IConvention {
|
|
281
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IForeignKeyDependentRequirednessChangedConvention: never;
|
|
282
|
+
|
|
233
283
|
ProcessForeignKeyDependentRequirednessChanged(relationshipBuilder: IConventionForeignKeyBuilder, context: IConventionContext_1<Nullable<System_Internal.Boolean>>): void;
|
|
234
284
|
}
|
|
235
285
|
|
|
@@ -239,6 +289,8 @@ export interface IForeignKeyDependentRequirednessChangedConvention$instance exte
|
|
|
239
289
|
export type IForeignKeyDependentRequirednessChangedConvention = IForeignKeyDependentRequirednessChangedConvention$instance;
|
|
240
290
|
|
|
241
291
|
export interface IForeignKeyNullNavigationSetConvention$instance extends IConvention {
|
|
292
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IForeignKeyNullNavigationSetConvention: never;
|
|
293
|
+
|
|
242
294
|
ProcessForeignKeyNullNavigationSet(relationshipBuilder: IConventionForeignKeyBuilder, pointsToPrincipal: boolean, context: IConventionContext_1<IConventionNavigation>): void;
|
|
243
295
|
}
|
|
244
296
|
|
|
@@ -248,6 +300,8 @@ export interface IForeignKeyNullNavigationSetConvention$instance extends IConven
|
|
|
248
300
|
export type IForeignKeyNullNavigationSetConvention = IForeignKeyNullNavigationSetConvention$instance;
|
|
249
301
|
|
|
250
302
|
export interface IForeignKeyOwnershipChangedConvention$instance extends IConvention {
|
|
303
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IForeignKeyOwnershipChangedConvention: never;
|
|
304
|
+
|
|
251
305
|
ProcessForeignKeyOwnershipChanged(relationshipBuilder: IConventionForeignKeyBuilder, context: IConventionContext_1<Nullable<System_Internal.Boolean>>): void;
|
|
252
306
|
}
|
|
253
307
|
|
|
@@ -257,6 +311,8 @@ export interface IForeignKeyOwnershipChangedConvention$instance extends IConvent
|
|
|
257
311
|
export type IForeignKeyOwnershipChangedConvention = IForeignKeyOwnershipChangedConvention$instance;
|
|
258
312
|
|
|
259
313
|
export interface IForeignKeyPrincipalEndChangedConvention$instance extends IConvention {
|
|
314
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IForeignKeyPrincipalEndChangedConvention: never;
|
|
315
|
+
|
|
260
316
|
ProcessForeignKeyPrincipalEndChanged(relationshipBuilder: IConventionForeignKeyBuilder, context: IConventionContext_1<IConventionForeignKeyBuilder>): void;
|
|
261
317
|
}
|
|
262
318
|
|
|
@@ -266,6 +322,8 @@ export interface IForeignKeyPrincipalEndChangedConvention$instance extends IConv
|
|
|
266
322
|
export type IForeignKeyPrincipalEndChangedConvention = IForeignKeyPrincipalEndChangedConvention$instance;
|
|
267
323
|
|
|
268
324
|
export interface IForeignKeyPropertiesChangedConvention$instance extends IConvention {
|
|
325
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IForeignKeyPropertiesChangedConvention: never;
|
|
326
|
+
|
|
269
327
|
ProcessForeignKeyPropertiesChanged(relationshipBuilder: IConventionForeignKeyBuilder, oldDependentProperties: IReadOnlyList<IConventionProperty>, oldPrincipalKey: IConventionKey, context: IConventionContext_1<IReadOnlyList<IConventionProperty>>): void;
|
|
270
328
|
}
|
|
271
329
|
|
|
@@ -275,6 +333,8 @@ export interface IForeignKeyPropertiesChangedConvention$instance extends IConven
|
|
|
275
333
|
export type IForeignKeyPropertiesChangedConvention = IForeignKeyPropertiesChangedConvention$instance;
|
|
276
334
|
|
|
277
335
|
export interface IForeignKeyRemovedConvention$instance extends IConvention {
|
|
336
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IForeignKeyRemovedConvention: never;
|
|
337
|
+
|
|
278
338
|
ProcessForeignKeyRemoved(entityTypeBuilder: IConventionEntityTypeBuilder, foreignKey: IConventionForeignKey, context: IConventionContext_1<IConventionForeignKey>): void;
|
|
279
339
|
}
|
|
280
340
|
|
|
@@ -284,6 +344,8 @@ export interface IForeignKeyRemovedConvention$instance extends IConvention$insta
|
|
|
284
344
|
export type IForeignKeyRemovedConvention = IForeignKeyRemovedConvention$instance;
|
|
285
345
|
|
|
286
346
|
export interface IForeignKeyRequirednessChangedConvention$instance extends IConvention {
|
|
347
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IForeignKeyRequirednessChangedConvention: never;
|
|
348
|
+
|
|
287
349
|
ProcessForeignKeyRequirednessChanged(relationshipBuilder: IConventionForeignKeyBuilder, context: IConventionContext_1<Nullable<System_Internal.Boolean>>): void;
|
|
288
350
|
}
|
|
289
351
|
|
|
@@ -293,6 +355,8 @@ export interface IForeignKeyRequirednessChangedConvention$instance extends IConv
|
|
|
293
355
|
export type IForeignKeyRequirednessChangedConvention = IForeignKeyRequirednessChangedConvention$instance;
|
|
294
356
|
|
|
295
357
|
export interface IForeignKeyUniquenessChangedConvention$instance extends IConvention {
|
|
358
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IForeignKeyUniquenessChangedConvention: never;
|
|
359
|
+
|
|
296
360
|
ProcessForeignKeyUniquenessChanged(relationshipBuilder: IConventionForeignKeyBuilder, context: IConventionContext_1<Nullable<System_Internal.Boolean>>): void;
|
|
297
361
|
}
|
|
298
362
|
|
|
@@ -302,6 +366,8 @@ export interface IForeignKeyUniquenessChangedConvention$instance extends IConven
|
|
|
302
366
|
export type IForeignKeyUniquenessChangedConvention = IForeignKeyUniquenessChangedConvention$instance;
|
|
303
367
|
|
|
304
368
|
export interface IIndexAddedConvention$instance extends IConvention {
|
|
369
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IIndexAddedConvention: never;
|
|
370
|
+
|
|
305
371
|
ProcessIndexAdded(indexBuilder: IConventionIndexBuilder, context: IConventionContext_1<IConventionIndexBuilder>): void;
|
|
306
372
|
}
|
|
307
373
|
|
|
@@ -311,6 +377,8 @@ export interface IIndexAddedConvention$instance extends IConvention$instance {}
|
|
|
311
377
|
export type IIndexAddedConvention = IIndexAddedConvention$instance;
|
|
312
378
|
|
|
313
379
|
export interface IIndexAnnotationChangedConvention$instance extends IConvention {
|
|
380
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IIndexAnnotationChangedConvention: never;
|
|
381
|
+
|
|
314
382
|
ProcessIndexAnnotationChanged(indexBuilder: IConventionIndexBuilder, name: string, annotation: IConventionAnnotation, oldAnnotation: IConventionAnnotation, context: IConventionContext_1<IConventionAnnotation>): void;
|
|
315
383
|
}
|
|
316
384
|
|
|
@@ -320,6 +388,8 @@ export interface IIndexAnnotationChangedConvention$instance extends IConvention$
|
|
|
320
388
|
export type IIndexAnnotationChangedConvention = IIndexAnnotationChangedConvention$instance;
|
|
321
389
|
|
|
322
390
|
export interface IIndexRemovedConvention$instance extends IConvention {
|
|
391
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IIndexRemovedConvention: never;
|
|
392
|
+
|
|
323
393
|
ProcessIndexRemoved(entityTypeBuilder: IConventionEntityTypeBuilder, index: IConventionIndex, context: IConventionContext_1<IConventionIndex>): void;
|
|
324
394
|
}
|
|
325
395
|
|
|
@@ -329,6 +399,8 @@ export interface IIndexRemovedConvention$instance extends IConvention$instance {
|
|
|
329
399
|
export type IIndexRemovedConvention = IIndexRemovedConvention$instance;
|
|
330
400
|
|
|
331
401
|
export interface IIndexSortOrderChangedConvention$instance extends IConvention {
|
|
402
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IIndexSortOrderChangedConvention: never;
|
|
403
|
+
|
|
332
404
|
ProcessIndexSortOrderChanged(indexBuilder: IConventionIndexBuilder, context: IConventionContext_1<IReadOnlyList<System_Internal.Boolean>>): void;
|
|
333
405
|
}
|
|
334
406
|
|
|
@@ -338,6 +410,8 @@ export interface IIndexSortOrderChangedConvention$instance extends IConvention$i
|
|
|
338
410
|
export type IIndexSortOrderChangedConvention = IIndexSortOrderChangedConvention$instance;
|
|
339
411
|
|
|
340
412
|
export interface IIndexUniquenessChangedConvention$instance extends IConvention {
|
|
413
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IIndexUniquenessChangedConvention: never;
|
|
414
|
+
|
|
341
415
|
ProcessIndexUniquenessChanged(indexBuilder: IConventionIndexBuilder, context: IConventionContext_1<Nullable<System_Internal.Boolean>>): void;
|
|
342
416
|
}
|
|
343
417
|
|
|
@@ -347,6 +421,8 @@ export interface IIndexUniquenessChangedConvention$instance extends IConvention$
|
|
|
347
421
|
export type IIndexUniquenessChangedConvention = IIndexUniquenessChangedConvention$instance;
|
|
348
422
|
|
|
349
423
|
export interface IKeyAddedConvention$instance extends IConvention {
|
|
424
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IKeyAddedConvention: never;
|
|
425
|
+
|
|
350
426
|
ProcessKeyAdded(keyBuilder: IConventionKeyBuilder, context: IConventionContext_1<IConventionKeyBuilder>): void;
|
|
351
427
|
}
|
|
352
428
|
|
|
@@ -356,6 +432,8 @@ export interface IKeyAddedConvention$instance extends IConvention$instance {}
|
|
|
356
432
|
export type IKeyAddedConvention = IKeyAddedConvention$instance;
|
|
357
433
|
|
|
358
434
|
export interface IKeyAnnotationChangedConvention$instance extends IConvention {
|
|
435
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IKeyAnnotationChangedConvention: never;
|
|
436
|
+
|
|
359
437
|
ProcessKeyAnnotationChanged(keyBuilder: IConventionKeyBuilder, name: string, annotation: IConventionAnnotation, oldAnnotation: IConventionAnnotation, context: IConventionContext_1<IConventionAnnotation>): void;
|
|
360
438
|
}
|
|
361
439
|
|
|
@@ -365,6 +443,8 @@ export interface IKeyAnnotationChangedConvention$instance extends IConvention$in
|
|
|
365
443
|
export type IKeyAnnotationChangedConvention = IKeyAnnotationChangedConvention$instance;
|
|
366
444
|
|
|
367
445
|
export interface IKeyRemovedConvention$instance extends IConvention {
|
|
446
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IKeyRemovedConvention: never;
|
|
447
|
+
|
|
368
448
|
ProcessKeyRemoved(entityTypeBuilder: IConventionEntityTypeBuilder, key: IConventionKey, context: IConventionContext_1<IConventionKey>): void;
|
|
369
449
|
}
|
|
370
450
|
|
|
@@ -374,6 +454,8 @@ export interface IKeyRemovedConvention$instance extends IConvention$instance {}
|
|
|
374
454
|
export type IKeyRemovedConvention = IKeyRemovedConvention$instance;
|
|
375
455
|
|
|
376
456
|
export interface IModelAnnotationChangedConvention$instance extends IConvention {
|
|
457
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IModelAnnotationChangedConvention: never;
|
|
458
|
+
|
|
377
459
|
ProcessModelAnnotationChanged(modelBuilder: IConventionModelBuilder, name: string, annotation: IConventionAnnotation, oldAnnotation: IConventionAnnotation, context: IConventionContext_1<IConventionAnnotation>): void;
|
|
378
460
|
}
|
|
379
461
|
|
|
@@ -383,6 +465,8 @@ export interface IModelAnnotationChangedConvention$instance extends IConvention$
|
|
|
383
465
|
export type IModelAnnotationChangedConvention = IModelAnnotationChangedConvention$instance;
|
|
384
466
|
|
|
385
467
|
export interface IModelEmbeddedDiscriminatorNameConvention$instance extends IConvention {
|
|
468
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IModelEmbeddedDiscriminatorNameConvention: never;
|
|
469
|
+
|
|
386
470
|
ProcessEmbeddedDiscriminatorName(modelBuilder: IConventionModelBuilder, newName: string, oldName: string, context: IConventionContext_1<System_Internal.String>): void;
|
|
387
471
|
}
|
|
388
472
|
|
|
@@ -392,6 +476,8 @@ export interface IModelEmbeddedDiscriminatorNameConvention$instance extends ICon
|
|
|
392
476
|
export type IModelEmbeddedDiscriminatorNameConvention = IModelEmbeddedDiscriminatorNameConvention$instance;
|
|
393
477
|
|
|
394
478
|
export interface IModelFinalizedConvention$instance extends IConvention {
|
|
479
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IModelFinalizedConvention: never;
|
|
480
|
+
|
|
395
481
|
ProcessModelFinalized(model: IModel): IModel;
|
|
396
482
|
}
|
|
397
483
|
|
|
@@ -401,6 +487,8 @@ export interface IModelFinalizedConvention$instance extends IConvention$instance
|
|
|
401
487
|
export type IModelFinalizedConvention = IModelFinalizedConvention$instance;
|
|
402
488
|
|
|
403
489
|
export interface IModelFinalizingConvention$instance extends IConvention {
|
|
490
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IModelFinalizingConvention: never;
|
|
491
|
+
|
|
404
492
|
ProcessModelFinalizing(modelBuilder: IConventionModelBuilder, context: IConventionContext_1<IConventionModelBuilder>): void;
|
|
405
493
|
}
|
|
406
494
|
|
|
@@ -410,6 +498,8 @@ export interface IModelFinalizingConvention$instance extends IConvention$instanc
|
|
|
410
498
|
export type IModelFinalizingConvention = IModelFinalizingConvention$instance;
|
|
411
499
|
|
|
412
500
|
export interface IModelInitializedConvention$instance extends IConvention {
|
|
501
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IModelInitializedConvention: never;
|
|
502
|
+
|
|
413
503
|
ProcessModelInitialized(modelBuilder: IConventionModelBuilder, context: IConventionContext_1<IConventionModelBuilder>): void;
|
|
414
504
|
}
|
|
415
505
|
|
|
@@ -419,6 +509,8 @@ export interface IModelInitializedConvention$instance extends IConvention$instan
|
|
|
419
509
|
export type IModelInitializedConvention = IModelInitializedConvention$instance;
|
|
420
510
|
|
|
421
511
|
export interface INavigationAddedConvention$instance extends IConvention {
|
|
512
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_INavigationAddedConvention: never;
|
|
513
|
+
|
|
422
514
|
ProcessNavigationAdded(navigationBuilder: IConventionNavigationBuilder, context: IConventionContext_1<IConventionNavigationBuilder>): void;
|
|
423
515
|
}
|
|
424
516
|
|
|
@@ -428,6 +520,8 @@ export interface INavigationAddedConvention$instance extends IConvention$instanc
|
|
|
428
520
|
export type INavigationAddedConvention = INavigationAddedConvention$instance;
|
|
429
521
|
|
|
430
522
|
export interface INavigationAnnotationChangedConvention$instance extends IConvention {
|
|
523
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_INavigationAnnotationChangedConvention: never;
|
|
524
|
+
|
|
431
525
|
ProcessNavigationAnnotationChanged(relationshipBuilder: IConventionForeignKeyBuilder, navigation: IConventionNavigation, name: string, annotation: IConventionAnnotation, oldAnnotation: IConventionAnnotation, context: IConventionContext_1<IConventionAnnotation>): void;
|
|
432
526
|
}
|
|
433
527
|
|
|
@@ -437,6 +531,8 @@ export interface INavigationAnnotationChangedConvention$instance extends IConven
|
|
|
437
531
|
export type INavigationAnnotationChangedConvention = INavigationAnnotationChangedConvention$instance;
|
|
438
532
|
|
|
439
533
|
export interface INavigationRemovedConvention$instance extends IConvention {
|
|
534
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_INavigationRemovedConvention: never;
|
|
535
|
+
|
|
440
536
|
ProcessNavigationRemoved(sourceEntityTypeBuilder: IConventionEntityTypeBuilder, targetEntityTypeBuilder: IConventionEntityTypeBuilder, navigationName: string, memberInfo: MemberInfo, context: IConventionContext_1<System_Internal.String>): void;
|
|
441
537
|
}
|
|
442
538
|
|
|
@@ -446,6 +542,8 @@ export interface INavigationRemovedConvention$instance extends IConvention$insta
|
|
|
446
542
|
export type INavigationRemovedConvention = INavigationRemovedConvention$instance;
|
|
447
543
|
|
|
448
544
|
export interface IPropertyAddedConvention$instance extends IConvention {
|
|
545
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IPropertyAddedConvention: never;
|
|
546
|
+
|
|
449
547
|
ProcessPropertyAdded(propertyBuilder: IConventionPropertyBuilder, context: IConventionContext_1<IConventionPropertyBuilder>): void;
|
|
450
548
|
}
|
|
451
549
|
|
|
@@ -455,6 +553,8 @@ export interface IPropertyAddedConvention$instance extends IConvention$instance
|
|
|
455
553
|
export type IPropertyAddedConvention = IPropertyAddedConvention$instance;
|
|
456
554
|
|
|
457
555
|
export interface IPropertyAnnotationChangedConvention$instance extends IConvention {
|
|
556
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IPropertyAnnotationChangedConvention: never;
|
|
557
|
+
|
|
458
558
|
ProcessPropertyAnnotationChanged(propertyBuilder: IConventionPropertyBuilder, name: string, annotation: IConventionAnnotation, oldAnnotation: IConventionAnnotation, context: IConventionContext_1<IConventionAnnotation>): void;
|
|
459
559
|
}
|
|
460
560
|
|
|
@@ -464,6 +564,8 @@ export interface IPropertyAnnotationChangedConvention$instance extends IConventi
|
|
|
464
564
|
export type IPropertyAnnotationChangedConvention = IPropertyAnnotationChangedConvention$instance;
|
|
465
565
|
|
|
466
566
|
export interface IPropertyElementTypeChangedConvention$instance extends IConvention {
|
|
567
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IPropertyElementTypeChangedConvention: never;
|
|
568
|
+
|
|
467
569
|
ProcessPropertyElementTypeChanged(propertyBuilder: IConventionPropertyBuilder, newElementType: IElementType, oldElementType: IElementType, context: IConventionContext_1<IElementType>): void;
|
|
468
570
|
}
|
|
469
571
|
|
|
@@ -473,6 +575,8 @@ export interface IPropertyElementTypeChangedConvention$instance extends IConvent
|
|
|
473
575
|
export type IPropertyElementTypeChangedConvention = IPropertyElementTypeChangedConvention$instance;
|
|
474
576
|
|
|
475
577
|
export interface IPropertyFieldChangedConvention$instance extends IConvention {
|
|
578
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IPropertyFieldChangedConvention: never;
|
|
579
|
+
|
|
476
580
|
ProcessPropertyFieldChanged(propertyBuilder: IConventionPropertyBuilder, newFieldInfo: FieldInfo, oldFieldInfo: FieldInfo, context: IConventionContext_1<FieldInfo>): void;
|
|
477
581
|
}
|
|
478
582
|
|
|
@@ -482,6 +586,8 @@ export interface IPropertyFieldChangedConvention$instance extends IConvention$in
|
|
|
482
586
|
export type IPropertyFieldChangedConvention = IPropertyFieldChangedConvention$instance;
|
|
483
587
|
|
|
484
588
|
export interface IPropertyNullabilityChangedConvention$instance extends IConvention {
|
|
589
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IPropertyNullabilityChangedConvention: never;
|
|
590
|
+
|
|
485
591
|
ProcessPropertyNullabilityChanged(propertyBuilder: IConventionPropertyBuilder, context: IConventionContext_1<Nullable<System_Internal.Boolean>>): void;
|
|
486
592
|
}
|
|
487
593
|
|
|
@@ -491,6 +597,8 @@ export interface IPropertyNullabilityChangedConvention$instance extends IConvent
|
|
|
491
597
|
export type IPropertyNullabilityChangedConvention = IPropertyNullabilityChangedConvention$instance;
|
|
492
598
|
|
|
493
599
|
export interface IPropertyRemovedConvention$instance extends IConvention {
|
|
600
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IPropertyRemovedConvention: never;
|
|
601
|
+
|
|
494
602
|
ProcessPropertyRemoved(typeBaseBuilder: IConventionTypeBaseBuilder, property: IConventionProperty, context: IConventionContext_1<IConventionProperty>): void;
|
|
495
603
|
}
|
|
496
604
|
|
|
@@ -500,6 +608,8 @@ export interface IPropertyRemovedConvention$instance extends IConvention$instanc
|
|
|
500
608
|
export type IPropertyRemovedConvention = IPropertyRemovedConvention$instance;
|
|
501
609
|
|
|
502
610
|
export interface ISkipNavigationAddedConvention$instance extends IConvention {
|
|
611
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_ISkipNavigationAddedConvention: never;
|
|
612
|
+
|
|
503
613
|
ProcessSkipNavigationAdded(skipNavigationBuilder: IConventionSkipNavigationBuilder, context: IConventionContext_1<IConventionSkipNavigationBuilder>): void;
|
|
504
614
|
}
|
|
505
615
|
|
|
@@ -509,6 +619,8 @@ export interface ISkipNavigationAddedConvention$instance extends IConvention$ins
|
|
|
509
619
|
export type ISkipNavigationAddedConvention = ISkipNavigationAddedConvention$instance;
|
|
510
620
|
|
|
511
621
|
export interface ISkipNavigationAnnotationChangedConvention$instance extends IConvention {
|
|
622
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_ISkipNavigationAnnotationChangedConvention: never;
|
|
623
|
+
|
|
512
624
|
ProcessSkipNavigationAnnotationChanged(skipNavigationBuilder: IConventionSkipNavigationBuilder, name: string, annotation: IConventionAnnotation, oldAnnotation: IConventionAnnotation, context: IConventionContext_1<IConventionAnnotation>): void;
|
|
513
625
|
}
|
|
514
626
|
|
|
@@ -518,6 +630,8 @@ export interface ISkipNavigationAnnotationChangedConvention$instance extends ICo
|
|
|
518
630
|
export type ISkipNavigationAnnotationChangedConvention = ISkipNavigationAnnotationChangedConvention$instance;
|
|
519
631
|
|
|
520
632
|
export interface ISkipNavigationForeignKeyChangedConvention$instance extends IConvention {
|
|
633
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_ISkipNavigationForeignKeyChangedConvention: never;
|
|
634
|
+
|
|
521
635
|
ProcessSkipNavigationForeignKeyChanged(skipNavigationBuilder: IConventionSkipNavigationBuilder, foreignKey: IConventionForeignKey, oldForeignKey: IConventionForeignKey, context: IConventionContext_1<IConventionForeignKey>): void;
|
|
522
636
|
}
|
|
523
637
|
|
|
@@ -527,6 +641,8 @@ export interface ISkipNavigationForeignKeyChangedConvention$instance extends ICo
|
|
|
527
641
|
export type ISkipNavigationForeignKeyChangedConvention = ISkipNavigationForeignKeyChangedConvention$instance;
|
|
528
642
|
|
|
529
643
|
export interface ISkipNavigationInverseChangedConvention$instance extends IConvention {
|
|
644
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_ISkipNavigationInverseChangedConvention: never;
|
|
645
|
+
|
|
530
646
|
ProcessSkipNavigationInverseChanged(skipNavigationBuilder: IConventionSkipNavigationBuilder, inverse: IConventionSkipNavigation, oldInverse: IConventionSkipNavigation, context: IConventionContext_1<IConventionSkipNavigation>): void;
|
|
531
647
|
}
|
|
532
648
|
|
|
@@ -536,6 +652,8 @@ export interface ISkipNavigationInverseChangedConvention$instance extends IConve
|
|
|
536
652
|
export type ISkipNavigationInverseChangedConvention = ISkipNavigationInverseChangedConvention$instance;
|
|
537
653
|
|
|
538
654
|
export interface ISkipNavigationRemovedConvention$instance extends IConvention {
|
|
655
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_ISkipNavigationRemovedConvention: never;
|
|
656
|
+
|
|
539
657
|
ProcessSkipNavigationRemoved(entityTypeBuilder: IConventionEntityTypeBuilder, navigation: IConventionSkipNavigation, context: IConventionContext_1<IConventionSkipNavigation>): void;
|
|
540
658
|
}
|
|
541
659
|
|
|
@@ -545,6 +663,8 @@ export interface ISkipNavigationRemovedConvention$instance extends IConvention$i
|
|
|
545
663
|
export type ISkipNavigationRemovedConvention = ISkipNavigationRemovedConvention$instance;
|
|
546
664
|
|
|
547
665
|
export interface ITriggerAddedConvention$instance extends IConvention {
|
|
666
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_ITriggerAddedConvention: never;
|
|
667
|
+
|
|
548
668
|
ProcessTriggerAdded(triggerBuilder: IConventionTriggerBuilder, context: IConventionContext_1<IConventionTriggerBuilder>): void;
|
|
549
669
|
}
|
|
550
670
|
|
|
@@ -554,6 +674,8 @@ export interface ITriggerAddedConvention$instance extends IConvention$instance {
|
|
|
554
674
|
export type ITriggerAddedConvention = ITriggerAddedConvention$instance;
|
|
555
675
|
|
|
556
676
|
export interface ITriggerRemovedConvention$instance extends IConvention {
|
|
677
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_ITriggerRemovedConvention: never;
|
|
678
|
+
|
|
557
679
|
ProcessTriggerRemoved(entityTypeBuilder: IConventionEntityTypeBuilder, trigger: IConventionTrigger, context: IConventionContext_1<IConventionTrigger>): void;
|
|
558
680
|
}
|
|
559
681
|
|
|
@@ -563,6 +685,8 @@ export interface ITriggerRemovedConvention$instance extends IConvention$instance
|
|
|
563
685
|
export type ITriggerRemovedConvention = ITriggerRemovedConvention$instance;
|
|
564
686
|
|
|
565
687
|
export interface ITypeIgnoredConvention$instance extends IConvention {
|
|
688
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_ITypeIgnoredConvention: never;
|
|
689
|
+
|
|
566
690
|
ProcessTypeIgnored(modelBuilder: IConventionModelBuilder, name: string, type: Type, context: IConventionContext_1<System_Internal.String>): void;
|
|
567
691
|
}
|
|
568
692
|
|
|
@@ -571,18 +695,18 @@ export interface ITypeIgnoredConvention$instance extends IConvention$instance {}
|
|
|
571
695
|
|
|
572
696
|
export type ITypeIgnoredConvention = ITypeIgnoredConvention$instance;
|
|
573
697
|
|
|
574
|
-
export
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
698
|
+
export interface BackingFieldAttributeConvention$instance extends PropertyAttributeConventionBase_1$instance<BackingFieldAttribute>, IConvention {
|
|
699
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IComplexPropertyAddedConvention: never;
|
|
700
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IComplexPropertyFieldChangedConvention: never;
|
|
701
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
702
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IPropertyAddedConvention: never;
|
|
703
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IPropertyFieldChangedConvention: never;
|
|
581
704
|
|
|
582
|
-
export interface BackingFieldAttributeConvention$instance extends BackingFieldAttributeConvention$protected, PropertyAttributeConventionBase_1$instance<BackingFieldAttribute>, IConvention {
|
|
583
705
|
ProcessComplexPropertyAdded(propertyBuilder: IConventionComplexPropertyBuilder, context: IConventionContext_1<IConventionComplexPropertyBuilder>): void;
|
|
584
706
|
ProcessComplexPropertyFieldChanged(propertyBuilder: IConventionComplexPropertyBuilder, newFieldInfo: FieldInfo, oldFieldInfo: FieldInfo, context: IConventionContext_1<FieldInfo>): void;
|
|
707
|
+
ProcessPropertyAdded(propertyBuilder: IConventionPropertyBuilder, attribute: BackingFieldAttribute, clrMember: MemberInfo, context: IConventionContext): void;
|
|
585
708
|
ProcessPropertyAdded(propertyBuilder: IConventionPropertyBuilder, context: IConventionContext_1<IConventionPropertyBuilder>): void;
|
|
709
|
+
ProcessPropertyAdded(propertyBuilder: IConventionComplexPropertyBuilder, attribute: BackingFieldAttribute, clrMember: MemberInfo, context: IConventionContext): void;
|
|
586
710
|
ProcessPropertyFieldChanged(propertyBuilder: IConventionPropertyBuilder, newFieldInfo: FieldInfo, oldFieldInfo: FieldInfo, context: IConventionContext_1<FieldInfo>): void;
|
|
587
711
|
}
|
|
588
712
|
|
|
@@ -602,12 +726,15 @@ export interface __BackingFieldAttributeConvention$views {
|
|
|
602
726
|
export type BackingFieldAttributeConvention = BackingFieldAttributeConvention$instance & __BackingFieldAttributeConvention$views;
|
|
603
727
|
|
|
604
728
|
|
|
605
|
-
export
|
|
606
|
-
|
|
607
|
-
|
|
729
|
+
export interface BackingFieldConvention$instance extends IConvention {
|
|
730
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IComplexPropertyAddedConvention: never;
|
|
731
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
732
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IModelFinalizingConvention: never;
|
|
733
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_INavigationAddedConvention: never;
|
|
734
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IPropertyAddedConvention: never;
|
|
735
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_ISkipNavigationAddedConvention: never;
|
|
608
736
|
|
|
609
|
-
|
|
610
|
-
export interface BackingFieldConvention$instance extends BackingFieldConvention$protected, IConvention {
|
|
737
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
611
738
|
ProcessComplexPropertyAdded(propertyBuilder: IConventionComplexPropertyBuilder, context: IConventionContext_1<IConventionComplexPropertyBuilder>): void;
|
|
612
739
|
ProcessModelFinalizing(modelBuilder: IConventionModelBuilder, context: IConventionContext_1<IConventionModelBuilder>): void;
|
|
613
740
|
ProcessNavigationAdded(navigationBuilder: IConventionNavigationBuilder, context: IConventionContext_1<IConventionNavigationBuilder>): void;
|
|
@@ -634,12 +761,12 @@ export interface BackingFieldConvention$instance extends IComplexPropertyAddedCo
|
|
|
634
761
|
export type BackingFieldConvention = BackingFieldConvention$instance & __BackingFieldConvention$views;
|
|
635
762
|
|
|
636
763
|
|
|
637
|
-
export
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
764
|
+
export interface BaseTypeDiscoveryConvention$instance extends IConvention {
|
|
765
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
766
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IEntityTypeAddedConvention: never;
|
|
767
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IForeignKeyRemovedConvention: never;
|
|
641
768
|
|
|
642
|
-
|
|
769
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
643
770
|
ProcessEntityTypeAdded(entityTypeBuilder: IConventionEntityTypeBuilder, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
644
771
|
ProcessForeignKeyRemoved(entityTypeBuilder: IConventionEntityTypeBuilder, foreignKey: IConventionForeignKey, context: IConventionContext_1<IConventionForeignKey>): void;
|
|
645
772
|
}
|
|
@@ -660,13 +787,13 @@ export interface BaseTypeDiscoveryConvention$instance extends IEntityTypeAddedCo
|
|
|
660
787
|
export type BaseTypeDiscoveryConvention = BaseTypeDiscoveryConvention$instance & __BaseTypeDiscoveryConvention$views;
|
|
661
788
|
|
|
662
789
|
|
|
663
|
-
export
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
790
|
+
export interface CascadeDeleteConvention$instance extends IConvention {
|
|
791
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
792
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IForeignKeyAddedConvention: never;
|
|
793
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IForeignKeyRequirednessChangedConvention: never;
|
|
668
794
|
|
|
669
|
-
|
|
795
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
796
|
+
GetTargetDeleteBehavior(foreignKey: IConventionForeignKey): DeleteBehavior;
|
|
670
797
|
ProcessForeignKeyAdded(relationshipBuilder: IConventionForeignKeyBuilder, context: IConventionContext_1<IConventionForeignKeyBuilder>): void;
|
|
671
798
|
ProcessForeignKeyRequirednessChanged(relationshipBuilder: IConventionForeignKeyBuilder, context: IConventionContext_1<Nullable<System_Internal.Boolean>>): void;
|
|
672
799
|
}
|
|
@@ -687,12 +814,11 @@ export interface CascadeDeleteConvention$instance extends IForeignKeyAddedConven
|
|
|
687
814
|
export type CascadeDeleteConvention = CascadeDeleteConvention$instance & __CascadeDeleteConvention$views;
|
|
688
815
|
|
|
689
816
|
|
|
690
|
-
export
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
817
|
+
export interface ChangeTrackingStrategyConvention$instance extends IConvention {
|
|
818
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
819
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IModelFinalizingConvention: never;
|
|
694
820
|
|
|
695
|
-
|
|
821
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
696
822
|
ProcessModelFinalizing(modelBuilder: IConventionModelBuilder, context: IConventionContext_1<IConventionModelBuilder>): void;
|
|
697
823
|
}
|
|
698
824
|
|
|
@@ -711,13 +837,13 @@ export interface ChangeTrackingStrategyConvention$instance extends IModelFinaliz
|
|
|
711
837
|
export type ChangeTrackingStrategyConvention = ChangeTrackingStrategyConvention$instance & __ChangeTrackingStrategyConvention$views;
|
|
712
838
|
|
|
713
839
|
|
|
714
|
-
export
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
840
|
+
export interface CheckConstraintConvention$instance extends IConvention {
|
|
841
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
842
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IEntityTypeAddedConvention: never;
|
|
843
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IEntityTypeBaseTypeChangedConvention: never;
|
|
719
844
|
|
|
720
|
-
|
|
845
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
846
|
+
readonly RelationalDependencies: RelationalConventionSetBuilderDependencies;
|
|
721
847
|
ProcessEntityTypeAdded(entityTypeBuilder: IConventionEntityTypeBuilder, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
722
848
|
ProcessEntityTypeBaseTypeChanged(entityTypeBuilder: IConventionEntityTypeBuilder, newBaseType: IConventionEntityType, oldBaseType: IConventionEntityType, context: IConventionContext_1<IConventionEntityType>): void;
|
|
723
849
|
}
|
|
@@ -738,16 +864,25 @@ export interface CheckConstraintConvention$instance extends IEntityTypeAddedConv
|
|
|
738
864
|
export type CheckConstraintConvention = CheckConstraintConvention$instance & __CheckConstraintConvention$views;
|
|
739
865
|
|
|
740
866
|
|
|
741
|
-
export
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
867
|
+
export interface ComplexPropertyDiscoveryConvention$instance extends IConvention {
|
|
868
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IComplexPropertyAddedConvention: never;
|
|
869
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
870
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IEntityTypeAddedConvention: never;
|
|
871
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IEntityTypeBaseTypeChangedConvention: never;
|
|
872
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IEntityTypeMemberIgnoredConvention: never;
|
|
873
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IModelFinalizingConvention: never;
|
|
874
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_INavigationAddedConvention: never;
|
|
875
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_INavigationRemovedConvention: never;
|
|
876
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IPropertyAddedConvention: never;
|
|
877
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IPropertyRemovedConvention: never;
|
|
878
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_ISkipNavigationAddedConvention: never;
|
|
879
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_ISkipNavigationRemovedConvention: never;
|
|
880
|
+
|
|
881
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
882
|
+
readonly UseAttributes: boolean;
|
|
883
|
+
DiscoverComplexProperties(structuralTypeBuilder: IConventionTypeBaseBuilder, context: IConventionContext): void;
|
|
884
|
+
GetMembers(structuralType: IConventionTypeBase): IEnumerable<MemberInfo>;
|
|
885
|
+
IsCandidateComplexProperty(memberInfo: MemberInfo, structuralType: IConventionTypeBase, targetClrType: Type, isCollection: boolean): boolean;
|
|
751
886
|
ProcessComplexPropertyAdded(propertyBuilder: IConventionComplexPropertyBuilder, context: IConventionContext_1<IConventionComplexPropertyBuilder>): void;
|
|
752
887
|
ProcessEntityTypeAdded(entityTypeBuilder: IConventionEntityTypeBuilder, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
753
888
|
ProcessEntityTypeBaseTypeChanged(entityTypeBuilder: IConventionEntityTypeBuilder, newBaseType: IConventionEntityType, oldBaseType: IConventionEntityType, context: IConventionContext_1<IConventionEntityType>): void;
|
|
@@ -786,13 +921,11 @@ export interface ComplexPropertyDiscoveryConvention$instance extends IComplexPro
|
|
|
786
921
|
export type ComplexPropertyDiscoveryConvention = ComplexPropertyDiscoveryConvention$instance & __ComplexPropertyDiscoveryConvention$views;
|
|
787
922
|
|
|
788
923
|
|
|
789
|
-
export
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
924
|
+
export interface ComplexTypeAttributeConvention$instance extends TypeAttributeConventionBase_1$instance<ComplexTypeAttribute>, IConvention {
|
|
925
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IComplexPropertyAddedConvention: never;
|
|
926
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
927
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IEntityTypeAddedConvention: never;
|
|
794
928
|
|
|
795
|
-
export interface ComplexTypeAttributeConvention$instance extends ComplexTypeAttributeConvention$protected, TypeAttributeConventionBase_1$instance<ComplexTypeAttribute>, IConvention {
|
|
796
929
|
ProcessComplexPropertyAdded(propertyBuilder: IConventionComplexPropertyBuilder, context: IConventionContext_1<IConventionComplexPropertyBuilder>): void;
|
|
797
930
|
ProcessComplexPropertyAdded(propertyBuilder: IConventionComplexPropertyBuilder, context: IConventionContext_1<IConventionComplexPropertyBuilder>): void;
|
|
798
931
|
ProcessEntityTypeAdded(entityTypeBuilder: IConventionEntityTypeBuilder, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
@@ -812,15 +945,13 @@ export interface __ComplexTypeAttributeConvention$views {
|
|
|
812
945
|
export type ComplexTypeAttributeConvention = ComplexTypeAttributeConvention$instance & __ComplexTypeAttributeConvention$views;
|
|
813
946
|
|
|
814
947
|
|
|
815
|
-
export
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
}
|
|
820
|
-
|
|
948
|
+
export interface ConcurrencyCheckAttributeConvention$instance extends PropertyAttributeConventionBase_1$instance<ConcurrencyCheckAttribute>, IConvention {
|
|
949
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
950
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IPropertyAddedConvention: never;
|
|
951
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IPropertyFieldChangedConvention: never;
|
|
821
952
|
|
|
822
|
-
export interface ConcurrencyCheckAttributeConvention$instance extends ConcurrencyCheckAttributeConvention$protected, PropertyAttributeConventionBase_1$instance<ConcurrencyCheckAttribute>, IConvention {
|
|
823
953
|
ProcessPropertyAdded(propertyBuilder: IConventionPropertyBuilder, context: IConventionContext_1<IConventionPropertyBuilder>): void;
|
|
954
|
+
ProcessPropertyAdded(propertyBuilder: IConventionComplexPropertyBuilder, attribute: ConcurrencyCheckAttribute, clrMember: MemberInfo, context: IConventionContext): void;
|
|
824
955
|
ProcessPropertyFieldChanged(propertyBuilder: IConventionPropertyBuilder, newFieldInfo: FieldInfo, oldFieldInfo: FieldInfo, context: IConventionContext_1<FieldInfo>): void;
|
|
825
956
|
}
|
|
826
957
|
|
|
@@ -838,12 +969,11 @@ export interface __ConcurrencyCheckAttributeConvention$views {
|
|
|
838
969
|
export type ConcurrencyCheckAttributeConvention = ConcurrencyCheckAttributeConvention$instance & __ConcurrencyCheckAttributeConvention$views;
|
|
839
970
|
|
|
840
971
|
|
|
841
|
-
export
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
972
|
+
export interface ConstructorBindingConvention$instance extends IConvention {
|
|
973
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
974
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IModelFinalizingConvention: never;
|
|
845
975
|
|
|
846
|
-
|
|
976
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
847
977
|
ProcessModelFinalizing(modelBuilder: IConventionModelBuilder, context: IConventionContext_1<IConventionModelBuilder>): void;
|
|
848
978
|
}
|
|
849
979
|
|
|
@@ -937,15 +1067,13 @@ export const ConventionSet: {
|
|
|
937
1067
|
|
|
938
1068
|
export type ConventionSet = ConventionSet$instance;
|
|
939
1069
|
|
|
940
|
-
export
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
}
|
|
945
|
-
|
|
1070
|
+
export interface DatabaseGeneratedAttributeConvention$instance extends PropertyAttributeConventionBase_1$instance<DatabaseGeneratedAttribute>, IConvention {
|
|
1071
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
1072
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IPropertyAddedConvention: never;
|
|
1073
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IPropertyFieldChangedConvention: never;
|
|
946
1074
|
|
|
947
|
-
export interface DatabaseGeneratedAttributeConvention$instance extends DatabaseGeneratedAttributeConvention$protected, PropertyAttributeConventionBase_1$instance<DatabaseGeneratedAttribute>, IConvention {
|
|
948
1075
|
ProcessPropertyAdded(propertyBuilder: IConventionPropertyBuilder, context: IConventionContext_1<IConventionPropertyBuilder>): void;
|
|
1076
|
+
ProcessPropertyAdded(propertyBuilder: IConventionComplexPropertyBuilder, attribute: DatabaseGeneratedAttribute, clrMember: MemberInfo, context: IConventionContext): void;
|
|
949
1077
|
ProcessPropertyFieldChanged(propertyBuilder: IConventionPropertyBuilder, newFieldInfo: FieldInfo, oldFieldInfo: FieldInfo, context: IConventionContext_1<FieldInfo>): void;
|
|
950
1078
|
}
|
|
951
1079
|
|
|
@@ -963,12 +1091,11 @@ export interface __DatabaseGeneratedAttributeConvention$views {
|
|
|
963
1091
|
export type DatabaseGeneratedAttributeConvention = DatabaseGeneratedAttributeConvention$instance & __DatabaseGeneratedAttributeConvention$views;
|
|
964
1092
|
|
|
965
1093
|
|
|
966
|
-
export
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
1094
|
+
export interface DbSetFindingConvention$instance extends IConvention {
|
|
1095
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
1096
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IModelInitializedConvention: never;
|
|
970
1097
|
|
|
971
|
-
|
|
1098
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
972
1099
|
ProcessModelInitialized(modelBuilder: IConventionModelBuilder, context: IConventionContext_1<IConventionModelBuilder>): void;
|
|
973
1100
|
}
|
|
974
1101
|
|
|
@@ -987,20 +1114,22 @@ export interface DbSetFindingConvention$instance extends IModelInitializedConven
|
|
|
987
1114
|
export type DbSetFindingConvention = DbSetFindingConvention$instance & __DbSetFindingConvention$views;
|
|
988
1115
|
|
|
989
1116
|
|
|
990
|
-
export
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
|
|
1117
|
+
export interface DeleteBehaviorAttributeConvention$instance extends PropertyAttributeConventionBase_1$instance<DeleteBehaviorAttribute>, IConvention {
|
|
1118
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IComplexPropertyAddedConvention: never;
|
|
1119
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
1120
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IForeignKeyPrincipalEndChangedConvention: never;
|
|
1121
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IModelFinalizingConvention: never;
|
|
1122
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_INavigationAddedConvention: never;
|
|
1123
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IPropertyAddedConvention: never;
|
|
1124
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IPropertyFieldChangedConvention: never;
|
|
996
1125
|
|
|
997
|
-
|
|
998
|
-
export interface DeleteBehaviorAttributeConvention$instance extends DeleteBehaviorAttributeConvention$protected, PropertyAttributeConventionBase_1$instance<DeleteBehaviorAttribute>, IConvention {
|
|
999
1126
|
ProcessComplexPropertyAdded(propertyBuilder: IConventionComplexPropertyBuilder, context: IConventionContext_1<IConventionComplexPropertyBuilder>): void;
|
|
1000
1127
|
ProcessForeignKeyPrincipalEndChanged(relationshipBuilder: IConventionForeignKeyBuilder, context: IConventionContext_1<IConventionForeignKeyBuilder>): void;
|
|
1001
1128
|
ProcessModelFinalizing(modelBuilder: IConventionModelBuilder, context: IConventionContext_1<IConventionModelBuilder>): void;
|
|
1002
1129
|
ProcessNavigationAdded(navigationBuilder: IConventionNavigationBuilder, context: IConventionContext_1<IConventionNavigationBuilder>): void;
|
|
1130
|
+
ProcessPropertyAdded(propertyBuilder: IConventionPropertyBuilder, attribute: DeleteBehaviorAttribute, clrMember: MemberInfo, context: IConventionContext): void;
|
|
1003
1131
|
ProcessPropertyAdded(propertyBuilder: IConventionPropertyBuilder, context: IConventionContext_1<IConventionPropertyBuilder>): void;
|
|
1132
|
+
ProcessPropertyAdded(propertyBuilder: IConventionComplexPropertyBuilder, attribute: DeleteBehaviorAttribute, clrMember: MemberInfo, context: IConventionContext): void;
|
|
1004
1133
|
ProcessPropertyFieldChanged(propertyBuilder: IConventionPropertyBuilder, newFieldInfo: FieldInfo, oldFieldInfo: FieldInfo, context: IConventionContext_1<FieldInfo>): void;
|
|
1005
1134
|
}
|
|
1006
1135
|
|
|
@@ -1024,17 +1153,18 @@ export interface DeleteBehaviorAttributeConvention$instance extends IForeignKeyP
|
|
|
1024
1153
|
export type DeleteBehaviorAttributeConvention = DeleteBehaviorAttributeConvention$instance & __DeleteBehaviorAttributeConvention$views;
|
|
1025
1154
|
|
|
1026
1155
|
|
|
1027
|
-
export
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1156
|
+
export interface DiscriminatorConvention$instance extends IConvention {
|
|
1157
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
1158
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IDiscriminatorPropertySetConvention: never;
|
|
1159
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IEntityTypeBaseTypeChangedConvention: never;
|
|
1160
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IEntityTypeRemovedConvention: never;
|
|
1033
1161
|
|
|
1034
|
-
|
|
1162
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
1035
1163
|
ProcessDiscriminatorPropertySet(structuralTypeBuilder: IConventionTypeBaseBuilder, name: string, context: IConventionContext_1<System_Internal.String>): void;
|
|
1036
1164
|
ProcessEntityTypeBaseTypeChanged(entityTypeBuilder: IConventionEntityTypeBuilder, newBaseType: IConventionEntityType, oldBaseType: IConventionEntityType, context: IConventionContext_1<IConventionEntityType>): void;
|
|
1037
1165
|
ProcessEntityTypeRemoved(modelBuilder: IConventionModelBuilder, entityType: IConventionEntityType, context: IConventionContext_1<IConventionEntityType>): void;
|
|
1166
|
+
SetDefaultDiscriminatorValue(complexType: IConventionComplexType, discriminatorBuilder: IConventionComplexTypeDiscriminatorBuilder): void;
|
|
1167
|
+
SetDefaultDiscriminatorValues(entityTypes: IEnumerable<IConventionEntityType>, discriminatorBuilder: IConventionDiscriminatorBuilder): void;
|
|
1038
1168
|
}
|
|
1039
1169
|
|
|
1040
1170
|
|
|
@@ -1054,13 +1184,12 @@ export interface DiscriminatorConvention$instance extends IDiscriminatorProperty
|
|
|
1054
1184
|
export type DiscriminatorConvention = DiscriminatorConvention$instance & __DiscriminatorConvention$views;
|
|
1055
1185
|
|
|
1056
1186
|
|
|
1057
|
-
export
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
}
|
|
1061
|
-
|
|
1187
|
+
export interface DiscriminatorLengthConvention$instance extends IConvention {
|
|
1188
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
1189
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IModelFinalizingConvention: never;
|
|
1062
1190
|
|
|
1063
|
-
|
|
1191
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
1192
|
+
readonly RelationalDependencies: RelationalConventionSetBuilderDependencies;
|
|
1064
1193
|
ProcessModelFinalizing(modelBuilder: IConventionModelBuilder, context: IConventionContext_1<IConventionModelBuilder>): void;
|
|
1065
1194
|
}
|
|
1066
1195
|
|
|
@@ -1079,12 +1208,11 @@ export interface DiscriminatorLengthConvention$instance extends IModelFinalizing
|
|
|
1079
1208
|
export type DiscriminatorLengthConvention = DiscriminatorLengthConvention$instance & __DiscriminatorLengthConvention$views;
|
|
1080
1209
|
|
|
1081
1210
|
|
|
1082
|
-
export
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1211
|
+
export interface ElementMappingConvention$instance extends IConvention {
|
|
1212
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
1213
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IModelFinalizingConvention: never;
|
|
1086
1214
|
|
|
1087
|
-
|
|
1215
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
1088
1216
|
ProcessModelFinalizing(modelBuilder: IConventionModelBuilder, context: IConventionContext_1<IConventionModelBuilder>): void;
|
|
1089
1217
|
}
|
|
1090
1218
|
|
|
@@ -1103,12 +1231,13 @@ export interface ElementMappingConvention$instance extends IModelFinalizingConve
|
|
|
1103
1231
|
export type ElementMappingConvention = ElementMappingConvention$instance & __ElementMappingConvention$views;
|
|
1104
1232
|
|
|
1105
1233
|
|
|
1106
|
-
export
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
1234
|
+
export interface ElementTypeChangedConvention$instance extends IConvention {
|
|
1235
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
1236
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IForeignKeyAddedConvention: never;
|
|
1237
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IForeignKeyPropertiesChangedConvention: never;
|
|
1238
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IPropertyElementTypeChangedConvention: never;
|
|
1110
1239
|
|
|
1111
|
-
|
|
1240
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
1112
1241
|
ProcessForeignKeyAdded(foreignKeyBuilder: IConventionForeignKeyBuilder, context: IConventionContext_1<IConventionForeignKeyBuilder>): void;
|
|
1113
1242
|
ProcessForeignKeyPropertiesChanged(relationshipBuilder: IConventionForeignKeyBuilder, oldDependentProperties: IReadOnlyList<IConventionProperty>, oldPrincipalKey: IConventionKey, context: IConventionContext_1<IReadOnlyList<IConventionProperty>>): void;
|
|
1114
1243
|
ProcessPropertyElementTypeChanged(propertyBuilder: IConventionPropertyBuilder, newElementType: IElementType, oldElementType: IElementType, context: IConventionContext_1<IElementType>): void;
|
|
@@ -1131,13 +1260,13 @@ export interface ElementTypeChangedConvention$instance extends IForeignKeyAddedC
|
|
|
1131
1260
|
export type ElementTypeChangedConvention = ElementTypeChangedConvention$instance & __ElementTypeChangedConvention$views;
|
|
1132
1261
|
|
|
1133
1262
|
|
|
1134
|
-
export
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
|
|
1263
|
+
export interface EntitySplittingConvention$instance extends IConvention {
|
|
1264
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
1265
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IEntityTypeAddedConvention: never;
|
|
1266
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IModelFinalizingConvention: never;
|
|
1138
1267
|
|
|
1139
|
-
|
|
1140
|
-
|
|
1268
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
1269
|
+
readonly RelationalDependencies: RelationalConventionSetBuilderDependencies;
|
|
1141
1270
|
ProcessEntityTypeAdded(entityTypeBuilder: IConventionEntityTypeBuilder, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
1142
1271
|
ProcessModelFinalizing(modelBuilder: IConventionModelBuilder, context: IConventionContext_1<IConventionModelBuilder>): void;
|
|
1143
1272
|
}
|
|
@@ -1158,16 +1287,13 @@ export interface EntitySplittingConvention$instance extends IEntityTypeAddedConv
|
|
|
1158
1287
|
export type EntitySplittingConvention = EntitySplittingConvention$instance & __EntitySplittingConvention$views;
|
|
1159
1288
|
|
|
1160
1289
|
|
|
1161
|
-
export
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
protected abstract ProcessEntityTypeAdded2(entityTypeBuilder: IConventionEntityTypeBuilder, attribute: unknown, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
1166
|
-
}
|
|
1167
|
-
|
|
1290
|
+
export interface EntityTypeConfigurationAttributeConvention$instance extends TypeAttributeConventionBase_1$instance<EntityTypeConfigurationAttribute>, IConvention {
|
|
1291
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IComplexPropertyAddedConvention: never;
|
|
1292
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
1293
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IEntityTypeAddedConvention: never;
|
|
1168
1294
|
|
|
1169
|
-
export interface EntityTypeConfigurationAttributeConvention$instance extends EntityTypeConfigurationAttributeConvention$protected, TypeAttributeConventionBase_1$instance<EntityTypeConfigurationAttribute>, IConvention {
|
|
1170
1295
|
ProcessComplexPropertyAdded(propertyBuilder: IConventionComplexPropertyBuilder, context: IConventionContext_1<IConventionComplexPropertyBuilder>): void;
|
|
1296
|
+
ProcessComplexTypeAdded(complexTypeBuilder: IConventionComplexTypeBuilder, attribute: EntityTypeConfigurationAttribute, context: IConventionContext): void;
|
|
1171
1297
|
ProcessEntityTypeAdded(entityTypeBuilder: IConventionEntityTypeBuilder, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
1172
1298
|
}
|
|
1173
1299
|
|
|
@@ -1185,13 +1311,12 @@ export interface __EntityTypeConfigurationAttributeConvention$views {
|
|
|
1185
1311
|
export type EntityTypeConfigurationAttributeConvention = EntityTypeConfigurationAttributeConvention$instance & __EntityTypeConfigurationAttributeConvention$views;
|
|
1186
1312
|
|
|
1187
1313
|
|
|
1188
|
-
export
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
}
|
|
1192
|
-
|
|
1314
|
+
export interface EntityTypeHierarchyMappingConvention$instance extends IConvention {
|
|
1315
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
1316
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IModelFinalizingConvention: never;
|
|
1193
1317
|
|
|
1194
|
-
|
|
1318
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
1319
|
+
readonly RelationalDependencies: RelationalConventionSetBuilderDependencies;
|
|
1195
1320
|
ProcessModelFinalizing(modelBuilder: IConventionModelBuilder, context: IConventionContext_1<IConventionModelBuilder>): void;
|
|
1196
1321
|
}
|
|
1197
1322
|
|
|
@@ -1210,12 +1335,17 @@ export interface EntityTypeHierarchyMappingConvention$instance extends IModelFin
|
|
|
1210
1335
|
export type EntityTypeHierarchyMappingConvention = EntityTypeHierarchyMappingConvention$instance & __EntityTypeHierarchyMappingConvention$views;
|
|
1211
1336
|
|
|
1212
1337
|
|
|
1213
|
-
export
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1338
|
+
export interface ForeignKeyAttributeConvention$instance extends IConvention {
|
|
1339
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IComplexPropertyAddedConvention: never;
|
|
1340
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
1341
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IEntityTypeAddedConvention: never;
|
|
1342
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IForeignKeyAddedConvention: never;
|
|
1343
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IModelFinalizingConvention: never;
|
|
1344
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_INavigationAddedConvention: never;
|
|
1345
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IPropertyAddedConvention: never;
|
|
1346
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_ISkipNavigationForeignKeyChangedConvention: never;
|
|
1217
1347
|
|
|
1218
|
-
|
|
1348
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
1219
1349
|
ProcessComplexPropertyAdded(propertyBuilder: IConventionComplexPropertyBuilder, context: IConventionContext_1<IConventionComplexPropertyBuilder>): void;
|
|
1220
1350
|
ProcessEntityTypeAdded(entityTypeBuilder: IConventionEntityTypeBuilder, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
1221
1351
|
ProcessForeignKeyAdded(relationshipBuilder: IConventionForeignKeyBuilder, context: IConventionContext_1<IConventionForeignKeyBuilder>): void;
|
|
@@ -1246,14 +1376,23 @@ export interface ForeignKeyAttributeConvention$instance extends IComplexProperty
|
|
|
1246
1376
|
export type ForeignKeyAttributeConvention = ForeignKeyAttributeConvention$instance & __ForeignKeyAttributeConvention$views;
|
|
1247
1377
|
|
|
1248
1378
|
|
|
1249
|
-
export
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
|
|
1379
|
+
export interface ForeignKeyIndexConvention$instance extends IConvention {
|
|
1380
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
1381
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IEntityTypeBaseTypeChangedConvention: never;
|
|
1382
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IForeignKeyAddedConvention: never;
|
|
1383
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IForeignKeyPropertiesChangedConvention: never;
|
|
1384
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IForeignKeyRemovedConvention: never;
|
|
1385
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IForeignKeyUniquenessChangedConvention: never;
|
|
1386
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IIndexAddedConvention: never;
|
|
1387
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IIndexRemovedConvention: never;
|
|
1388
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IIndexUniquenessChangedConvention: never;
|
|
1389
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IKeyAddedConvention: never;
|
|
1390
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IKeyRemovedConvention: never;
|
|
1391
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IModelFinalizingConvention: never;
|
|
1392
|
+
|
|
1393
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
1394
|
+
AreIndexedBy(properties: IReadOnlyList<IConventionProperty>, unique: boolean, coveringIndexProperties: IReadOnlyList<IConventionProperty>, coveringIndexUnique: boolean): boolean;
|
|
1395
|
+
CreateIndex(properties: IReadOnlyList<IConventionProperty>, unique: boolean, entityTypeBuilder: IConventionEntityTypeBuilder): IConventionIndex | undefined;
|
|
1257
1396
|
ProcessEntityTypeBaseTypeChanged(entityTypeBuilder: IConventionEntityTypeBuilder, newBaseType: IConventionEntityType, oldBaseType: IConventionEntityType, context: IConventionContext_1<IConventionEntityType>): void;
|
|
1258
1397
|
ProcessForeignKeyAdded(relationshipBuilder: IConventionForeignKeyBuilder, context: IConventionContext_1<IConventionForeignKeyBuilder>): void;
|
|
1259
1398
|
ProcessForeignKeyPropertiesChanged(relationshipBuilder: IConventionForeignKeyBuilder, oldDependentProperties: IReadOnlyList<IConventionProperty>, oldPrincipalKey: IConventionKey, context: IConventionContext_1<IReadOnlyList<IConventionProperty>>): void;
|
|
@@ -1292,12 +1431,26 @@ export interface ForeignKeyIndexConvention$instance extends IEntityTypeBaseTypeC
|
|
|
1292
1431
|
export type ForeignKeyIndexConvention = ForeignKeyIndexConvention$instance & __ForeignKeyIndexConvention$views;
|
|
1293
1432
|
|
|
1294
1433
|
|
|
1295
|
-
export
|
|
1296
|
-
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
|
|
1434
|
+
export interface ForeignKeyPropertyDiscoveryConvention$instance extends IConvention {
|
|
1435
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
1436
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IEntityTypeMemberIgnoredConvention: never;
|
|
1437
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IEntityTypePrimaryKeyChangedConvention: never;
|
|
1438
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IForeignKeyAddedConvention: never;
|
|
1439
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IForeignKeyPrincipalEndChangedConvention: never;
|
|
1440
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IForeignKeyPropertiesChangedConvention: never;
|
|
1441
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IForeignKeyRequirednessChangedConvention: never;
|
|
1442
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IForeignKeyUniquenessChangedConvention: never;
|
|
1443
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IKeyAddedConvention: never;
|
|
1444
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IKeyRemovedConvention: never;
|
|
1445
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IModelFinalizingConvention: never;
|
|
1446
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_INavigationAddedConvention: never;
|
|
1447
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IPropertyAddedConvention: never;
|
|
1448
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IPropertyFieldChangedConvention: never;
|
|
1449
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IPropertyNullabilityChangedConvention: never;
|
|
1450
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_ISkipNavigationForeignKeyChangedConvention: never;
|
|
1451
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_ISkipNavigationInverseChangedConvention: never;
|
|
1452
|
+
|
|
1453
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
1301
1454
|
ProcessEntityTypeMemberIgnored(entityTypeBuilder: IConventionEntityTypeBuilder, name: string, context: IConventionContext_1<System_Internal.String>): void;
|
|
1302
1455
|
ProcessEntityTypePrimaryKeyChanged(entityTypeBuilder: IConventionEntityTypeBuilder, newPrimaryKey: IConventionKey, previousPrimaryKey: IConventionKey, context: IConventionContext_1<IConventionKey>): void;
|
|
1303
1456
|
ProcessForeignKeyAdded(relationshipBuilder: IConventionForeignKeyBuilder, context: IConventionContext_1<IConventionForeignKeyBuilder>): void;
|
|
@@ -1347,12 +1500,13 @@ export interface ForeignKeyPropertyDiscoveryConvention$instance extends IEntityT
|
|
|
1347
1500
|
export type ForeignKeyPropertyDiscoveryConvention = ForeignKeyPropertyDiscoveryConvention$instance & __ForeignKeyPropertyDiscoveryConvention$views;
|
|
1348
1501
|
|
|
1349
1502
|
|
|
1350
|
-
export
|
|
1351
|
-
|
|
1352
|
-
|
|
1353
|
-
|
|
1503
|
+
export interface IndexAttributeConvention$instance extends IConvention {
|
|
1504
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
1505
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IEntityTypeAddedConvention: never;
|
|
1506
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IEntityTypeBaseTypeChangedConvention: never;
|
|
1507
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IModelFinalizingConvention: never;
|
|
1354
1508
|
|
|
1355
|
-
|
|
1509
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
1356
1510
|
ProcessEntityTypeAdded(entityTypeBuilder: IConventionEntityTypeBuilder, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
1357
1511
|
ProcessEntityTypeBaseTypeChanged(entityTypeBuilder: IConventionEntityTypeBuilder, newBaseType: IConventionEntityType, oldBaseType: IConventionEntityType, context: IConventionContext_1<IConventionEntityType>): void;
|
|
1358
1512
|
ProcessModelFinalizing(modelBuilder: IConventionModelBuilder, context: IConventionContext_1<IConventionModelBuilder>): void;
|
|
@@ -1375,12 +1529,15 @@ export interface IndexAttributeConvention$instance extends IEntityTypeAddedConve
|
|
|
1375
1529
|
export type IndexAttributeConvention = IndexAttributeConvention$instance & __IndexAttributeConvention$views;
|
|
1376
1530
|
|
|
1377
1531
|
|
|
1378
|
-
export
|
|
1379
|
-
|
|
1380
|
-
|
|
1381
|
-
|
|
1532
|
+
export interface InversePropertyAttributeConvention$instance extends NavigationAttributeConventionBase_1<InversePropertyAttribute>, IConvention {
|
|
1533
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
1534
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IEntityTypeAddedConvention: never;
|
|
1535
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IEntityTypeBaseTypeChangedConvention: never;
|
|
1536
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IEntityTypeMemberIgnoredConvention: never;
|
|
1537
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IEntityTypeRemovedConvention: never;
|
|
1538
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IModelFinalizingConvention: never;
|
|
1539
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_INavigationAddedConvention: never;
|
|
1382
1540
|
|
|
1383
|
-
export interface InversePropertyAttributeConvention$instance extends InversePropertyAttributeConvention$protected, NavigationAttributeConventionBase_1<InversePropertyAttribute>, IConvention {
|
|
1384
1541
|
ProcessEntityTypeAdded(entityTypeBuilder: IConventionEntityTypeBuilder, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
1385
1542
|
ProcessEntityTypeAdded(entityTypeBuilder: IConventionEntityTypeBuilder, navigationMemberInfo: MemberInfo, targetClrType: Type, attribute: InversePropertyAttribute, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
1386
1543
|
ProcessEntityTypeBaseTypeChanged(entityTypeBuilder: IConventionEntityTypeBuilder, newBaseType: IConventionEntityType, oldBaseType: IConventionEntityType, context: IConventionContext_1<IConventionEntityType>): void;
|
|
@@ -1394,6 +1551,7 @@ export interface InversePropertyAttributeConvention$instance extends InverseProp
|
|
|
1394
1551
|
ProcessModelFinalizing(modelBuilder: IConventionModelBuilder, context: IConventionContext_1<IConventionModelBuilder>): void;
|
|
1395
1552
|
ProcessNavigationAdded(navigationBuilder: IConventionNavigationBuilder, context: IConventionContext_1<IConventionNavigationBuilder>): void;
|
|
1396
1553
|
ProcessNavigationAdded(navigationBuilder: IConventionNavigationBuilder, attribute: InversePropertyAttribute, context: IConventionContext_1<IConventionNavigationBuilder>): void;
|
|
1554
|
+
TryGetTargetEntityTypeBuilder(entityTypeBuilder: IConventionEntityTypeBuilder, targetClrType: Type, navigationMemberInfo: MemberInfo, shouldCreate?: boolean): IConventionEntityTypeBuilder | undefined;
|
|
1397
1555
|
}
|
|
1398
1556
|
|
|
1399
1557
|
|
|
@@ -1417,20 +1575,22 @@ export interface InversePropertyAttributeConvention$instance extends IModelFinal
|
|
|
1417
1575
|
export type InversePropertyAttributeConvention = InversePropertyAttributeConvention$instance & __InversePropertyAttributeConvention$views;
|
|
1418
1576
|
|
|
1419
1577
|
|
|
1420
|
-
export
|
|
1421
|
-
|
|
1422
|
-
|
|
1423
|
-
|
|
1424
|
-
|
|
1425
|
-
|
|
1426
|
-
|
|
1578
|
+
export interface KeyAttributeConvention$instance extends PropertyAttributeConventionBase_1$instance<KeyAttribute>, IConvention {
|
|
1579
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IComplexPropertyAddedConvention: never;
|
|
1580
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
1581
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IEntityTypeAddedConvention: never;
|
|
1582
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IEntityTypeBaseTypeChangedConvention: never;
|
|
1583
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IModelFinalizingConvention: never;
|
|
1584
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IPropertyAddedConvention: never;
|
|
1585
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IPropertyFieldChangedConvention: never;
|
|
1427
1586
|
|
|
1428
|
-
export interface KeyAttributeConvention$instance extends KeyAttributeConvention$protected, PropertyAttributeConventionBase_1$instance<KeyAttribute>, IConvention {
|
|
1429
1587
|
ProcessComplexPropertyAdded(propertyBuilder: IConventionComplexPropertyBuilder, context: IConventionContext_1<IConventionComplexPropertyBuilder>): void;
|
|
1430
1588
|
ProcessEntityTypeAdded(entityTypeBuilder: IConventionEntityTypeBuilder, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
1431
1589
|
ProcessEntityTypeBaseTypeChanged(entityTypeBuilder: IConventionEntityTypeBuilder, newBaseType: IConventionEntityType, oldBaseType: IConventionEntityType, context: IConventionContext_1<IConventionEntityType>): void;
|
|
1432
1590
|
ProcessModelFinalizing(modelBuilder: IConventionModelBuilder, context: IConventionContext_1<IConventionModelBuilder>): void;
|
|
1591
|
+
ProcessPropertyAdded(propertyBuilder: IConventionPropertyBuilder, attribute: KeyAttribute, clrMember: MemberInfo, context: IConventionContext): void;
|
|
1433
1592
|
ProcessPropertyAdded(propertyBuilder: IConventionPropertyBuilder, context: IConventionContext_1<IConventionPropertyBuilder>): void;
|
|
1593
|
+
ProcessPropertyAdded(propertyBuilder: IConventionComplexPropertyBuilder, attribute: KeyAttribute, clrMember: MemberInfo, context: IConventionContext): void;
|
|
1434
1594
|
ProcessPropertyFieldChanged(propertyBuilder: IConventionPropertyBuilder, newFieldInfo: FieldInfo, oldFieldInfo: FieldInfo, context: IConventionContext_1<FieldInfo>): void;
|
|
1435
1595
|
}
|
|
1436
1596
|
|
|
@@ -1454,16 +1614,22 @@ export interface KeyAttributeConvention$instance extends IEntityTypeAddedConvent
|
|
|
1454
1614
|
export type KeyAttributeConvention = KeyAttributeConvention$instance & __KeyAttributeConvention$views;
|
|
1455
1615
|
|
|
1456
1616
|
|
|
1457
|
-
export
|
|
1458
|
-
|
|
1459
|
-
|
|
1460
|
-
|
|
1461
|
-
|
|
1462
|
-
|
|
1463
|
-
|
|
1464
|
-
|
|
1465
|
-
|
|
1466
|
-
|
|
1617
|
+
export interface KeyDiscoveryConvention$instance extends IConvention {
|
|
1618
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
1619
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IEntityTypeAddedConvention: never;
|
|
1620
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IEntityTypeBaseTypeChangedConvention: never;
|
|
1621
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IEntityTypeMemberIgnoredConvention: never;
|
|
1622
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IForeignKeyAddedConvention: never;
|
|
1623
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IForeignKeyOwnershipChangedConvention: never;
|
|
1624
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IForeignKeyPropertiesChangedConvention: never;
|
|
1625
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IForeignKeyRemovedConvention: never;
|
|
1626
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IForeignKeyUniquenessChangedConvention: never;
|
|
1627
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IKeyRemovedConvention: never;
|
|
1628
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IPropertyAddedConvention: never;
|
|
1629
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_ISkipNavigationForeignKeyChangedConvention: never;
|
|
1630
|
+
|
|
1631
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
1632
|
+
DiscoverKeyProperties(entityType: IConventionEntityType): List<IConventionProperty> | undefined;
|
|
1467
1633
|
ProcessEntityTypeAdded(entityTypeBuilder: IConventionEntityTypeBuilder, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
1468
1634
|
ProcessEntityTypeBaseTypeChanged(entityTypeBuilder: IConventionEntityTypeBuilder, newBaseType: IConventionEntityType, oldBaseType: IConventionEntityType, context: IConventionContext_1<IConventionEntityType>): void;
|
|
1469
1635
|
ProcessEntityTypeMemberIgnored(entityTypeBuilder: IConventionEntityTypeBuilder, name: string, context: IConventionContext_1<System_Internal.String>): void;
|
|
@@ -1472,9 +1638,12 @@ export interface KeyDiscoveryConvention$instance extends KeyDiscoveryConvention$
|
|
|
1472
1638
|
ProcessForeignKeyPropertiesChanged(relationshipBuilder: IConventionForeignKeyBuilder, oldDependentProperties: IReadOnlyList<IConventionProperty>, oldPrincipalKey: IConventionKey, context: IConventionContext_1<IReadOnlyList<IConventionProperty>>): void;
|
|
1473
1639
|
ProcessForeignKeyRemoved(entityTypeBuilder: IConventionEntityTypeBuilder, foreignKey: IConventionForeignKey, context: IConventionContext_1<IConventionForeignKey>): void;
|
|
1474
1640
|
ProcessForeignKeyUniquenessChanged(relationshipBuilder: IConventionForeignKeyBuilder, context: IConventionContext_1<Nullable<System_Internal.Boolean>>): void;
|
|
1641
|
+
ProcessKeyProperties(keyProperties: IList<IConventionProperty>, entityType: IConventionEntityType): void;
|
|
1475
1642
|
ProcessKeyRemoved(entityTypeBuilder: IConventionEntityTypeBuilder, key: IConventionKey, context: IConventionContext_1<IConventionKey>): void;
|
|
1476
1643
|
ProcessPropertyAdded(propertyBuilder: IConventionPropertyBuilder, context: IConventionContext_1<IConventionPropertyBuilder>): void;
|
|
1477
1644
|
ProcessSkipNavigationForeignKeyChanged(skipNavigationBuilder: IConventionSkipNavigationBuilder, foreignKey: IConventionForeignKey, oldForeignKey: IConventionForeignKey, context: IConventionContext_1<IConventionForeignKey>): void;
|
|
1645
|
+
ShouldDiscoverKeyProperties(entityType: IConventionEntityType): boolean;
|
|
1646
|
+
TryConfigurePrimaryKey(entityTypeBuilder: IConventionEntityTypeBuilder): void;
|
|
1478
1647
|
}
|
|
1479
1648
|
|
|
1480
1649
|
|
|
@@ -1503,13 +1672,10 @@ export interface KeyDiscoveryConvention$instance extends IEntityTypeAddedConvent
|
|
|
1503
1672
|
export type KeyDiscoveryConvention = KeyDiscoveryConvention$instance & __KeyDiscoveryConvention$views;
|
|
1504
1673
|
|
|
1505
1674
|
|
|
1506
|
-
export
|
|
1507
|
-
|
|
1508
|
-
|
|
1509
|
-
}
|
|
1675
|
+
export interface KeylessAttributeConvention$instance extends TypeAttributeConventionBase_1$instance<KeylessAttribute>, IConvention {
|
|
1676
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
1677
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IEntityTypeAddedConvention: never;
|
|
1510
1678
|
|
|
1511
|
-
|
|
1512
|
-
export interface KeylessAttributeConvention$instance extends KeylessAttributeConvention$protected, TypeAttributeConventionBase_1$instance<KeylessAttribute>, IConvention {
|
|
1513
1679
|
ProcessEntityTypeAdded(entityTypeBuilder: IConventionEntityTypeBuilder, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
1514
1680
|
}
|
|
1515
1681
|
|
|
@@ -1526,20 +1692,22 @@ export interface __KeylessAttributeConvention$views {
|
|
|
1526
1692
|
export type KeylessAttributeConvention = KeylessAttributeConvention$instance & __KeylessAttributeConvention$views;
|
|
1527
1693
|
|
|
1528
1694
|
|
|
1529
|
-
export
|
|
1530
|
-
|
|
1531
|
-
|
|
1532
|
-
|
|
1533
|
-
|
|
1534
|
-
|
|
1535
|
-
}
|
|
1536
|
-
|
|
1695
|
+
export interface ManyToManyJoinEntityTypeConvention$instance extends IConvention {
|
|
1696
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
1697
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_ISkipNavigationAddedConvention: never;
|
|
1698
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_ISkipNavigationForeignKeyChangedConvention: never;
|
|
1699
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_ISkipNavigationInverseChangedConvention: never;
|
|
1700
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_ISkipNavigationRemovedConvention: never;
|
|
1537
1701
|
|
|
1538
|
-
|
|
1702
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
1703
|
+
CreateJoinEntityType(joinEntityTypeName: string, skipNavigation: IConventionSkipNavigation): void;
|
|
1704
|
+
CreateSkipNavigationForeignKey(skipNavigation: IConventionSkipNavigation, joinEntityTypeBuilder: IConventionEntityTypeBuilder): IConventionForeignKey;
|
|
1705
|
+
GenerateJoinTypeName(skipNavigation: IConventionSkipNavigation): string;
|
|
1539
1706
|
ProcessSkipNavigationAdded(skipNavigationBuilder: IConventionSkipNavigationBuilder, context: IConventionContext_1<IConventionSkipNavigationBuilder>): void;
|
|
1540
1707
|
ProcessSkipNavigationForeignKeyChanged(skipNavigationBuilder: IConventionSkipNavigationBuilder, foreignKey: IConventionForeignKey, oldForeignKey: IConventionForeignKey, context: IConventionContext_1<IConventionForeignKey>): void;
|
|
1541
1708
|
ProcessSkipNavigationInverseChanged(skipNavigationBuilder: IConventionSkipNavigationBuilder, inverse: IConventionSkipNavigation, oldInverse: IConventionSkipNavigation, context: IConventionContext_1<IConventionSkipNavigation>): void;
|
|
1542
1709
|
ProcessSkipNavigationRemoved(entityTypeBuilder: IConventionEntityTypeBuilder, navigation: IConventionSkipNavigation, context: IConventionContext_1<IConventionSkipNavigation>): void;
|
|
1710
|
+
ShouldCreateJoinType(skipNavigation: IConventionSkipNavigation): boolean;
|
|
1543
1711
|
}
|
|
1544
1712
|
|
|
1545
1713
|
|
|
@@ -1560,17 +1728,16 @@ export interface ManyToManyJoinEntityTypeConvention$instance extends ISkipNaviga
|
|
|
1560
1728
|
export type ManyToManyJoinEntityTypeConvention = ManyToManyJoinEntityTypeConvention$instance & __ManyToManyJoinEntityTypeConvention$views;
|
|
1561
1729
|
|
|
1562
1730
|
|
|
1563
|
-
export
|
|
1564
|
-
|
|
1565
|
-
|
|
1566
|
-
|
|
1567
|
-
|
|
1568
|
-
}
|
|
1731
|
+
export interface MaxLengthAttributeConvention$instance extends PropertyAttributeConventionBase_1$instance<MaxLengthAttribute>, IConvention {
|
|
1732
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IComplexPropertyAddedConvention: never;
|
|
1733
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
1734
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IPropertyAddedConvention: never;
|
|
1735
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IPropertyFieldChangedConvention: never;
|
|
1569
1736
|
|
|
1570
|
-
|
|
1571
|
-
export interface MaxLengthAttributeConvention$instance extends MaxLengthAttributeConvention$protected, PropertyAttributeConventionBase_1$instance<MaxLengthAttribute>, IConvention {
|
|
1572
1737
|
ProcessComplexPropertyAdded(propertyBuilder: IConventionComplexPropertyBuilder, context: IConventionContext_1<IConventionComplexPropertyBuilder>): void;
|
|
1738
|
+
ProcessPropertyAdded(propertyBuilder: IConventionPropertyBuilder, attribute: MaxLengthAttribute, clrMember: MemberInfo, context: IConventionContext): void;
|
|
1573
1739
|
ProcessPropertyAdded(propertyBuilder: IConventionPropertyBuilder, context: IConventionContext_1<IConventionPropertyBuilder>): void;
|
|
1740
|
+
ProcessPropertyAdded(propertyBuilder: IConventionComplexPropertyBuilder, attribute: MaxLengthAttribute, clrMember: MemberInfo, context: IConventionContext): void;
|
|
1574
1741
|
ProcessPropertyFieldChanged(propertyBuilder: IConventionPropertyBuilder, newFieldInfo: FieldInfo, oldFieldInfo: FieldInfo, context: IConventionContext_1<FieldInfo>): void;
|
|
1575
1742
|
}
|
|
1576
1743
|
|
|
@@ -1589,12 +1756,12 @@ export interface __MaxLengthAttributeConvention$views {
|
|
|
1589
1756
|
export type MaxLengthAttributeConvention = MaxLengthAttributeConvention$instance & __MaxLengthAttributeConvention$views;
|
|
1590
1757
|
|
|
1591
1758
|
|
|
1592
|
-
export
|
|
1593
|
-
|
|
1594
|
-
|
|
1595
|
-
|
|
1759
|
+
export interface ModelCleanupConvention$instance extends IConvention {
|
|
1760
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
1761
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IForeignKeyRemovedConvention: never;
|
|
1762
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IModelFinalizingConvention: never;
|
|
1596
1763
|
|
|
1597
|
-
|
|
1764
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
1598
1765
|
ProcessForeignKeyRemoved(entityTypeBuilder: IConventionEntityTypeBuilder, foreignKey: IConventionForeignKey, context: IConventionContext_1<IConventionForeignKey>): void;
|
|
1599
1766
|
ProcessModelFinalizing(modelBuilder: IConventionModelBuilder, context: IConventionContext_1<IConventionModelBuilder>): void;
|
|
1600
1767
|
}
|
|
@@ -1615,12 +1782,8 @@ export interface ModelCleanupConvention$instance extends IForeignKeyRemovedConve
|
|
|
1615
1782
|
export type ModelCleanupConvention = ModelCleanupConvention$instance & __ModelCleanupConvention$views;
|
|
1616
1783
|
|
|
1617
1784
|
|
|
1618
|
-
export
|
|
1619
|
-
|
|
1620
|
-
}
|
|
1621
|
-
|
|
1622
|
-
|
|
1623
|
-
export interface NavigationAttributeConventionBase_1$instance<TAttribute extends Attribute> extends NavigationAttributeConventionBase_1$protected<TAttribute> {
|
|
1785
|
+
export interface NavigationAttributeConventionBase_1$instance<TAttribute extends Attribute> {
|
|
1786
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
1624
1787
|
ProcessEntityTypeAdded(entityTypeBuilder: IConventionEntityTypeBuilder, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
1625
1788
|
ProcessEntityTypeAdded(entityTypeBuilder: IConventionEntityTypeBuilder, navigationMemberInfo: MemberInfo, targetClrType: Type, attribute: TAttribute, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
1626
1789
|
ProcessEntityTypeBaseTypeChanged(entityTypeBuilder: IConventionEntityTypeBuilder, newBaseType: IConventionEntityType, oldBaseType: IConventionEntityType, context: IConventionContext_1<IConventionEntityType>): void;
|
|
@@ -1640,8 +1803,7 @@ export interface NavigationAttributeConventionBase_1$instance<TAttribute extends
|
|
|
1640
1803
|
}
|
|
1641
1804
|
|
|
1642
1805
|
|
|
1643
|
-
export const NavigationAttributeConventionBase_1: {
|
|
1644
|
-
new<TAttribute extends Attribute>(dependencies: ProviderConventionSetBuilderDependencies): NavigationAttributeConventionBase_1<TAttribute>;
|
|
1806
|
+
export const NavigationAttributeConventionBase_1: (abstract new<TAttribute extends Attribute>(dependencies: ProviderConventionSetBuilderDependencies) => NavigationAttributeConventionBase_1<TAttribute>) & {
|
|
1645
1807
|
GetAttributes<TAttribute extends Attribute, TCustomAttribute extends Attribute>(entityType: IConventionEntityType, navigation: IConventionNavigation): IEnumerable<TCustomAttribute>;
|
|
1646
1808
|
GetAttributes<TAttribute extends Attribute, TCustomAttribute extends Attribute>(entityType: IConventionEntityType, skipNavigation: IConventionSkipNavigation): IEnumerable<TCustomAttribute>;
|
|
1647
1809
|
};
|
|
@@ -1650,6 +1812,10 @@ export const NavigationAttributeConventionBase_1: {
|
|
|
1650
1812
|
export type NavigationAttributeConventionBase_1<TAttribute extends Attribute> = NavigationAttributeConventionBase_1$instance<TAttribute>;
|
|
1651
1813
|
|
|
1652
1814
|
export interface NavigationBackingFieldAttributeConvention$instance extends NavigationAttributeConventionBase_1<BackingFieldAttribute>, IConvention {
|
|
1815
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
1816
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_INavigationAddedConvention: never;
|
|
1817
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_ISkipNavigationAddedConvention: never;
|
|
1818
|
+
|
|
1653
1819
|
ProcessNavigationAdded(navigationBuilder: IConventionNavigationBuilder, context: IConventionContext_1<IConventionNavigationBuilder>): void;
|
|
1654
1820
|
ProcessNavigationAdded(navigationBuilder: IConventionNavigationBuilder, attribute: BackingFieldAttribute, context: IConventionContext_1<IConventionNavigationBuilder>): void;
|
|
1655
1821
|
ProcessSkipNavigationAdded(skipNavigationBuilder: IConventionSkipNavigationBuilder, context: IConventionContext_1<IConventionSkipNavigationBuilder>): void;
|
|
@@ -1670,12 +1836,11 @@ export interface __NavigationBackingFieldAttributeConvention$views {
|
|
|
1670
1836
|
export type NavigationBackingFieldAttributeConvention = NavigationBackingFieldAttributeConvention$instance & __NavigationBackingFieldAttributeConvention$views;
|
|
1671
1837
|
|
|
1672
1838
|
|
|
1673
|
-
export
|
|
1674
|
-
|
|
1675
|
-
|
|
1676
|
-
|
|
1839
|
+
export interface NavigationEagerLoadingConvention$instance extends IConvention {
|
|
1840
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
1841
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IForeignKeyOwnershipChangedConvention: never;
|
|
1677
1842
|
|
|
1678
|
-
|
|
1843
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
1679
1844
|
ProcessForeignKeyOwnershipChanged(relationshipBuilder: IConventionForeignKeyBuilder, context: IConventionContext_1<Nullable<System_Internal.Boolean>>): void;
|
|
1680
1845
|
}
|
|
1681
1846
|
|
|
@@ -1694,24 +1859,23 @@ export interface NavigationEagerLoadingConvention$instance extends IForeignKeyOw
|
|
|
1694
1859
|
export type NavigationEagerLoadingConvention = NavigationEagerLoadingConvention$instance & __NavigationEagerLoadingConvention$views;
|
|
1695
1860
|
|
|
1696
1861
|
|
|
1697
|
-
export
|
|
1698
|
-
|
|
1699
|
-
|
|
1862
|
+
export interface NonNullableConventionBase$instance {
|
|
1863
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
1864
|
+
TryGetNullabilityInfo(modelBuilder: IConventionModelBuilder, memberInfo: MemberInfo, nullabilityInfo: NullabilityInfo): boolean;
|
|
1700
1865
|
}
|
|
1701
1866
|
|
|
1702
1867
|
|
|
1703
|
-
export
|
|
1704
|
-
}
|
|
1705
|
-
|
|
1706
|
-
|
|
1707
|
-
export const NonNullableConventionBase: {
|
|
1708
|
-
new(dependencies: ProviderConventionSetBuilderDependencies): NonNullableConventionBase;
|
|
1868
|
+
export const NonNullableConventionBase: (abstract new(dependencies: ProviderConventionSetBuilderDependencies) => NonNullableConventionBase) & {
|
|
1709
1869
|
};
|
|
1710
1870
|
|
|
1711
1871
|
|
|
1712
1872
|
export type NonNullableConventionBase = NonNullableConventionBase$instance;
|
|
1713
1873
|
|
|
1714
1874
|
export interface NonNullableNavigationConvention$instance extends NonNullableConventionBase, IConvention {
|
|
1875
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
1876
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IForeignKeyPrincipalEndChangedConvention: never;
|
|
1877
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_INavigationAddedConvention: never;
|
|
1878
|
+
|
|
1715
1879
|
ProcessForeignKeyPrincipalEndChanged(relationshipBuilder: IConventionForeignKeyBuilder, context: IConventionContext_1<IConventionForeignKeyBuilder>): void;
|
|
1716
1880
|
ProcessNavigationAdded(navigationBuilder: IConventionNavigationBuilder, context: IConventionContext_1<IConventionNavigationBuilder>): void;
|
|
1717
1881
|
}
|
|
@@ -1733,6 +1897,13 @@ export type NonNullableNavigationConvention = NonNullableNavigationConvention$in
|
|
|
1733
1897
|
|
|
1734
1898
|
|
|
1735
1899
|
export interface NonNullableReferencePropertyConvention$instance extends NonNullableConventionBase, IConvention {
|
|
1900
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IComplexPropertyAddedConvention: never;
|
|
1901
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IComplexPropertyFieldChangedConvention: never;
|
|
1902
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
1903
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IPropertyAddedConvention: never;
|
|
1904
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IPropertyElementTypeChangedConvention: never;
|
|
1905
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IPropertyFieldChangedConvention: never;
|
|
1906
|
+
|
|
1736
1907
|
ProcessComplexPropertyAdded(propertyBuilder: IConventionComplexPropertyBuilder, context: IConventionContext_1<IConventionComplexPropertyBuilder>): void;
|
|
1737
1908
|
ProcessComplexPropertyFieldChanged(propertyBuilder: IConventionComplexPropertyBuilder, newFieldInfo: FieldInfo, oldFieldInfo: FieldInfo, context: IConventionContext_1<FieldInfo>): void;
|
|
1738
1909
|
ProcessPropertyAdded(propertyBuilder: IConventionPropertyBuilder, context: IConventionContext_1<IConventionPropertyBuilder>): void;
|
|
@@ -1759,15 +1930,15 @@ export interface NonNullableReferencePropertyConvention$instance extends IComple
|
|
|
1759
1930
|
export type NonNullableReferencePropertyConvention = NonNullableReferencePropertyConvention$instance & __NonNullableReferencePropertyConvention$views;
|
|
1760
1931
|
|
|
1761
1932
|
|
|
1762
|
-
export
|
|
1763
|
-
|
|
1764
|
-
|
|
1765
|
-
|
|
1766
|
-
|
|
1933
|
+
export interface NotMappedMemberAttributeConvention$instance extends IConvention {
|
|
1934
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IComplexPropertyAddedConvention: never;
|
|
1935
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
1936
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IEntityTypeAddedConvention: never;
|
|
1767
1937
|
|
|
1768
|
-
|
|
1938
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
1769
1939
|
ProcessComplexPropertyAdded(propertyBuilder: IConventionComplexPropertyBuilder, context: IConventionContext_1<IConventionComplexPropertyBuilder>): void;
|
|
1770
1940
|
ProcessEntityTypeAdded(entityTypeBuilder: IConventionEntityTypeBuilder, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
1941
|
+
ShouldIgnore(memberInfo: MemberInfo): boolean;
|
|
1771
1942
|
}
|
|
1772
1943
|
|
|
1773
1944
|
|
|
@@ -1786,13 +1957,10 @@ export interface NotMappedMemberAttributeConvention$instance extends IComplexPro
|
|
|
1786
1957
|
export type NotMappedMemberAttributeConvention = NotMappedMemberAttributeConvention$instance & __NotMappedMemberAttributeConvention$views;
|
|
1787
1958
|
|
|
1788
1959
|
|
|
1789
|
-
export
|
|
1790
|
-
|
|
1791
|
-
|
|
1792
|
-
}
|
|
1793
|
-
|
|
1960
|
+
export interface NotMappedTypeAttributeConvention$instance extends TypeAttributeConventionBase_1$instance<NotMappedAttribute>, IConvention {
|
|
1961
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
1962
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IEntityTypeAddedConvention: never;
|
|
1794
1963
|
|
|
1795
|
-
export interface NotMappedTypeAttributeConvention$instance extends NotMappedTypeAttributeConvention$protected, TypeAttributeConventionBase_1$instance<NotMappedAttribute>, IConvention {
|
|
1796
1964
|
ProcessEntityTypeAdded(entityTypeBuilder: IConventionEntityTypeBuilder, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
1797
1965
|
}
|
|
1798
1966
|
|
|
@@ -1809,16 +1977,13 @@ export interface __NotMappedTypeAttributeConvention$views {
|
|
|
1809
1977
|
export type NotMappedTypeAttributeConvention = NotMappedTypeAttributeConvention$instance & __NotMappedTypeAttributeConvention$views;
|
|
1810
1978
|
|
|
1811
1979
|
|
|
1812
|
-
export
|
|
1813
|
-
|
|
1814
|
-
|
|
1815
|
-
|
|
1816
|
-
protected abstract ProcessEntityTypeAdded2(entityTypeBuilder: IConventionEntityTypeBuilder, attribute: unknown, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
1817
|
-
}
|
|
1818
|
-
|
|
1980
|
+
export interface OwnedAttributeConvention$instance extends TypeAttributeConventionBase_1$instance<OwnedAttribute>, IConvention {
|
|
1981
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IComplexPropertyAddedConvention: never;
|
|
1982
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
1983
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IEntityTypeAddedConvention: never;
|
|
1819
1984
|
|
|
1820
|
-
export interface OwnedAttributeConvention$instance extends OwnedAttributeConvention$protected, TypeAttributeConventionBase_1$instance<OwnedAttribute>, IConvention {
|
|
1821
1985
|
ProcessComplexPropertyAdded(propertyBuilder: IConventionComplexPropertyBuilder, context: IConventionContext_1<IConventionComplexPropertyBuilder>): void;
|
|
1986
|
+
ProcessComplexTypeAdded(complexTypeBuilder: IConventionComplexTypeBuilder, attribute: OwnedAttribute, context: IConventionContext): void;
|
|
1822
1987
|
ProcessEntityTypeAdded(entityTypeBuilder: IConventionEntityTypeBuilder, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
1823
1988
|
}
|
|
1824
1989
|
|
|
@@ -1836,16 +2001,14 @@ export interface __OwnedAttributeConvention$views {
|
|
|
1836
2001
|
export type OwnedAttributeConvention = OwnedAttributeConvention$instance & __OwnedAttributeConvention$views;
|
|
1837
2002
|
|
|
1838
2003
|
|
|
1839
|
-
export
|
|
1840
|
-
|
|
1841
|
-
|
|
1842
|
-
|
|
1843
|
-
protected ProcessPropertyAdded3(propertyBuilder: IConventionComplexPropertyBuilder, attribute: unknown, clrMember: MemberInfo, context: IConventionContext): void;
|
|
1844
|
-
}
|
|
1845
|
-
|
|
2004
|
+
export interface PrecisionAttributeConvention$instance extends PropertyAttributeConventionBase_1$instance<PrecisionAttribute>, IConvention {
|
|
2005
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
2006
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IPropertyAddedConvention: never;
|
|
2007
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IPropertyFieldChangedConvention: never;
|
|
1846
2008
|
|
|
1847
|
-
|
|
2009
|
+
ProcessPropertyAdded(propertyBuilder: IConventionPropertyBuilder, attribute: PrecisionAttribute, clrMember: MemberInfo, context: IConventionContext): void;
|
|
1848
2010
|
ProcessPropertyAdded(propertyBuilder: IConventionPropertyBuilder, context: IConventionContext_1<IConventionPropertyBuilder>): void;
|
|
2011
|
+
ProcessPropertyAdded(propertyBuilder: IConventionComplexPropertyBuilder, attribute: PrecisionAttribute, clrMember: MemberInfo, context: IConventionContext): void;
|
|
1849
2012
|
ProcessPropertyFieldChanged(propertyBuilder: IConventionPropertyBuilder, newFieldInfo: FieldInfo, oldFieldInfo: FieldInfo, context: IConventionContext_1<FieldInfo>): void;
|
|
1850
2013
|
}
|
|
1851
2014
|
|
|
@@ -1863,23 +2026,22 @@ export interface __PrecisionAttributeConvention$views {
|
|
|
1863
2026
|
export type PrecisionAttributeConvention = PrecisionAttributeConvention$instance & __PrecisionAttributeConvention$views;
|
|
1864
2027
|
|
|
1865
2028
|
|
|
1866
|
-
export
|
|
1867
|
-
|
|
1868
|
-
|
|
1869
|
-
|
|
1870
|
-
}
|
|
2029
|
+
export interface PropertyAttributeConventionBase_1$instance<TAttribute extends Attribute> extends IConvention {
|
|
2030
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
2031
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IPropertyAddedConvention: never;
|
|
2032
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IPropertyFieldChangedConvention: never;
|
|
1871
2033
|
|
|
1872
|
-
|
|
1873
|
-
export interface PropertyAttributeConventionBase_1$instance<TAttribute extends Attribute> extends PropertyAttributeConventionBase_1$protected<TAttribute>, IConvention {
|
|
2034
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
1874
2035
|
ProcessComplexPropertyAdded(propertyBuilder: IConventionComplexPropertyBuilder, context: IConventionContext_1<IConventionComplexPropertyBuilder>): void;
|
|
1875
2036
|
ProcessComplexPropertyFieldChanged(propertyBuilder: IConventionComplexPropertyBuilder, newFieldInfo: FieldInfo, oldFieldInfo: FieldInfo, context: IConventionContext_1<FieldInfo>): void;
|
|
1876
2037
|
ProcessPropertyAdded(propertyBuilder: IConventionPropertyBuilder, context: IConventionContext_1<IConventionPropertyBuilder>): void;
|
|
2038
|
+
ProcessPropertyAdded(propertyBuilder: IConventionPropertyBuilder, attribute: TAttribute, clrMember: MemberInfo, context: IConventionContext): void;
|
|
2039
|
+
ProcessPropertyAdded(propertyBuilder: IConventionComplexPropertyBuilder, attribute: TAttribute, clrMember: MemberInfo, context: IConventionContext): void;
|
|
1877
2040
|
ProcessPropertyFieldChanged(propertyBuilder: IConventionPropertyBuilder, newFieldInfo: FieldInfo, oldFieldInfo: FieldInfo, context: IConventionContext_1<FieldInfo>): void;
|
|
1878
2041
|
}
|
|
1879
2042
|
|
|
1880
2043
|
|
|
1881
|
-
export const PropertyAttributeConventionBase_1: {
|
|
1882
|
-
new<TAttribute extends Attribute>(dependencies: ProviderConventionSetBuilderDependencies): PropertyAttributeConventionBase_1<TAttribute>;
|
|
2044
|
+
export const PropertyAttributeConventionBase_1: (abstract new<TAttribute extends Attribute>(dependencies: ProviderConventionSetBuilderDependencies) => PropertyAttributeConventionBase_1<TAttribute>) & {
|
|
1883
2045
|
};
|
|
1884
2046
|
|
|
1885
2047
|
|
|
@@ -1893,16 +2055,17 @@ export interface PropertyAttributeConventionBase_1$instance<TAttribute extends A
|
|
|
1893
2055
|
export type PropertyAttributeConventionBase_1<TAttribute extends Attribute> = PropertyAttributeConventionBase_1$instance<TAttribute> & __PropertyAttributeConventionBase_1$views<TAttribute>;
|
|
1894
2056
|
|
|
1895
2057
|
|
|
1896
|
-
export
|
|
1897
|
-
|
|
1898
|
-
|
|
1899
|
-
|
|
1900
|
-
|
|
1901
|
-
protected IsCandidatePrimitiveProperty(memberInfo: MemberInfo, structuralType: IConventionTypeBase, mapping: CoreTypeMapping): boolean;
|
|
1902
|
-
}
|
|
1903
|
-
|
|
2058
|
+
export interface PropertyDiscoveryConvention$instance extends IConvention {
|
|
2059
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IComplexPropertyAddedConvention: never;
|
|
2060
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
2061
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IEntityTypeAddedConvention: never;
|
|
2062
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IEntityTypeBaseTypeChangedConvention: never;
|
|
1904
2063
|
|
|
1905
|
-
|
|
2064
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
2065
|
+
readonly UseAttributes: boolean;
|
|
2066
|
+
DiscoverPrimitiveProperties(structuralTypeBuilder: IConventionTypeBaseBuilder, context: IConventionContext): void;
|
|
2067
|
+
GetMembers(structuralType: IConventionTypeBase): IEnumerable<MemberInfo>;
|
|
2068
|
+
IsCandidatePrimitiveProperty(memberInfo: MemberInfo, structuralType: IConventionTypeBase, mapping: CoreTypeMapping): boolean;
|
|
1906
2069
|
ProcessComplexPropertyAdded(propertyBuilder: IConventionComplexPropertyBuilder, context: IConventionContext_1<IConventionComplexPropertyBuilder>): void;
|
|
1907
2070
|
ProcessEntityTypeAdded(entityTypeBuilder: IConventionEntityTypeBuilder, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
1908
2071
|
ProcessEntityTypeBaseTypeChanged(entityTypeBuilder: IConventionEntityTypeBuilder, newBaseType: IConventionEntityType, oldBaseType: IConventionEntityType, context: IConventionContext_1<IConventionEntityType>): void;
|
|
@@ -1925,13 +2088,12 @@ export interface PropertyDiscoveryConvention$instance extends IComplexPropertyAd
|
|
|
1925
2088
|
export type PropertyDiscoveryConvention = PropertyDiscoveryConvention$instance & __PropertyDiscoveryConvention$views;
|
|
1926
2089
|
|
|
1927
2090
|
|
|
1928
|
-
export
|
|
1929
|
-
|
|
1930
|
-
|
|
1931
|
-
}
|
|
2091
|
+
export interface PropertyOverridesConvention$instance extends IConvention {
|
|
2092
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
2093
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IPropertyAddedConvention: never;
|
|
1932
2094
|
|
|
1933
|
-
|
|
1934
|
-
|
|
2095
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
2096
|
+
readonly RelationalDependencies: RelationalConventionSetBuilderDependencies;
|
|
1935
2097
|
ProcessPropertyAdded(propertyBuilder: IConventionPropertyBuilder, context: IConventionContext_1<IConventionPropertyBuilder>): void;
|
|
1936
2098
|
}
|
|
1937
2099
|
|
|
@@ -1950,13 +2112,12 @@ export interface PropertyOverridesConvention$instance extends IPropertyAddedConv
|
|
|
1950
2112
|
export type PropertyOverridesConvention = PropertyOverridesConvention$instance & __PropertyOverridesConvention$views;
|
|
1951
2113
|
|
|
1952
2114
|
|
|
1953
|
-
export
|
|
1954
|
-
|
|
1955
|
-
|
|
1956
|
-
}
|
|
1957
|
-
|
|
2115
|
+
export interface QueryFilterRewritingConvention$instance extends IConvention {
|
|
2116
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
2117
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IModelFinalizingConvention: never;
|
|
1958
2118
|
|
|
1959
|
-
|
|
2119
|
+
DbSetAccessRewriter: unknown;
|
|
2120
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
1960
2121
|
ProcessModelFinalizing(modelBuilder: IConventionModelBuilder, context: IConventionContext_1<IConventionModelBuilder>): void;
|
|
1961
2122
|
}
|
|
1962
2123
|
|
|
@@ -1975,16 +2136,14 @@ export interface QueryFilterRewritingConvention$instance extends IModelFinalizin
|
|
|
1975
2136
|
export type QueryFilterRewritingConvention = QueryFilterRewritingConvention$instance & __QueryFilterRewritingConvention$views;
|
|
1976
2137
|
|
|
1977
2138
|
|
|
1978
|
-
export
|
|
1979
|
-
|
|
1980
|
-
|
|
1981
|
-
|
|
1982
|
-
protected ProcessPropertyAdded3(propertyBuilder: IConventionComplexPropertyBuilder, attribute: unknown, clrMember: MemberInfo, context: IConventionContext): void;
|
|
1983
|
-
}
|
|
1984
|
-
|
|
2139
|
+
export interface RelationalColumnAttributeConvention$instance extends PropertyAttributeConventionBase_1$instance<ColumnAttribute>, IConvention {
|
|
2140
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
2141
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IPropertyAddedConvention: never;
|
|
2142
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IPropertyFieldChangedConvention: never;
|
|
1985
2143
|
|
|
1986
|
-
|
|
2144
|
+
readonly RelationalDependencies: RelationalConventionSetBuilderDependencies;
|
|
1987
2145
|
ProcessPropertyAdded(propertyBuilder: IConventionPropertyBuilder, context: IConventionContext_1<IConventionPropertyBuilder>): void;
|
|
2146
|
+
ProcessPropertyAdded(propertyBuilder: IConventionComplexPropertyBuilder, attribute: ColumnAttribute, clrMember: MemberInfo, context: IConventionContext): void;
|
|
1988
2147
|
ProcessPropertyFieldChanged(propertyBuilder: IConventionPropertyBuilder, newFieldInfo: FieldInfo, oldFieldInfo: FieldInfo, context: IConventionContext_1<FieldInfo>): void;
|
|
1989
2148
|
}
|
|
1990
2149
|
|
|
@@ -2002,16 +2161,14 @@ export interface __RelationalColumnAttributeConvention$views {
|
|
|
2002
2161
|
export type RelationalColumnAttributeConvention = RelationalColumnAttributeConvention$instance & __RelationalColumnAttributeConvention$views;
|
|
2003
2162
|
|
|
2004
2163
|
|
|
2005
|
-
export
|
|
2006
|
-
|
|
2007
|
-
|
|
2008
|
-
|
|
2009
|
-
protected ProcessPropertyAdded3(propertyBuilder: IConventionComplexPropertyBuilder, attribute: unknown, clrMember: MemberInfo, context: IConventionContext): void;
|
|
2010
|
-
}
|
|
2011
|
-
|
|
2164
|
+
export interface RelationalColumnCommentAttributeConvention$instance extends PropertyAttributeConventionBase_1$instance<CommentAttribute>, IConvention {
|
|
2165
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
2166
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IPropertyAddedConvention: never;
|
|
2167
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IPropertyFieldChangedConvention: never;
|
|
2012
2168
|
|
|
2013
|
-
|
|
2169
|
+
readonly RelationalDependencies: RelationalConventionSetBuilderDependencies;
|
|
2014
2170
|
ProcessPropertyAdded(propertyBuilder: IConventionPropertyBuilder, context: IConventionContext_1<IConventionPropertyBuilder>): void;
|
|
2171
|
+
ProcessPropertyAdded(propertyBuilder: IConventionComplexPropertyBuilder, attribute: CommentAttribute, clrMember: MemberInfo, context: IConventionContext): void;
|
|
2015
2172
|
ProcessPropertyFieldChanged(propertyBuilder: IConventionPropertyBuilder, newFieldInfo: FieldInfo, oldFieldInfo: FieldInfo, context: IConventionContext_1<FieldInfo>): void;
|
|
2016
2173
|
}
|
|
2017
2174
|
|
|
@@ -2029,14 +2186,14 @@ export interface __RelationalColumnCommentAttributeConvention$views {
|
|
|
2029
2186
|
export type RelationalColumnCommentAttributeConvention = RelationalColumnCommentAttributeConvention$instance & __RelationalColumnCommentAttributeConvention$views;
|
|
2030
2187
|
|
|
2031
2188
|
|
|
2032
|
-
export
|
|
2033
|
-
|
|
2034
|
-
|
|
2035
|
-
|
|
2036
|
-
}
|
|
2037
|
-
|
|
2189
|
+
export interface RelationalDbFunctionAttributeConvention$instance extends IConvention {
|
|
2190
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
2191
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IModelFinalizingConvention: never;
|
|
2192
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IModelInitializedConvention: never;
|
|
2038
2193
|
|
|
2039
|
-
|
|
2194
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
2195
|
+
readonly RelationalDependencies: RelationalConventionSetBuilderDependencies;
|
|
2196
|
+
ProcessDbFunctionAdded(dbFunctionBuilder: IConventionDbFunctionBuilder, context: IConventionContext): void;
|
|
2040
2197
|
ProcessModelFinalizing(modelBuilder: IConventionModelBuilder, context: IConventionContext_1<IConventionModelBuilder>): void;
|
|
2041
2198
|
ProcessModelInitialized(modelBuilder: IConventionModelBuilder, context: IConventionContext_1<IConventionModelBuilder>): void;
|
|
2042
2199
|
}
|
|
@@ -2057,16 +2214,24 @@ export interface RelationalDbFunctionAttributeConvention$instance extends IModel
|
|
|
2057
2214
|
export type RelationalDbFunctionAttributeConvention = RelationalDbFunctionAttributeConvention$instance & __RelationalDbFunctionAttributeConvention$views;
|
|
2058
2215
|
|
|
2059
2216
|
|
|
2060
|
-
export
|
|
2061
|
-
|
|
2062
|
-
|
|
2063
|
-
|
|
2064
|
-
|
|
2065
|
-
|
|
2066
|
-
|
|
2067
|
-
|
|
2068
|
-
|
|
2069
|
-
|
|
2217
|
+
export interface RelationalKeyDiscoveryConvention$instance extends KeyDiscoveryConvention$instance, IConvention {
|
|
2218
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
2219
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IEntityTypeAddedConvention: never;
|
|
2220
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IEntityTypeAnnotationChangedConvention: never;
|
|
2221
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IEntityTypeBaseTypeChangedConvention: never;
|
|
2222
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IEntityTypeMemberIgnoredConvention: never;
|
|
2223
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IForeignKeyAddedConvention: never;
|
|
2224
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IForeignKeyOwnershipChangedConvention: never;
|
|
2225
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IForeignKeyPropertiesChangedConvention: never;
|
|
2226
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IForeignKeyRemovedConvention: never;
|
|
2227
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IForeignKeyUniquenessChangedConvention: never;
|
|
2228
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IKeyRemovedConvention: never;
|
|
2229
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IPropertyAddedConvention: never;
|
|
2230
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_ISkipNavigationForeignKeyChangedConvention: never;
|
|
2231
|
+
|
|
2232
|
+
readonly RelationalDependencies: RelationalConventionSetBuilderDependencies;
|
|
2233
|
+
DiscoverKeyProperties(entityType: IConventionEntityType): List<IConventionProperty> | undefined;
|
|
2234
|
+
DiscoverKeyProperties(entityType: IConventionEntityType): List<IConventionProperty> | undefined;
|
|
2070
2235
|
ProcessEntityTypeAdded(entityTypeBuilder: IConventionEntityTypeBuilder, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
2071
2236
|
ProcessEntityTypeAnnotationChanged(entityTypeBuilder: IConventionEntityTypeBuilder, name: string, annotation: IConventionAnnotation, oldAnnotation: IConventionAnnotation, context: IConventionContext_1<IConventionAnnotation>): void;
|
|
2072
2237
|
ProcessEntityTypeBaseTypeChanged(entityTypeBuilder: IConventionEntityTypeBuilder, newBaseType: IConventionEntityType, oldBaseType: IConventionEntityType, context: IConventionContext_1<IConventionEntityType>): void;
|
|
@@ -2076,6 +2241,8 @@ export interface RelationalKeyDiscoveryConvention$instance extends RelationalKey
|
|
|
2076
2241
|
ProcessForeignKeyPropertiesChanged(relationshipBuilder: IConventionForeignKeyBuilder, oldDependentProperties: IReadOnlyList<IConventionProperty>, oldPrincipalKey: IConventionKey, context: IConventionContext_1<IReadOnlyList<IConventionProperty>>): void;
|
|
2077
2242
|
ProcessForeignKeyRemoved(entityTypeBuilder: IConventionEntityTypeBuilder, foreignKey: IConventionForeignKey, context: IConventionContext_1<IConventionForeignKey>): void;
|
|
2078
2243
|
ProcessForeignKeyUniquenessChanged(relationshipBuilder: IConventionForeignKeyBuilder, context: IConventionContext_1<Nullable<System_Internal.Boolean>>): void;
|
|
2244
|
+
ProcessKeyProperties(keyProperties: IList<IConventionProperty>, entityType: IConventionEntityType): void;
|
|
2245
|
+
ProcessKeyProperties(keyProperties: IList<IConventionProperty>, entityType: IConventionEntityType): void;
|
|
2079
2246
|
ProcessKeyRemoved(entityTypeBuilder: IConventionEntityTypeBuilder, key: IConventionKey, context: IConventionContext_1<IConventionKey>): void;
|
|
2080
2247
|
ProcessPropertyAdded(propertyBuilder: IConventionPropertyBuilder, context: IConventionContext_1<IConventionPropertyBuilder>): void;
|
|
2081
2248
|
ProcessPropertyAdded(propertyBuilder: IConventionPropertyBuilder, context: IConventionContext_1<IConventionPropertyBuilder>): void;
|
|
@@ -2109,13 +2276,13 @@ export interface RelationalKeyDiscoveryConvention$instance extends IEntityTypeAn
|
|
|
2109
2276
|
export type RelationalKeyDiscoveryConvention = RelationalKeyDiscoveryConvention$instance & __RelationalKeyDiscoveryConvention$views;
|
|
2110
2277
|
|
|
2111
2278
|
|
|
2112
|
-
export
|
|
2113
|
-
|
|
2114
|
-
|
|
2115
|
-
|
|
2279
|
+
export interface RelationalMapToJsonConvention$instance extends IConvention {
|
|
2280
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
2281
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IEntityTypeAnnotationChangedConvention: never;
|
|
2282
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IModelFinalizingConvention: never;
|
|
2116
2283
|
|
|
2117
|
-
|
|
2118
|
-
|
|
2284
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
2285
|
+
readonly RelationalDependencies: RelationalConventionSetBuilderDependencies;
|
|
2119
2286
|
ProcessEntityTypeAnnotationChanged(entityTypeBuilder: IConventionEntityTypeBuilder, name: string, annotation: IConventionAnnotation, oldAnnotation: IConventionAnnotation, context: IConventionContext_1<IConventionAnnotation>): void;
|
|
2120
2287
|
ProcessModelFinalizing(modelBuilder: IConventionModelBuilder, context: IConventionContext_1<IConventionModelBuilder>): void;
|
|
2121
2288
|
}
|
|
@@ -2136,14 +2303,13 @@ export interface RelationalMapToJsonConvention$instance extends IEntityTypeAnnot
|
|
|
2136
2303
|
export type RelationalMapToJsonConvention = RelationalMapToJsonConvention$instance & __RelationalMapToJsonConvention$views;
|
|
2137
2304
|
|
|
2138
2305
|
|
|
2139
|
-
export
|
|
2140
|
-
|
|
2141
|
-
|
|
2142
|
-
}
|
|
2143
|
-
|
|
2306
|
+
export interface RelationalMaxIdentifierLengthConvention$instance extends IConvention {
|
|
2307
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
2308
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IModelInitializedConvention: never;
|
|
2144
2309
|
|
|
2145
|
-
|
|
2310
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
2146
2311
|
readonly MaxIdentifierLength: int;
|
|
2312
|
+
readonly RelationalDependencies: RelationalConventionSetBuilderDependencies;
|
|
2147
2313
|
ProcessModelInitialized(modelBuilder: IConventionModelBuilder, context: IConventionContext_1<IConventionModelBuilder>): void;
|
|
2148
2314
|
}
|
|
2149
2315
|
|
|
@@ -2162,12 +2328,11 @@ export interface RelationalMaxIdentifierLengthConvention$instance extends IModel
|
|
|
2162
2328
|
export type RelationalMaxIdentifierLengthConvention = RelationalMaxIdentifierLengthConvention$instance & __RelationalMaxIdentifierLengthConvention$views;
|
|
2163
2329
|
|
|
2164
2330
|
|
|
2165
|
-
export
|
|
2166
|
-
|
|
2167
|
-
|
|
2168
|
-
|
|
2331
|
+
export interface RelationalNavigationJsonPropertyNameAttributeConvention$instance extends NavigationAttributeConventionBase_1<JsonPropertyNameAttribute>, IConvention {
|
|
2332
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
2333
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_INavigationAddedConvention: never;
|
|
2169
2334
|
|
|
2170
|
-
|
|
2335
|
+
readonly RelationalDependencies: RelationalConventionSetBuilderDependencies;
|
|
2171
2336
|
ProcessNavigationAdded(navigationBuilder: IConventionNavigationBuilder, context: IConventionContext_1<IConventionNavigationBuilder>): void;
|
|
2172
2337
|
ProcessNavigationAdded(navigationBuilder: IConventionNavigationBuilder, attribute: JsonPropertyNameAttribute, context: IConventionContext_1<IConventionNavigationBuilder>): void;
|
|
2173
2338
|
}
|
|
@@ -2185,16 +2350,14 @@ export interface __RelationalNavigationJsonPropertyNameAttributeConvention$views
|
|
|
2185
2350
|
export type RelationalNavigationJsonPropertyNameAttributeConvention = RelationalNavigationJsonPropertyNameAttributeConvention$instance & __RelationalNavigationJsonPropertyNameAttributeConvention$views;
|
|
2186
2351
|
|
|
2187
2352
|
|
|
2188
|
-
export
|
|
2189
|
-
|
|
2190
|
-
|
|
2191
|
-
|
|
2192
|
-
protected ProcessPropertyAdded3(propertyBuilder: IConventionComplexPropertyBuilder, attribute: unknown, clrMember: MemberInfo, context: IConventionContext): void;
|
|
2193
|
-
}
|
|
2194
|
-
|
|
2353
|
+
export interface RelationalPropertyJsonPropertyNameAttributeConvention$instance extends PropertyAttributeConventionBase_1$instance<JsonPropertyNameAttribute>, IConvention {
|
|
2354
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
2355
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IPropertyAddedConvention: never;
|
|
2356
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IPropertyFieldChangedConvention: never;
|
|
2195
2357
|
|
|
2196
|
-
|
|
2358
|
+
readonly RelationalDependencies: RelationalConventionSetBuilderDependencies;
|
|
2197
2359
|
ProcessPropertyAdded(propertyBuilder: IConventionPropertyBuilder, context: IConventionContext_1<IConventionPropertyBuilder>): void;
|
|
2360
|
+
ProcessPropertyAdded(propertyBuilder: IConventionComplexPropertyBuilder, attribute: JsonPropertyNameAttribute, clrMember: MemberInfo, context: IConventionContext): void;
|
|
2198
2361
|
ProcessPropertyFieldChanged(propertyBuilder: IConventionPropertyBuilder, newFieldInfo: FieldInfo, oldFieldInfo: FieldInfo, context: IConventionContext_1<FieldInfo>): void;
|
|
2199
2362
|
}
|
|
2200
2363
|
|
|
@@ -2212,12 +2375,11 @@ export interface __RelationalPropertyJsonPropertyNameAttributeConvention$views {
|
|
|
2212
2375
|
export type RelationalPropertyJsonPropertyNameAttributeConvention = RelationalPropertyJsonPropertyNameAttributeConvention$instance & __RelationalPropertyJsonPropertyNameAttributeConvention$views;
|
|
2213
2376
|
|
|
2214
2377
|
|
|
2215
|
-
export
|
|
2216
|
-
|
|
2217
|
-
|
|
2218
|
-
|
|
2378
|
+
export interface RelationalQueryFilterRewritingConvention$instance extends QueryFilterRewritingConvention$instance, IConvention {
|
|
2379
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
2380
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IModelFinalizingConvention: never;
|
|
2219
2381
|
|
|
2220
|
-
|
|
2382
|
+
readonly RelationalDependencies: RelationalConventionSetBuilderDependencies;
|
|
2221
2383
|
ProcessModelFinalizing(modelBuilder: IConventionModelBuilder, context: IConventionContext_1<IConventionModelBuilder>): void;
|
|
2222
2384
|
}
|
|
2223
2385
|
|
|
@@ -2234,35 +2396,34 @@ export interface __RelationalQueryFilterRewritingConvention$views {
|
|
|
2234
2396
|
export type RelationalQueryFilterRewritingConvention = RelationalQueryFilterRewritingConvention$instance & __RelationalQueryFilterRewritingConvention$views;
|
|
2235
2397
|
|
|
2236
2398
|
|
|
2237
|
-
export
|
|
2238
|
-
|
|
2239
|
-
|
|
2240
|
-
|
|
2241
|
-
|
|
2242
|
-
|
|
2243
|
-
|
|
2244
|
-
|
|
2245
|
-
|
|
2246
|
-
|
|
2247
|
-
|
|
2248
|
-
|
|
2249
|
-
|
|
2250
|
-
|
|
2251
|
-
|
|
2252
|
-
|
|
2253
|
-
|
|
2254
|
-
|
|
2255
|
-
|
|
2256
|
-
|
|
2257
|
-
protected ProcessSequenceAnnotations(annotations: Dictionary<System_Internal.String, unknown>, sequence: ISequence, runtimeSequence: RuntimeSequence, runtime: boolean): void;
|
|
2258
|
-
protected ProcessStoredProcedureAnnotations(annotations: Dictionary<System_Internal.String, unknown>, storedProcedure: IStoredProcedure, runtimeStoredProcedure: RuntimeStoredProcedure, runtime: boolean): void;
|
|
2259
|
-
protected ProcessStoredProcedureParameterAnnotations(annotations: Dictionary<System_Internal.String, unknown>, parameter: IStoredProcedureParameter, runtimeParameter: RuntimeStoredProcedureParameter, runtime: boolean): void;
|
|
2260
|
-
protected ProcessStoredProcedureResultColumnAnnotations(annotations: Dictionary<System_Internal.String, unknown>, resultColumn: IStoredProcedureResultColumn, runtimeResultColumn: RuntimeStoredProcedureResultColumn, runtime: boolean): void;
|
|
2261
|
-
}
|
|
2262
|
-
|
|
2263
|
-
|
|
2264
|
-
export interface RelationalRuntimeModelConvention$instance extends RelationalRuntimeModelConvention$protected, RuntimeModelConvention$instance, IConvention {
|
|
2399
|
+
export interface RelationalRuntimeModelConvention$instance extends RuntimeModelConvention$instance, IConvention {
|
|
2400
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
2401
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IModelFinalizedConvention: never;
|
|
2402
|
+
|
|
2403
|
+
readonly RelationalDependencies: RelationalConventionSetBuilderDependencies;
|
|
2404
|
+
ProcessComplexTypeAnnotations(annotations: Dictionary<System_Internal.String, unknown>, complexType: IComplexType, runtimeComplexType: RuntimeComplexType, runtime: boolean): void;
|
|
2405
|
+
ProcessComplexTypeAnnotations(annotations: Dictionary<System_Internal.String, unknown>, complexType: IComplexType, runtimeComplexType: RuntimeComplexType, runtime: boolean): void;
|
|
2406
|
+
ProcessEntityTypeAnnotations(annotations: Dictionary<System_Internal.String, unknown>, entityType: IEntityType, runtimeEntityType: RuntimeEntityType, runtime: boolean): void;
|
|
2407
|
+
ProcessEntityTypeAnnotations(annotations: Dictionary<System_Internal.String, unknown>, entityType: IEntityType, runtimeEntityType: RuntimeEntityType, runtime: boolean): void;
|
|
2408
|
+
ProcessEntityTypeMappingFragmentAnnotations(annotations: Dictionary<System_Internal.String, unknown>, entityTypeMappingFragment: IEntityTypeMappingFragment, runtimeEntityTypeMappingFragment: RuntimeEntityTypeMappingFragment, runtime: boolean): void;
|
|
2409
|
+
ProcessForeignKeyAnnotations(annotations: Dictionary<System_Internal.String, unknown>, foreignKey: IForeignKey, runtimeForeignKey: RuntimeForeignKey, runtime: boolean): void;
|
|
2410
|
+
ProcessForeignKeyAnnotations(annotations: Dictionary<System_Internal.String, unknown>, foreignKey: IForeignKey, runtimeForeignKey: RuntimeForeignKey, runtime: boolean): void;
|
|
2411
|
+
ProcessFunctionAnnotations(annotations: Dictionary<System_Internal.String, unknown>, function_: IDbFunction, runtimeFunction: RuntimeDbFunction, runtime: boolean): void;
|
|
2412
|
+
ProcessFunctionParameterAnnotations(annotations: Dictionary<System_Internal.String, unknown>, parameter: IDbFunctionParameter, runtimeParameter: RuntimeDbFunctionParameter, runtime: boolean): void;
|
|
2413
|
+
ProcessIndexAnnotations(annotations: Dictionary<System_Internal.String, unknown>, index: IIndex, runtimeIndex: RuntimeIndex, runtime: boolean): void;
|
|
2414
|
+
ProcessIndexAnnotations(annotations: Dictionary<System_Internal.String, unknown>, index: IIndex, runtimeIndex: RuntimeIndex, runtime: boolean): void;
|
|
2415
|
+
ProcessKeyAnnotations(annotations: Dictionary<System_Internal.String, unknown>, key: IKey, runtimeKey: RuntimeKey, runtime: boolean): void;
|
|
2416
|
+
ProcessKeyAnnotations(annotations: Dictionary<System_Internal.String, unknown>, key: IKey, runtimeKey: RuntimeKey, runtime: boolean): void;
|
|
2417
|
+
ProcessModelAnnotations(annotations: Dictionary<System_Internal.String, unknown>, model: IModel, runtimeModel: RuntimeModel, runtime: boolean): void;
|
|
2418
|
+
ProcessModelAnnotations(annotations: Dictionary<System_Internal.String, unknown>, model: IModel, runtimeModel: RuntimeModel, runtime: boolean): void;
|
|
2265
2419
|
ProcessModelFinalized(model: IModel): IModel;
|
|
2420
|
+
ProcessPropertyAnnotations(annotations: Dictionary<System_Internal.String, unknown>, property: IProperty, runtimeProperty: RuntimeProperty, runtime: boolean): void;
|
|
2421
|
+
ProcessPropertyAnnotations(annotations: Dictionary<System_Internal.String, unknown>, property: IProperty, runtimeProperty: RuntimeProperty, runtime: boolean): void;
|
|
2422
|
+
ProcessPropertyOverridesAnnotations(annotations: Dictionary<System_Internal.String, unknown>, propertyOverrides: IRelationalPropertyOverrides, runtimePropertyOverrides: RuntimeRelationalPropertyOverrides, runtime: boolean): void;
|
|
2423
|
+
ProcessSequenceAnnotations(annotations: Dictionary<System_Internal.String, unknown>, sequence: ISequence, runtimeSequence: RuntimeSequence, runtime: boolean): void;
|
|
2424
|
+
ProcessStoredProcedureAnnotations(annotations: Dictionary<System_Internal.String, unknown>, storedProcedure: IStoredProcedure, runtimeStoredProcedure: RuntimeStoredProcedure, runtime: boolean): void;
|
|
2425
|
+
ProcessStoredProcedureParameterAnnotations(annotations: Dictionary<System_Internal.String, unknown>, parameter: IStoredProcedureParameter, runtimeParameter: RuntimeStoredProcedureParameter, runtime: boolean): void;
|
|
2426
|
+
ProcessStoredProcedureResultColumnAnnotations(annotations: Dictionary<System_Internal.String, unknown>, resultColumn: IStoredProcedureResultColumn, runtimeResultColumn: RuntimeStoredProcedureResultColumn, runtime: boolean): void;
|
|
2266
2427
|
}
|
|
2267
2428
|
|
|
2268
2429
|
|
|
@@ -2278,14 +2439,11 @@ export interface __RelationalRuntimeModelConvention$views {
|
|
|
2278
2439
|
export type RelationalRuntimeModelConvention = RelationalRuntimeModelConvention$instance & __RelationalRuntimeModelConvention$views;
|
|
2279
2440
|
|
|
2280
2441
|
|
|
2281
|
-
export
|
|
2282
|
-
|
|
2283
|
-
|
|
2284
|
-
protected abstract ProcessEntityTypeAdded2(entityTypeBuilder: IConventionEntityTypeBuilder, attribute: unknown, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
2285
|
-
}
|
|
2442
|
+
export interface RelationalTableAttributeConvention$instance extends TypeAttributeConventionBase_1$instance<TableAttribute>, IConvention {
|
|
2443
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
2444
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IEntityTypeAddedConvention: never;
|
|
2286
2445
|
|
|
2287
|
-
|
|
2288
|
-
export interface RelationalTableAttributeConvention$instance extends RelationalTableAttributeConvention$protected, TypeAttributeConventionBase_1$instance<TableAttribute>, IConvention {
|
|
2446
|
+
readonly RelationalDependencies: RelationalConventionSetBuilderDependencies;
|
|
2289
2447
|
ProcessEntityTypeAdded(entityTypeBuilder: IConventionEntityTypeBuilder, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
2290
2448
|
}
|
|
2291
2449
|
|
|
@@ -2302,14 +2460,11 @@ export interface __RelationalTableAttributeConvention$views {
|
|
|
2302
2460
|
export type RelationalTableAttributeConvention = RelationalTableAttributeConvention$instance & __RelationalTableAttributeConvention$views;
|
|
2303
2461
|
|
|
2304
2462
|
|
|
2305
|
-
export
|
|
2306
|
-
|
|
2307
|
-
|
|
2308
|
-
protected abstract ProcessEntityTypeAdded2(entityTypeBuilder: IConventionEntityTypeBuilder, attribute: unknown, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
2309
|
-
}
|
|
2310
|
-
|
|
2463
|
+
export interface RelationalTableCommentAttributeConvention$instance extends TypeAttributeConventionBase_1$instance<CommentAttribute>, IConvention {
|
|
2464
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
2465
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IEntityTypeAddedConvention: never;
|
|
2311
2466
|
|
|
2312
|
-
|
|
2467
|
+
readonly RelationalDependencies: RelationalConventionSetBuilderDependencies;
|
|
2313
2468
|
ProcessEntityTypeAdded(entityTypeBuilder: IConventionEntityTypeBuilder, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
2314
2469
|
}
|
|
2315
2470
|
|
|
@@ -2326,15 +2481,21 @@ export interface __RelationalTableCommentAttributeConvention$views {
|
|
|
2326
2481
|
export type RelationalTableCommentAttributeConvention = RelationalTableCommentAttributeConvention$instance & __RelationalTableCommentAttributeConvention$views;
|
|
2327
2482
|
|
|
2328
2483
|
|
|
2329
|
-
export
|
|
2330
|
-
|
|
2331
|
-
|
|
2332
|
-
|
|
2333
|
-
|
|
2334
|
-
|
|
2335
|
-
|
|
2336
|
-
|
|
2337
|
-
|
|
2484
|
+
export interface RelationalValueGenerationConvention$instance extends ValueGenerationConvention$instance, IConvention {
|
|
2485
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
2486
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IEntityTypeAnnotationChangedConvention: never;
|
|
2487
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IEntityTypeBaseTypeChangedConvention: never;
|
|
2488
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IEntityTypePrimaryKeyChangedConvention: never;
|
|
2489
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IForeignKeyAddedConvention: never;
|
|
2490
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IForeignKeyOwnershipChangedConvention: never;
|
|
2491
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IForeignKeyPropertiesChangedConvention: never;
|
|
2492
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IForeignKeyRemovedConvention: never;
|
|
2493
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IPropertyAnnotationChangedConvention: never;
|
|
2494
|
+
|
|
2495
|
+
readonly RelationalDependencies: RelationalConventionSetBuilderDependencies;
|
|
2496
|
+
GetValueGenerated(property: IConventionProperty): Nullable<ValueGenerated>;
|
|
2497
|
+
GetValueGenerated(property: IConventionProperty): Nullable<ValueGenerated>;
|
|
2498
|
+
MappingStrategyAllowsValueGeneration(property: IConventionProperty, mappingStrategy: string): boolean;
|
|
2338
2499
|
ProcessEntityTypeAnnotationChanged(entityTypeBuilder: IConventionEntityTypeBuilder, name: string, annotation: IConventionAnnotation, oldAnnotation: IConventionAnnotation, context: IConventionContext_1<IConventionAnnotation>): void;
|
|
2339
2500
|
ProcessEntityTypeBaseTypeChanged(entityTypeBuilder: IConventionEntityTypeBuilder, newBaseType: IConventionEntityType, oldBaseType: IConventionEntityType, context: IConventionContext_1<IConventionEntityType>): void;
|
|
2340
2501
|
ProcessEntityTypePrimaryKeyChanged(entityTypeBuilder: IConventionEntityTypeBuilder, newPrimaryKey: IConventionKey, previousPrimaryKey: IConventionKey, context: IConventionContext_1<IConventionKey>): void;
|
|
@@ -2367,16 +2528,21 @@ export interface RelationalValueGenerationConvention$instance extends IEntityTyp
|
|
|
2367
2528
|
export type RelationalValueGenerationConvention = RelationalValueGenerationConvention$instance & __RelationalValueGenerationConvention$views;
|
|
2368
2529
|
|
|
2369
2530
|
|
|
2370
|
-
export
|
|
2371
|
-
|
|
2372
|
-
|
|
2373
|
-
|
|
2374
|
-
|
|
2375
|
-
|
|
2376
|
-
|
|
2377
|
-
|
|
2378
|
-
|
|
2379
|
-
|
|
2531
|
+
export interface RelationshipDiscoveryConvention$instance extends IConvention {
|
|
2532
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
2533
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IEntityTypeAddedConvention: never;
|
|
2534
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IEntityTypeBaseTypeChangedConvention: never;
|
|
2535
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IEntityTypeMemberIgnoredConvention: never;
|
|
2536
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IForeignKeyNullNavigationSetConvention: never;
|
|
2537
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IForeignKeyOwnershipChangedConvention: never;
|
|
2538
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IForeignKeyRemovedConvention: never;
|
|
2539
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_INavigationAddedConvention: never;
|
|
2540
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_INavigationRemovedConvention: never;
|
|
2541
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_ITypeIgnoredConvention: never;
|
|
2542
|
+
|
|
2543
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
2544
|
+
readonly UseAttributes: boolean;
|
|
2545
|
+
DiscoverRelationships(entityTypeBuilder: IConventionEntityTypeBuilder, context: IConventionContext, discoverUnmatchedInverses?: boolean): void;
|
|
2380
2546
|
ProcessEntityTypeAdded(entityTypeBuilder: IConventionEntityTypeBuilder, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
2381
2547
|
ProcessEntityTypeBaseTypeChanged(entityTypeBuilder: IConventionEntityTypeBuilder, newBaseType: IConventionEntityType, oldBaseType: IConventionEntityType, context: IConventionContext_1<IConventionEntityType>): void;
|
|
2382
2548
|
ProcessEntityTypeMemberIgnored(entityTypeBuilder: IConventionEntityTypeBuilder, name: string, context: IConventionContext_1<System_Internal.String>): void;
|
|
@@ -2386,6 +2552,8 @@ export interface RelationshipDiscoveryConvention$instance extends RelationshipDi
|
|
|
2386
2552
|
ProcessNavigationAdded(navigationBuilder: IConventionNavigationBuilder, context: IConventionContext_1<IConventionNavigationBuilder>): void;
|
|
2387
2553
|
ProcessNavigationRemoved(sourceEntityTypeBuilder: IConventionEntityTypeBuilder, targetEntityTypeBuilder: IConventionEntityTypeBuilder, navigationName: string, memberInfo: MemberInfo, context: IConventionContext_1<System_Internal.String>): void;
|
|
2388
2554
|
ProcessTypeIgnored(modelBuilder: IConventionModelBuilder, name: string, type: Type, context: IConventionContext_1<System_Internal.String>): void;
|
|
2555
|
+
ShouldBeOwned(targetType: Type, model: IConventionModel): Nullable<System_Internal.Boolean>;
|
|
2556
|
+
TryGetTargetEntityTypeBuilder(entityTypeBuilder: IConventionEntityTypeBuilder, targetClrType: Type, navigationMemberInfo: MemberInfo, shouldBeOwned?: Nullable<System_Internal.Boolean>, shouldCreate?: boolean): IConventionEntityTypeBuilder | undefined;
|
|
2389
2557
|
}
|
|
2390
2558
|
|
|
2391
2559
|
|
|
@@ -2412,6 +2580,11 @@ export type RelationshipDiscoveryConvention = RelationshipDiscoveryConvention$in
|
|
|
2412
2580
|
|
|
2413
2581
|
|
|
2414
2582
|
export interface RequiredNavigationAttributeConvention$instance extends NavigationAttributeConventionBase_1<RequiredAttribute>, IConvention {
|
|
2583
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
2584
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IForeignKeyPrincipalEndChangedConvention: never;
|
|
2585
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_INavigationAddedConvention: never;
|
|
2586
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_ISkipNavigationAddedConvention: never;
|
|
2587
|
+
|
|
2415
2588
|
ProcessForeignKeyPrincipalEndChanged(relationshipBuilder: IConventionForeignKeyBuilder, context: IConventionContext_1<IConventionForeignKeyBuilder>): void;
|
|
2416
2589
|
ProcessForeignKeyPrincipalEndChanged(relationshipBuilder: IConventionForeignKeyBuilder, dependentToPrincipalAttributes: IEnumerable<RequiredAttribute>, principalToDependentAttributes: IEnumerable<RequiredAttribute>, context: IConventionContext_1<IConventionForeignKeyBuilder>): void;
|
|
2417
2590
|
ProcessNavigationAdded(navigationBuilder: IConventionNavigationBuilder, context: IConventionContext_1<IConventionNavigationBuilder>): void;
|
|
@@ -2435,18 +2608,18 @@ export interface __RequiredNavigationAttributeConvention$views {
|
|
|
2435
2608
|
export type RequiredNavigationAttributeConvention = RequiredNavigationAttributeConvention$instance & __RequiredNavigationAttributeConvention$views;
|
|
2436
2609
|
|
|
2437
2610
|
|
|
2438
|
-
export
|
|
2439
|
-
|
|
2440
|
-
|
|
2441
|
-
|
|
2442
|
-
|
|
2443
|
-
|
|
2444
|
-
|
|
2611
|
+
export interface RequiredPropertyAttributeConvention$instance extends PropertyAttributeConventionBase_1$instance<RequiredAttribute>, IConvention {
|
|
2612
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IComplexPropertyAddedConvention: never;
|
|
2613
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IComplexPropertyFieldChangedConvention: never;
|
|
2614
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
2615
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IPropertyAddedConvention: never;
|
|
2616
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IPropertyFieldChangedConvention: never;
|
|
2445
2617
|
|
|
2446
|
-
export interface RequiredPropertyAttributeConvention$instance extends RequiredPropertyAttributeConvention$protected, PropertyAttributeConventionBase_1$instance<RequiredAttribute>, IConvention {
|
|
2447
2618
|
ProcessComplexPropertyAdded(propertyBuilder: IConventionComplexPropertyBuilder, context: IConventionContext_1<IConventionComplexPropertyBuilder>): void;
|
|
2448
2619
|
ProcessComplexPropertyFieldChanged(propertyBuilder: IConventionComplexPropertyBuilder, newFieldInfo: FieldInfo, oldFieldInfo: FieldInfo, context: IConventionContext_1<FieldInfo>): void;
|
|
2620
|
+
ProcessPropertyAdded(propertyBuilder: IConventionPropertyBuilder, attribute: RequiredAttribute, clrMember: MemberInfo, context: IConventionContext): void;
|
|
2449
2621
|
ProcessPropertyAdded(propertyBuilder: IConventionPropertyBuilder, context: IConventionContext_1<IConventionPropertyBuilder>): void;
|
|
2622
|
+
ProcessPropertyAdded(propertyBuilder: IConventionComplexPropertyBuilder, attribute: RequiredAttribute, clrMember: MemberInfo, context: IConventionContext): void;
|
|
2450
2623
|
ProcessPropertyFieldChanged(propertyBuilder: IConventionPropertyBuilder, newFieldInfo: FieldInfo, oldFieldInfo: FieldInfo, context: IConventionContext_1<FieldInfo>): void;
|
|
2451
2624
|
}
|
|
2452
2625
|
|
|
@@ -2466,31 +2639,30 @@ export interface __RequiredPropertyAttributeConvention$views {
|
|
|
2466
2639
|
export type RequiredPropertyAttributeConvention = RequiredPropertyAttributeConvention$instance & __RequiredPropertyAttributeConvention$views;
|
|
2467
2640
|
|
|
2468
2641
|
|
|
2469
|
-
export
|
|
2470
|
-
|
|
2471
|
-
|
|
2472
|
-
|
|
2473
|
-
|
|
2474
|
-
|
|
2475
|
-
|
|
2476
|
-
|
|
2477
|
-
|
|
2478
|
-
|
|
2479
|
-
|
|
2480
|
-
|
|
2481
|
-
|
|
2482
|
-
|
|
2483
|
-
|
|
2484
|
-
|
|
2485
|
-
|
|
2486
|
-
protected ProcessSkipNavigationAnnotations(annotations: Dictionary<System_Internal.String, unknown>, skipNavigation: ISkipNavigation, runtimeSkipNavigation: RuntimeSkipNavigation, runtime: boolean): void;
|
|
2487
|
-
protected ProcessTriggerAnnotations(annotations: Dictionary<System_Internal.String, unknown>, trigger: ITrigger, runtimeTrigger: RuntimeTrigger, runtime: boolean): void;
|
|
2488
|
-
protected ProcessTypeMappingConfigurationAnnotations(annotations: Dictionary<System_Internal.String, unknown>, typeConfiguration: ITypeMappingConfiguration, runtimeTypeConfiguration: RuntimeTypeMappingConfiguration, runtime: boolean): void;
|
|
2489
|
-
}
|
|
2490
|
-
|
|
2491
|
-
|
|
2492
|
-
export interface RuntimeModelConvention$instance extends RuntimeModelConvention$protected, IConvention {
|
|
2642
|
+
export interface RuntimeModelConvention$instance extends IConvention {
|
|
2643
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
2644
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IModelFinalizedConvention: never;
|
|
2645
|
+
|
|
2646
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
2647
|
+
Create(model: IModel): RuntimeModel;
|
|
2648
|
+
GetForeignKey(foreignKey: IForeignKey, entityType: RuntimeEntityType): RuntimeForeignKey;
|
|
2649
|
+
GetIndex(index: IIndex, entityType: RuntimeEntityType): RuntimeIndex;
|
|
2650
|
+
GetKey(key: IKey, entityType: RuntimeEntityType): RuntimeKey;
|
|
2651
|
+
ProcessComplexPropertyAnnotations(annotations: Dictionary<System_Internal.String, unknown>, property: IComplexProperty, runtimeProperty: RuntimeComplexProperty, runtime: boolean): void;
|
|
2652
|
+
ProcessComplexTypeAnnotations(annotations: Dictionary<System_Internal.String, unknown>, complexType: IComplexType, runtimeComplexType: RuntimeComplexType, runtime: boolean): void;
|
|
2653
|
+
ProcessElementTypeAnnotations(annotations: Dictionary<System_Internal.String, unknown>, element: IElementType, runtimeElement: RuntimeElementType, runtime: boolean): void;
|
|
2654
|
+
ProcessEntityTypeAnnotations(annotations: Dictionary<System_Internal.String, unknown>, entityType: IEntityType, runtimeEntityType: RuntimeEntityType, runtime: boolean): void;
|
|
2655
|
+
ProcessForeignKeyAnnotations(annotations: Dictionary<System_Internal.String, unknown>, foreignKey: IForeignKey, runtimeForeignKey: RuntimeForeignKey, runtime: boolean): void;
|
|
2656
|
+
ProcessIndexAnnotations(annotations: Dictionary<System_Internal.String, unknown>, index: IIndex, runtimeIndex: RuntimeIndex, runtime: boolean): void;
|
|
2657
|
+
ProcessKeyAnnotations(annotations: Dictionary<System_Internal.String, unknown>, key: IKey, runtimeKey: RuntimeKey, runtime: boolean): void;
|
|
2658
|
+
ProcessModelAnnotations(annotations: Dictionary<System_Internal.String, unknown>, model: IModel, runtimeModel: RuntimeModel, runtime: boolean): void;
|
|
2493
2659
|
ProcessModelFinalized(model: IModel): IModel;
|
|
2660
|
+
ProcessNavigationAnnotations(annotations: Dictionary<System_Internal.String, unknown>, navigation: INavigation, runtimeNavigation: RuntimeNavigation, runtime: boolean): void;
|
|
2661
|
+
ProcessPropertyAnnotations(annotations: Dictionary<System_Internal.String, unknown>, property: IProperty, runtimeProperty: RuntimeProperty, runtime: boolean): void;
|
|
2662
|
+
ProcessServicePropertyAnnotations(annotations: Dictionary<System_Internal.String, unknown>, property: IServiceProperty, runtimeProperty: RuntimeServiceProperty, runtime: boolean): void;
|
|
2663
|
+
ProcessSkipNavigationAnnotations(annotations: Dictionary<System_Internal.String, unknown>, skipNavigation: ISkipNavigation, runtimeSkipNavigation: RuntimeSkipNavigation, runtime: boolean): void;
|
|
2664
|
+
ProcessTriggerAnnotations(annotations: Dictionary<System_Internal.String, unknown>, trigger: ITrigger, runtimeTrigger: RuntimeTrigger, runtime: boolean): void;
|
|
2665
|
+
ProcessTypeMappingConfigurationAnnotations(annotations: Dictionary<System_Internal.String, unknown>, typeConfiguration: ITypeMappingConfiguration, runtimeTypeConfiguration: RuntimeTypeMappingConfiguration, runtime: boolean): void;
|
|
2494
2666
|
}
|
|
2495
2667
|
|
|
2496
2668
|
|
|
@@ -2508,13 +2680,12 @@ export interface RuntimeModelConvention$instance extends IModelFinalizedConventi
|
|
|
2508
2680
|
export type RuntimeModelConvention = RuntimeModelConvention$instance & __RuntimeModelConvention$views;
|
|
2509
2681
|
|
|
2510
2682
|
|
|
2511
|
-
export
|
|
2512
|
-
|
|
2513
|
-
|
|
2514
|
-
}
|
|
2683
|
+
export interface SequenceUniquificationConvention$instance extends IConvention {
|
|
2684
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
2685
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IModelFinalizingConvention: never;
|
|
2515
2686
|
|
|
2516
|
-
|
|
2517
|
-
|
|
2687
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
2688
|
+
readonly RelationalDependencies: RelationalConventionSetBuilderDependencies;
|
|
2518
2689
|
ProcessModelFinalizing(modelBuilder: IConventionModelBuilder, context: IConventionContext_1<IConventionModelBuilder>): void;
|
|
2519
2690
|
}
|
|
2520
2691
|
|
|
@@ -2533,16 +2704,16 @@ export interface SequenceUniquificationConvention$instance extends IModelFinaliz
|
|
|
2533
2704
|
export type SequenceUniquificationConvention = SequenceUniquificationConvention$instance & __SequenceUniquificationConvention$views;
|
|
2534
2705
|
|
|
2535
2706
|
|
|
2536
|
-
export
|
|
2537
|
-
|
|
2538
|
-
|
|
2539
|
-
|
|
2540
|
-
protected GetMembers(structuralType: IConventionTypeBase): IEnumerable<MemberInfo>;
|
|
2541
|
-
protected IsCandidateServiceProperty(memberInfo: MemberInfo, structuralType: IConventionTypeBase, factory: IParameterBindingFactory): boolean;
|
|
2542
|
-
}
|
|
2543
|
-
|
|
2707
|
+
export interface ServicePropertyDiscoveryConvention$instance extends IConvention {
|
|
2708
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
2709
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IEntityTypeAddedConvention: never;
|
|
2710
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IEntityTypeBaseTypeChangedConvention: never;
|
|
2544
2711
|
|
|
2545
|
-
|
|
2712
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
2713
|
+
readonly UseAttributes: boolean;
|
|
2714
|
+
DiscoverServiceProperties(structuralTypeBuilder: IConventionTypeBaseBuilder, context: IConventionContext): void;
|
|
2715
|
+
GetMembers(structuralType: IConventionTypeBase): IEnumerable<MemberInfo>;
|
|
2716
|
+
IsCandidateServiceProperty(memberInfo: MemberInfo, structuralType: IConventionTypeBase, factory: IParameterBindingFactory): boolean;
|
|
2546
2717
|
ProcessEntityTypeAdded(entityTypeBuilder: IConventionEntityTypeBuilder, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
2547
2718
|
ProcessEntityTypeBaseTypeChanged(entityTypeBuilder: IConventionEntityTypeBuilder, newBaseType: IConventionEntityType, oldBaseType: IConventionEntityType, context: IConventionContext_1<IConventionEntityType>): void;
|
|
2548
2719
|
}
|
|
@@ -2563,25 +2734,24 @@ export interface ServicePropertyDiscoveryConvention$instance extends IEntityType
|
|
|
2563
2734
|
export type ServicePropertyDiscoveryConvention = ServicePropertyDiscoveryConvention$instance & __ServicePropertyDiscoveryConvention$views;
|
|
2564
2735
|
|
|
2565
2736
|
|
|
2566
|
-
export
|
|
2567
|
-
|
|
2568
|
-
|
|
2569
|
-
|
|
2570
|
-
|
|
2571
|
-
|
|
2572
|
-
|
|
2573
|
-
|
|
2574
|
-
|
|
2575
|
-
|
|
2576
|
-
|
|
2577
|
-
|
|
2578
|
-
|
|
2579
|
-
|
|
2580
|
-
|
|
2581
|
-
|
|
2582
|
-
|
|
2583
|
-
|
|
2584
|
-
export interface SharedTableConvention$instance extends SharedTableConvention$protected, IConvention {
|
|
2737
|
+
export interface SharedTableConvention$instance extends IConvention {
|
|
2738
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
2739
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IModelFinalizingConvention: never;
|
|
2740
|
+
|
|
2741
|
+
readonly CheckConstraintsUniqueAcrossTables: boolean;
|
|
2742
|
+
readonly DefaultConstraintsUniqueAcrossTables: boolean;
|
|
2743
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
2744
|
+
readonly ForeignKeysUniqueAcrossTables: boolean;
|
|
2745
|
+
readonly IndexesUniqueAcrossTables: boolean;
|
|
2746
|
+
readonly KeysUniqueAcrossTables: boolean;
|
|
2747
|
+
readonly RelationalDependencies: RelationalConventionSetBuilderDependencies;
|
|
2748
|
+
readonly TriggersUniqueAcrossTables: boolean;
|
|
2749
|
+
AreCompatible(key: IReadOnlyKey, duplicateKey: IReadOnlyKey, storeObject: StoreObjectIdentifier): boolean;
|
|
2750
|
+
AreCompatible(index: IReadOnlyIndex, duplicateIndex: IReadOnlyIndex, storeObject: StoreObjectIdentifier): boolean;
|
|
2751
|
+
AreCompatible(foreignKey: IReadOnlyForeignKey, duplicateForeignKey: IReadOnlyForeignKey, storeObject: StoreObjectIdentifier): boolean;
|
|
2752
|
+
AreCompatible(checkConstraint: IReadOnlyCheckConstraint, duplicateCheckConstraint: IReadOnlyCheckConstraint, storeObject: StoreObjectIdentifier): boolean;
|
|
2753
|
+
AreCompatible(trigger: IReadOnlyTrigger, duplicateTrigger: IReadOnlyTrigger, storeObject: StoreObjectIdentifier): boolean;
|
|
2754
|
+
AreCompatibleDefaultConstraints(property: IReadOnlyProperty, duplicateProperty: IReadOnlyProperty, storeObject: StoreObjectIdentifier): boolean;
|
|
2585
2755
|
ProcessModelFinalizing(modelBuilder: IConventionModelBuilder, context: IConventionContext_1<IConventionModelBuilder>): void;
|
|
2586
2756
|
}
|
|
2587
2757
|
|
|
@@ -2600,13 +2770,12 @@ export interface SharedTableConvention$instance extends IModelFinalizingConventi
|
|
|
2600
2770
|
export type SharedTableConvention = SharedTableConvention$instance & __SharedTableConvention$views;
|
|
2601
2771
|
|
|
2602
2772
|
|
|
2603
|
-
export
|
|
2604
|
-
|
|
2605
|
-
|
|
2606
|
-
}
|
|
2773
|
+
export interface StoredProcedureConvention$instance extends IConvention {
|
|
2774
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
2775
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IEntityTypeAddedConvention: never;
|
|
2607
2776
|
|
|
2608
|
-
|
|
2609
|
-
|
|
2777
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
2778
|
+
readonly RelationalDependencies: RelationalConventionSetBuilderDependencies;
|
|
2610
2779
|
ProcessEntityTypeAdded(entityTypeBuilder: IConventionEntityTypeBuilder, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
2611
2780
|
}
|
|
2612
2781
|
|
|
@@ -2625,16 +2794,16 @@ export interface StoredProcedureConvention$instance extends IEntityTypeAddedConv
|
|
|
2625
2794
|
export type StoredProcedureConvention = StoredProcedureConvention$instance & __StoredProcedureConvention$views;
|
|
2626
2795
|
|
|
2627
2796
|
|
|
2628
|
-
export
|
|
2629
|
-
|
|
2630
|
-
|
|
2631
|
-
|
|
2632
|
-
}
|
|
2633
|
-
|
|
2797
|
+
export interface StoreGenerationConvention$instance extends IConvention {
|
|
2798
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
2799
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IModelFinalizingConvention: never;
|
|
2800
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IPropertyAnnotationChangedConvention: never;
|
|
2634
2801
|
|
|
2635
|
-
|
|
2802
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
2803
|
+
readonly RelationalDependencies: RelationalConventionSetBuilderDependencies;
|
|
2636
2804
|
ProcessModelFinalizing(modelBuilder: IConventionModelBuilder, context: IConventionContext_1<IConventionModelBuilder>): void;
|
|
2637
2805
|
ProcessPropertyAnnotationChanged(propertyBuilder: IConventionPropertyBuilder, name: string, annotation: IConventionAnnotation, oldAnnotation: IConventionAnnotation, context: IConventionContext_1<IConventionAnnotation>): void;
|
|
2806
|
+
Validate(property: IConventionProperty, storeObject: StoreObjectIdentifier): void;
|
|
2638
2807
|
}
|
|
2639
2808
|
|
|
2640
2809
|
|
|
@@ -2653,15 +2822,13 @@ export interface StoreGenerationConvention$instance extends IModelFinalizingConv
|
|
|
2653
2822
|
export type StoreGenerationConvention = StoreGenerationConvention$instance & __StoreGenerationConvention$views;
|
|
2654
2823
|
|
|
2655
2824
|
|
|
2656
|
-
export
|
|
2657
|
-
|
|
2658
|
-
|
|
2659
|
-
|
|
2660
|
-
}
|
|
2661
|
-
|
|
2825
|
+
export interface StringLengthAttributeConvention$instance extends PropertyAttributeConventionBase_1$instance<StringLengthAttribute>, IConvention {
|
|
2826
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
2827
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IPropertyAddedConvention: never;
|
|
2828
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IPropertyFieldChangedConvention: never;
|
|
2662
2829
|
|
|
2663
|
-
export interface StringLengthAttributeConvention$instance extends StringLengthAttributeConvention$protected, PropertyAttributeConventionBase_1$instance<StringLengthAttribute>, IConvention {
|
|
2664
2830
|
ProcessPropertyAdded(propertyBuilder: IConventionPropertyBuilder, context: IConventionContext_1<IConventionPropertyBuilder>): void;
|
|
2831
|
+
ProcessPropertyAdded(propertyBuilder: IConventionComplexPropertyBuilder, attribute: StringLengthAttribute, clrMember: MemberInfo, context: IConventionContext): void;
|
|
2665
2832
|
ProcessPropertyFieldChanged(propertyBuilder: IConventionPropertyBuilder, newFieldInfo: FieldInfo, oldFieldInfo: FieldInfo, context: IConventionContext_1<FieldInfo>): void;
|
|
2666
2833
|
}
|
|
2667
2834
|
|
|
@@ -2679,13 +2846,15 @@ export interface __StringLengthAttributeConvention$views {
|
|
|
2679
2846
|
export type StringLengthAttributeConvention = StringLengthAttributeConvention$instance & __StringLengthAttributeConvention$views;
|
|
2680
2847
|
|
|
2681
2848
|
|
|
2682
|
-
export
|
|
2683
|
-
|
|
2684
|
-
|
|
2685
|
-
|
|
2686
|
-
|
|
2849
|
+
export interface TableNameFromDbSetConvention$instance extends IConvention {
|
|
2850
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
2851
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IEntityTypeAddedConvention: never;
|
|
2852
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IEntityTypeAnnotationChangedConvention: never;
|
|
2853
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IEntityTypeBaseTypeChangedConvention: never;
|
|
2854
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IModelFinalizingConvention: never;
|
|
2687
2855
|
|
|
2688
|
-
|
|
2856
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
2857
|
+
readonly RelationalDependencies: RelationalConventionSetBuilderDependencies;
|
|
2689
2858
|
ProcessEntityTypeAdded(entityTypeBuilder: IConventionEntityTypeBuilder, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
2690
2859
|
ProcessEntityTypeAnnotationChanged(entityTypeBuilder: IConventionEntityTypeBuilder, name: string, annotation: IConventionAnnotation, oldAnnotation: IConventionAnnotation, context: IConventionContext_1<IConventionAnnotation>): void;
|
|
2691
2860
|
ProcessEntityTypeBaseTypeChanged(entityTypeBuilder: IConventionEntityTypeBuilder, newBaseType: IConventionEntityType, oldBaseType: IConventionEntityType, context: IConventionContext_1<IConventionEntityType>): void;
|
|
@@ -2710,13 +2879,12 @@ export interface TableNameFromDbSetConvention$instance extends IEntityTypeAddedC
|
|
|
2710
2879
|
export type TableNameFromDbSetConvention = TableNameFromDbSetConvention$instance & __TableNameFromDbSetConvention$views;
|
|
2711
2880
|
|
|
2712
2881
|
|
|
2713
|
-
export
|
|
2714
|
-
|
|
2715
|
-
|
|
2716
|
-
}
|
|
2717
|
-
|
|
2882
|
+
export interface TableSharingConcurrencyTokenConvention$instance extends IConvention {
|
|
2883
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
2884
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IModelFinalizingConvention: never;
|
|
2718
2885
|
|
|
2719
|
-
|
|
2886
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
2887
|
+
readonly RelationalDependencies: RelationalConventionSetBuilderDependencies;
|
|
2720
2888
|
ProcessModelFinalizing(modelBuilder: IConventionModelBuilder, context: IConventionContext_1<IConventionModelBuilder>): void;
|
|
2721
2889
|
}
|
|
2722
2890
|
|
|
@@ -2737,13 +2905,12 @@ export interface TableSharingConcurrencyTokenConvention$instance extends IModelF
|
|
|
2737
2905
|
export type TableSharingConcurrencyTokenConvention = TableSharingConcurrencyTokenConvention$instance & __TableSharingConcurrencyTokenConvention$views;
|
|
2738
2906
|
|
|
2739
2907
|
|
|
2740
|
-
export
|
|
2741
|
-
|
|
2742
|
-
|
|
2743
|
-
}
|
|
2908
|
+
export interface TableValuedDbFunctionConvention$instance extends IConvention {
|
|
2909
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
2910
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IModelFinalizingConvention: never;
|
|
2744
2911
|
|
|
2745
|
-
|
|
2746
|
-
|
|
2912
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
2913
|
+
readonly RelationalDependencies: RelationalConventionSetBuilderDependencies;
|
|
2747
2914
|
ProcessModelFinalizing(modelBuilder: IConventionModelBuilder, context: IConventionContext_1<IConventionModelBuilder>): void;
|
|
2748
2915
|
}
|
|
2749
2916
|
|
|
@@ -2762,15 +2929,13 @@ export interface TableValuedDbFunctionConvention$instance extends IModelFinalizi
|
|
|
2762
2929
|
export type TableValuedDbFunctionConvention = TableValuedDbFunctionConvention$instance & __TableValuedDbFunctionConvention$views;
|
|
2763
2930
|
|
|
2764
2931
|
|
|
2765
|
-
export
|
|
2766
|
-
|
|
2767
|
-
|
|
2768
|
-
|
|
2769
|
-
}
|
|
2770
|
-
|
|
2932
|
+
export interface TimestampAttributeConvention$instance extends PropertyAttributeConventionBase_1$instance<TimestampAttribute>, IConvention {
|
|
2933
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
2934
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IPropertyAddedConvention: never;
|
|
2935
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IPropertyFieldChangedConvention: never;
|
|
2771
2936
|
|
|
2772
|
-
export interface TimestampAttributeConvention$instance extends TimestampAttributeConvention$protected, PropertyAttributeConventionBase_1$instance<TimestampAttribute>, IConvention {
|
|
2773
2937
|
ProcessPropertyAdded(propertyBuilder: IConventionPropertyBuilder, context: IConventionContext_1<IConventionPropertyBuilder>): void;
|
|
2938
|
+
ProcessPropertyAdded(propertyBuilder: IConventionComplexPropertyBuilder, attribute: TimestampAttribute, clrMember: MemberInfo, context: IConventionContext): void;
|
|
2774
2939
|
ProcessPropertyFieldChanged(propertyBuilder: IConventionPropertyBuilder, newFieldInfo: FieldInfo, oldFieldInfo: FieldInfo, context: IConventionContext_1<FieldInfo>): void;
|
|
2775
2940
|
}
|
|
2776
2941
|
|
|
@@ -2788,22 +2953,20 @@ export interface __TimestampAttributeConvention$views {
|
|
|
2788
2953
|
export type TimestampAttributeConvention = TimestampAttributeConvention$instance & __TimestampAttributeConvention$views;
|
|
2789
2954
|
|
|
2790
2955
|
|
|
2791
|
-
export
|
|
2792
|
-
|
|
2793
|
-
|
|
2794
|
-
protected abstract ProcessEntityTypeAdded(entityTypeBuilder: IConventionEntityTypeBuilder, attribute: TAttribute, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
2795
|
-
protected ReplaceWithEntityType(complexTypeBuilder: IConventionComplexTypeBuilder, shouldBeOwned?: Nullable<System_Internal.Boolean>): IConventionEntityTypeBuilder | undefined;
|
|
2796
|
-
}
|
|
2797
|
-
|
|
2956
|
+
export interface TypeAttributeConventionBase_1$instance<TAttribute extends Attribute> extends IConvention {
|
|
2957
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
2958
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IEntityTypeAddedConvention: never;
|
|
2798
2959
|
|
|
2799
|
-
|
|
2960
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
2800
2961
|
ProcessComplexPropertyAdded(propertyBuilder: IConventionComplexPropertyBuilder, context: IConventionContext_1<IConventionComplexPropertyBuilder>): void;
|
|
2962
|
+
ProcessComplexTypeAdded(complexTypeBuilder: IConventionComplexTypeBuilder, attribute: TAttribute, context: IConventionContext): void;
|
|
2801
2963
|
ProcessEntityTypeAdded(entityTypeBuilder: IConventionEntityTypeBuilder, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
2964
|
+
ProcessEntityTypeAdded(entityTypeBuilder: IConventionEntityTypeBuilder, attribute: TAttribute, context: IConventionContext_1<IConventionEntityTypeBuilder>): void;
|
|
2965
|
+
ReplaceWithEntityType(complexTypeBuilder: IConventionComplexTypeBuilder, shouldBeOwned?: Nullable<System_Internal.Boolean>): IConventionEntityTypeBuilder | undefined;
|
|
2802
2966
|
}
|
|
2803
2967
|
|
|
2804
2968
|
|
|
2805
|
-
export const TypeAttributeConventionBase_1: {
|
|
2806
|
-
new<TAttribute extends Attribute>(dependencies: ProviderConventionSetBuilderDependencies): TypeAttributeConventionBase_1<TAttribute>;
|
|
2969
|
+
export const TypeAttributeConventionBase_1: (abstract new<TAttribute extends Attribute>(dependencies: ProviderConventionSetBuilderDependencies) => TypeAttributeConventionBase_1<TAttribute>) & {
|
|
2807
2970
|
};
|
|
2808
2971
|
|
|
2809
2972
|
|
|
@@ -2814,15 +2977,13 @@ export interface __TypeAttributeConventionBase_1$views<TAttribute extends Attrib
|
|
|
2814
2977
|
export type TypeAttributeConventionBase_1<TAttribute extends Attribute> = TypeAttributeConventionBase_1$instance<TAttribute> & __TypeAttributeConventionBase_1$views<TAttribute>;
|
|
2815
2978
|
|
|
2816
2979
|
|
|
2817
|
-
export
|
|
2818
|
-
|
|
2819
|
-
|
|
2820
|
-
|
|
2821
|
-
}
|
|
2822
|
-
|
|
2980
|
+
export interface UnicodeAttributeConvention$instance extends PropertyAttributeConventionBase_1$instance<UnicodeAttribute>, IConvention {
|
|
2981
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
2982
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IPropertyAddedConvention: never;
|
|
2983
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IPropertyFieldChangedConvention: never;
|
|
2823
2984
|
|
|
2824
|
-
export interface UnicodeAttributeConvention$instance extends UnicodeAttributeConvention$protected, PropertyAttributeConventionBase_1$instance<UnicodeAttribute>, IConvention {
|
|
2825
2985
|
ProcessPropertyAdded(propertyBuilder: IConventionPropertyBuilder, context: IConventionContext_1<IConventionPropertyBuilder>): void;
|
|
2986
|
+
ProcessPropertyAdded(propertyBuilder: IConventionComplexPropertyBuilder, attribute: UnicodeAttribute, clrMember: MemberInfo, context: IConventionContext): void;
|
|
2826
2987
|
ProcessPropertyFieldChanged(propertyBuilder: IConventionPropertyBuilder, newFieldInfo: FieldInfo, oldFieldInfo: FieldInfo, context: IConventionContext_1<FieldInfo>): void;
|
|
2827
2988
|
}
|
|
2828
2989
|
|
|
@@ -2840,13 +3001,17 @@ export interface __UnicodeAttributeConvention$views {
|
|
|
2840
3001
|
export type UnicodeAttributeConvention = UnicodeAttributeConvention$instance & __UnicodeAttributeConvention$views;
|
|
2841
3002
|
|
|
2842
3003
|
|
|
2843
|
-
export
|
|
2844
|
-
|
|
2845
|
-
|
|
2846
|
-
|
|
2847
|
-
|
|
3004
|
+
export interface ValueGenerationConvention$instance extends IConvention {
|
|
3005
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConvention: never;
|
|
3006
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IEntityTypeBaseTypeChangedConvention: never;
|
|
3007
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IEntityTypePrimaryKeyChangedConvention: never;
|
|
3008
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IForeignKeyAddedConvention: never;
|
|
3009
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IForeignKeyOwnershipChangedConvention: never;
|
|
3010
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IForeignKeyPropertiesChangedConvention: never;
|
|
3011
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IForeignKeyRemovedConvention: never;
|
|
2848
3012
|
|
|
2849
|
-
|
|
3013
|
+
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
3014
|
+
GetValueGenerated(property: IConventionProperty): Nullable<ValueGenerated>;
|
|
2850
3015
|
ProcessEntityTypeBaseTypeChanged(entityTypeBuilder: IConventionEntityTypeBuilder, newBaseType: IConventionEntityType, oldBaseType: IConventionEntityType, context: IConventionContext_1<IConventionEntityType>): void;
|
|
2851
3016
|
ProcessEntityTypePrimaryKeyChanged(entityTypeBuilder: IConventionEntityTypeBuilder, newPrimaryKey: IConventionKey, previousPrimaryKey: IConventionKey, context: IConventionContext_1<IConventionKey>): void;
|
|
2852
3017
|
ProcessForeignKeyAdded(relationshipBuilder: IConventionForeignKeyBuilder, context: IConventionContext_1<IConventionForeignKeyBuilder>): void;
|