@tsonic/efcore 10.0.5 → 10.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Microsoft.EntityFrameworkCore/internal/index.d.ts +599 -529
- package/Microsoft.EntityFrameworkCore.ChangeTracking/internal/index.d.ts +193 -155
- package/Microsoft.EntityFrameworkCore.ChangeTracking.Internal/internal/index.d.ts +385 -291
- package/Microsoft.EntityFrameworkCore.Design/internal/index.d.ts +123 -103
- package/Microsoft.EntityFrameworkCore.Design.Internal/internal/index.d.ts +22 -10
- package/Microsoft.EntityFrameworkCore.Diagnostics/internal/index.d.ts +443 -261
- package/Microsoft.EntityFrameworkCore.Diagnostics.Internal/internal/index.d.ts +66 -42
- package/Microsoft.EntityFrameworkCore.Infrastructure/internal/index.d.ts +215 -145
- package/Microsoft.EntityFrameworkCore.Infrastructure.Internal/internal/index.d.ts +39 -29
- package/Microsoft.EntityFrameworkCore.Internal/internal/index.d.ts +140 -122
- package/Microsoft.EntityFrameworkCore.Metadata/internal/index.d.ts +1139 -1035
- package/Microsoft.EntityFrameworkCore.Metadata.Builders/internal/index.d.ts +510 -476
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions/internal/index.d.ts +363 -307
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure/internal/index.d.ts +13 -7
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Internal/internal/index.d.ts +25 -21
- package/Microsoft.EntityFrameworkCore.Metadata.Internal/internal/index.d.ts +1557 -1305
- package/Microsoft.EntityFrameworkCore.Migrations/internal/index.d.ts +91 -67
- package/Microsoft.EntityFrameworkCore.Migrations.Internal/internal/index.d.ts +78 -74
- package/Microsoft.EntityFrameworkCore.Migrations.Operations/internal/index.d.ts +271 -207
- package/Microsoft.EntityFrameworkCore.Migrations.Operations.Builders/internal/index.d.ts +22 -20
- package/Microsoft.EntityFrameworkCore.Query/internal/index.d.ts +389 -241
- package/Microsoft.EntityFrameworkCore.Query.Internal/internal/index.d.ts +354 -267
- package/Microsoft.EntityFrameworkCore.Query.SqlExpressions/internal/index.d.ts +188 -120
- package/Microsoft.EntityFrameworkCore.Scaffolding/internal/index.d.ts +21 -15
- package/Microsoft.EntityFrameworkCore.Scaffolding.Metadata/internal/index.d.ts +93 -73
- package/Microsoft.EntityFrameworkCore.Storage/internal/index.d.ts +357 -239
- package/Microsoft.EntityFrameworkCore.Storage.Internal/internal/index.d.ts +51 -35
- package/Microsoft.EntityFrameworkCore.Storage.Json/internal/index.d.ts +85 -25
- package/Microsoft.EntityFrameworkCore.Storage.ValueConversion/internal/index.d.ts +137 -43
- package/Microsoft.EntityFrameworkCore.Storage.ValueConversion.Internal/internal/index.d.ts +54 -32
- package/Microsoft.EntityFrameworkCore.Update/internal/index.d.ts +92 -68
- package/Microsoft.EntityFrameworkCore.Update.Internal/internal/index.d.ts +121 -91
- package/Microsoft.EntityFrameworkCore.ValueGeneration/internal/index.d.ts +53 -23
- package/Microsoft.EntityFrameworkCore.ValueGeneration.Internal/internal/index.d.ts +44 -6
- package/Microsoft.Extensions.DependencyInjection/internal/index.d.ts +13 -13
- package/System.Transactions/internal/index.d.ts +3 -3
- package/__internal/extensions/index.d.ts +1462 -1465
- package/package.json +4 -4
|
@@ -8,10 +8,10 @@ import type { sbyte, byte, short, ushort, int, uint, long, ulong, int128, uint12
|
|
|
8
8
|
// Import types from other namespaces
|
|
9
9
|
import type { MethodCallCodeFragment } from "../../Microsoft.EntityFrameworkCore.Design/internal/index.js";
|
|
10
10
|
import type { DatabaseModel } from "../../Microsoft.EntityFrameworkCore.Scaffolding.Metadata/internal/index.js";
|
|
11
|
-
import type {
|
|
12
|
-
import type { DbConnection } from "@tsonic/dotnet/System.Data.Common.js";
|
|
13
|
-
import * as System_Internal from "@tsonic/dotnet/System.js";
|
|
14
|
-
import type { Boolean as ClrBoolean,
|
|
11
|
+
import type { IEnumerable_1 } from "@tsonic/dotnet/System.Collections.Generic/internal/index.js";
|
|
12
|
+
import type { DbConnection } from "@tsonic/dotnet/System.Data.Common/internal/index.js";
|
|
13
|
+
import * as System_Internal from "@tsonic/dotnet/System/internal/index.js";
|
|
14
|
+
import type { Boolean as ClrBoolean, IEquatable_1, Int32, Object as ClrObject, String as ClrString } from "@tsonic/dotnet/System/internal/index.js";
|
|
15
15
|
|
|
16
16
|
export interface IDatabaseModelFactory$instance {
|
|
17
17
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Scaffolding_IDatabaseModelFactory: never;
|
|
@@ -44,6 +44,8 @@ export interface IProviderConfigurationCodeGenerator$instance {
|
|
|
44
44
|
export type IProviderConfigurationCodeGenerator = IProviderConfigurationCodeGenerator$instance;
|
|
45
45
|
|
|
46
46
|
export interface DatabaseModelFactory$instance {
|
|
47
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Scaffolding_DatabaseModelFactory: never;
|
|
48
|
+
|
|
47
49
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Scaffolding_IDatabaseModelFactory: never;
|
|
48
50
|
|
|
49
51
|
Create(connectionString: string, options: DatabaseModelFactoryOptions): DatabaseModel;
|
|
@@ -63,19 +65,23 @@ export type DatabaseModelFactory = DatabaseModelFactory$instance & __DatabaseMod
|
|
|
63
65
|
|
|
64
66
|
|
|
65
67
|
export interface DatabaseModelFactoryOptions$instance {
|
|
66
|
-
readonly
|
|
67
|
-
|
|
68
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Scaffolding_DatabaseModelFactoryOptions: never;
|
|
69
|
+
|
|
70
|
+
readonly Schemas: IEnumerable_1<System_Internal.String>;
|
|
71
|
+
readonly Tables: IEnumerable_1<System_Internal.String>;
|
|
68
72
|
}
|
|
69
73
|
|
|
70
74
|
|
|
71
75
|
export const DatabaseModelFactoryOptions: {
|
|
72
|
-
new(tables:
|
|
76
|
+
new(tables: IEnumerable_1<System_Internal.String>, schemas: IEnumerable_1<System_Internal.String>): DatabaseModelFactoryOptions;
|
|
73
77
|
};
|
|
74
78
|
|
|
75
79
|
|
|
76
80
|
export type DatabaseModelFactoryOptions = DatabaseModelFactoryOptions$instance;
|
|
77
81
|
|
|
78
|
-
export interface ProviderCodeGenerator$instance {
|
|
82
|
+
export interface ProviderCodeGenerator$instance extends IProviderConfigurationCodeGenerator$instance {
|
|
83
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Scaffolding_ProviderCodeGenerator: never;
|
|
84
|
+
|
|
79
85
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Scaffolding_IProviderConfigurationCodeGenerator: never;
|
|
80
86
|
|
|
81
87
|
readonly Dependencies: ProviderCodeGeneratorDependencies;
|
|
@@ -94,15 +100,15 @@ export interface __ProviderCodeGenerator$views {
|
|
|
94
100
|
As_IProviderConfigurationCodeGenerator(): IProviderConfigurationCodeGenerator$instance;
|
|
95
101
|
}
|
|
96
102
|
|
|
97
|
-
export interface ProviderCodeGenerator$instance extends IProviderConfigurationCodeGenerator$instance {}
|
|
98
|
-
|
|
99
103
|
export type ProviderCodeGenerator = ProviderCodeGenerator$instance & __ProviderCodeGenerator$views;
|
|
100
104
|
|
|
101
105
|
|
|
102
106
|
export interface ProviderCodeGeneratorDependencies$instance {
|
|
107
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Scaffolding_ProviderCodeGeneratorDependencies: never;
|
|
108
|
+
|
|
103
109
|
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
104
110
|
|
|
105
|
-
Plugins:
|
|
111
|
+
Plugins: IEnumerable_1<IProviderCodeGeneratorPlugin>;
|
|
106
112
|
_Clone_$(): ProviderCodeGeneratorDependencies;
|
|
107
113
|
Equals(obj: unknown): boolean;
|
|
108
114
|
Equals(other: ProviderCodeGeneratorDependencies): boolean;
|
|
@@ -112,13 +118,15 @@ export interface ProviderCodeGeneratorDependencies$instance {
|
|
|
112
118
|
|
|
113
119
|
|
|
114
120
|
export const ProviderCodeGeneratorDependencies: {
|
|
115
|
-
new(plugins:
|
|
121
|
+
new(plugins: IEnumerable_1<IProviderCodeGeneratorPlugin>): ProviderCodeGeneratorDependencies;
|
|
116
122
|
};
|
|
117
123
|
|
|
118
124
|
|
|
119
125
|
export type ProviderCodeGeneratorDependencies = ProviderCodeGeneratorDependencies$instance;
|
|
120
126
|
|
|
121
|
-
export interface ProviderCodeGeneratorPlugin$instance {
|
|
127
|
+
export interface ProviderCodeGeneratorPlugin$instance extends IProviderCodeGeneratorPlugin$instance {
|
|
128
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Scaffolding_ProviderCodeGeneratorPlugin: never;
|
|
129
|
+
|
|
122
130
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Scaffolding_IProviderCodeGeneratorPlugin: never;
|
|
123
131
|
|
|
124
132
|
GenerateContextOptions(): MethodCallCodeFragment | undefined;
|
|
@@ -135,8 +143,6 @@ export interface __ProviderCodeGeneratorPlugin$views {
|
|
|
135
143
|
As_IProviderCodeGeneratorPlugin(): IProviderCodeGeneratorPlugin$instance;
|
|
136
144
|
}
|
|
137
145
|
|
|
138
|
-
export interface ProviderCodeGeneratorPlugin$instance extends IProviderCodeGeneratorPlugin$instance {}
|
|
139
|
-
|
|
140
146
|
export type ProviderCodeGeneratorPlugin = ProviderCodeGeneratorPlugin$instance & __ProviderCodeGeneratorPlugin$views;
|
|
141
147
|
|
|
142
148
|
|
|
@@ -12,10 +12,12 @@ import type { Annotatable, Annotation, IAnnotatable, IAnnotation, IReadOnlyAnnot
|
|
|
12
12
|
import * as Microsoft_EntityFrameworkCore_Metadata_Internal from "../../Microsoft.EntityFrameworkCore.Metadata/internal/index.js";
|
|
13
13
|
import type { IMutableAnnotatable, ValueGenerated } from "../../Microsoft.EntityFrameworkCore.Metadata/internal/index.js";
|
|
14
14
|
import type { ReferentialAction } from "../../Microsoft.EntityFrameworkCore.Migrations/internal/index.js";
|
|
15
|
-
import type {
|
|
16
|
-
import type { Boolean as ClrBoolean,
|
|
15
|
+
import type { IEnumerable_1, IList_1, IReadOnlyDictionary_2 } from "@tsonic/dotnet/System.Collections.Generic/internal/index.js";
|
|
16
|
+
import type { Boolean as ClrBoolean, Func_2, Int32, Int64, Nullable_1, Object as ClrObject, String as ClrString, Void } from "@tsonic/dotnet/System/internal/index.js";
|
|
17
17
|
|
|
18
18
|
export interface DatabaseColumn$instance extends Annotatable {
|
|
19
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Scaffolding_Metadata_DatabaseColumn: never;
|
|
20
|
+
|
|
19
21
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
20
22
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
21
23
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
|
|
@@ -31,17 +33,17 @@ export interface DatabaseColumn$instance extends Annotatable {
|
|
|
31
33
|
get DefaultValueSql(): string | undefined;
|
|
32
34
|
set DefaultValueSql(value: string | undefined);
|
|
33
35
|
IsNullable: boolean;
|
|
34
|
-
IsStored:
|
|
36
|
+
IsStored: Nullable_1<System_Internal.Boolean>;
|
|
35
37
|
Name: string;
|
|
36
38
|
get StoreType(): string | undefined;
|
|
37
39
|
set StoreType(value: string | undefined);
|
|
38
40
|
Table: DatabaseTable;
|
|
39
|
-
ValueGenerated:
|
|
41
|
+
ValueGenerated: Nullable_1<ValueGenerated>;
|
|
40
42
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
41
43
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
42
44
|
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
43
|
-
AddAnnotations(annotations:
|
|
44
|
-
AddAnnotations(annotations:
|
|
45
|
+
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
46
|
+
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
45
47
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
46
48
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
47
49
|
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
@@ -51,9 +53,9 @@ export interface DatabaseColumn$instance extends Annotatable {
|
|
|
51
53
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
52
54
|
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
53
55
|
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
54
|
-
GetAnnotations():
|
|
55
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory:
|
|
56
|
-
GetRuntimeAnnotations():
|
|
56
|
+
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
57
|
+
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
58
|
+
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
57
59
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
58
60
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
59
61
|
SetAnnotation(name: string, value: unknown): void;
|
|
@@ -77,22 +79,24 @@ export type DatabaseColumn = DatabaseColumn$instance & __DatabaseColumn$views;
|
|
|
77
79
|
|
|
78
80
|
|
|
79
81
|
export interface DatabaseForeignKey$instance extends Annotatable {
|
|
82
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Scaffolding_Metadata_DatabaseForeignKey: never;
|
|
83
|
+
|
|
80
84
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
81
85
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
82
86
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
|
|
83
87
|
|
|
84
|
-
readonly Columns:
|
|
88
|
+
readonly Columns: IList_1<DatabaseColumn>;
|
|
85
89
|
get Name(): string | undefined;
|
|
86
90
|
set Name(value: string | undefined);
|
|
87
|
-
OnDelete:
|
|
88
|
-
readonly PrincipalColumns:
|
|
91
|
+
OnDelete: Nullable_1<ReferentialAction>;
|
|
92
|
+
readonly PrincipalColumns: IList_1<DatabaseColumn>;
|
|
89
93
|
PrincipalTable: DatabaseTable;
|
|
90
94
|
Table: DatabaseTable;
|
|
91
95
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
92
96
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
93
97
|
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
94
|
-
AddAnnotations(annotations:
|
|
95
|
-
AddAnnotations(annotations:
|
|
98
|
+
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
99
|
+
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
96
100
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
97
101
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
98
102
|
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
@@ -102,9 +106,9 @@ export interface DatabaseForeignKey$instance extends Annotatable {
|
|
|
102
106
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
103
107
|
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
104
108
|
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
105
|
-
GetAnnotations():
|
|
106
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory:
|
|
107
|
-
GetRuntimeAnnotations():
|
|
109
|
+
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
110
|
+
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
111
|
+
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
108
112
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
109
113
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
110
114
|
SetAnnotation(name: string, value: unknown): void;
|
|
@@ -128,14 +132,16 @@ export type DatabaseForeignKey = DatabaseForeignKey$instance & __DatabaseForeign
|
|
|
128
132
|
|
|
129
133
|
|
|
130
134
|
export interface DatabaseIndex$instance extends Annotatable {
|
|
135
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Scaffolding_Metadata_DatabaseIndex: never;
|
|
136
|
+
|
|
131
137
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
132
138
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
133
139
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
|
|
134
140
|
|
|
135
|
-
readonly Columns:
|
|
141
|
+
readonly Columns: IList_1<DatabaseColumn>;
|
|
136
142
|
get Filter(): string | undefined;
|
|
137
143
|
set Filter(value: string | undefined);
|
|
138
|
-
IsDescending:
|
|
144
|
+
IsDescending: IList_1<System_Internal.Boolean>;
|
|
139
145
|
IsUnique: boolean;
|
|
140
146
|
get Name(): string | undefined;
|
|
141
147
|
set Name(value: string | undefined);
|
|
@@ -144,8 +150,8 @@ export interface DatabaseIndex$instance extends Annotatable {
|
|
|
144
150
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
145
151
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
146
152
|
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
147
|
-
AddAnnotations(annotations:
|
|
148
|
-
AddAnnotations(annotations:
|
|
153
|
+
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
154
|
+
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
149
155
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
150
156
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
151
157
|
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
@@ -155,9 +161,9 @@ export interface DatabaseIndex$instance extends Annotatable {
|
|
|
155
161
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
156
162
|
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
157
163
|
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
158
|
-
GetAnnotations():
|
|
159
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory:
|
|
160
|
-
GetRuntimeAnnotations():
|
|
164
|
+
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
165
|
+
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
166
|
+
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
161
167
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
162
168
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
163
169
|
SetAnnotation(name: string, value: unknown): void;
|
|
@@ -181,6 +187,8 @@ export type DatabaseIndex = DatabaseIndex$instance & __DatabaseIndex$views;
|
|
|
181
187
|
|
|
182
188
|
|
|
183
189
|
export interface DatabaseModel$instance extends Annotatable {
|
|
190
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Scaffolding_Metadata_DatabaseModel: never;
|
|
191
|
+
|
|
184
192
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
185
193
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
186
194
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
|
|
@@ -191,13 +199,13 @@ export interface DatabaseModel$instance extends Annotatable {
|
|
|
191
199
|
set DatabaseName(value: string | undefined);
|
|
192
200
|
get DefaultSchema(): string | undefined;
|
|
193
201
|
set DefaultSchema(value: string | undefined);
|
|
194
|
-
readonly Sequences:
|
|
195
|
-
readonly Tables:
|
|
202
|
+
readonly Sequences: IList_1<DatabaseSequence>;
|
|
203
|
+
readonly Tables: IList_1<DatabaseTable>;
|
|
196
204
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
197
205
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
198
206
|
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
199
|
-
AddAnnotations(annotations:
|
|
200
|
-
AddAnnotations(annotations:
|
|
207
|
+
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
208
|
+
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
201
209
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
202
210
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
203
211
|
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
@@ -207,9 +215,9 @@ export interface DatabaseModel$instance extends Annotatable {
|
|
|
207
215
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
208
216
|
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
209
217
|
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
210
|
-
GetAnnotations():
|
|
211
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory:
|
|
212
|
-
GetRuntimeAnnotations():
|
|
218
|
+
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
219
|
+
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
220
|
+
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
213
221
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
214
222
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
215
223
|
SetAnnotation(name: string, value: unknown): void;
|
|
@@ -232,11 +240,13 @@ export type DatabaseModel = DatabaseModel$instance & __DatabaseModel$views;
|
|
|
232
240
|
|
|
233
241
|
|
|
234
242
|
export interface DatabasePrimaryKey$instance extends Annotatable {
|
|
243
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Scaffolding_Metadata_DatabasePrimaryKey: never;
|
|
244
|
+
|
|
235
245
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
236
246
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
237
247
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
|
|
238
248
|
|
|
239
|
-
readonly Columns:
|
|
249
|
+
readonly Columns: IList_1<DatabaseColumn>;
|
|
240
250
|
get Name(): string | undefined;
|
|
241
251
|
set Name(value: string | undefined);
|
|
242
252
|
get Table(): DatabaseTable | undefined;
|
|
@@ -244,8 +254,8 @@ export interface DatabasePrimaryKey$instance extends Annotatable {
|
|
|
244
254
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
245
255
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
246
256
|
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
247
|
-
AddAnnotations(annotations:
|
|
248
|
-
AddAnnotations(annotations:
|
|
257
|
+
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
258
|
+
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
249
259
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
250
260
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
251
261
|
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
@@ -255,9 +265,9 @@ export interface DatabasePrimaryKey$instance extends Annotatable {
|
|
|
255
265
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
256
266
|
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
257
267
|
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
258
|
-
GetAnnotations():
|
|
259
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory:
|
|
260
|
-
GetRuntimeAnnotations():
|
|
268
|
+
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
269
|
+
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
270
|
+
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
261
271
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
262
272
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
263
273
|
SetAnnotation(name: string, value: unknown): void;
|
|
@@ -281,26 +291,28 @@ export type DatabasePrimaryKey = DatabasePrimaryKey$instance & __DatabasePrimary
|
|
|
281
291
|
|
|
282
292
|
|
|
283
293
|
export interface DatabaseSequence$instance extends Annotatable {
|
|
294
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Scaffolding_Metadata_DatabaseSequence: never;
|
|
295
|
+
|
|
284
296
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
285
297
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
286
298
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
|
|
287
299
|
|
|
288
300
|
Database: DatabaseModel;
|
|
289
|
-
IncrementBy:
|
|
290
|
-
IsCyclic:
|
|
291
|
-
MaxValue:
|
|
292
|
-
MinValue:
|
|
301
|
+
IncrementBy: Nullable_1<System_Internal.Int32>;
|
|
302
|
+
IsCyclic: Nullable_1<System_Internal.Boolean>;
|
|
303
|
+
MaxValue: Nullable_1<System_Internal.Int64>;
|
|
304
|
+
MinValue: Nullable_1<System_Internal.Int64>;
|
|
293
305
|
Name: string;
|
|
294
306
|
get Schema(): string | undefined;
|
|
295
307
|
set Schema(value: string | undefined);
|
|
296
|
-
StartValue:
|
|
308
|
+
StartValue: Nullable_1<System_Internal.Int64>;
|
|
297
309
|
get StoreType(): string | undefined;
|
|
298
310
|
set StoreType(value: string | undefined);
|
|
299
311
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
300
312
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
301
313
|
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
302
|
-
AddAnnotations(annotations:
|
|
303
|
-
AddAnnotations(annotations:
|
|
314
|
+
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
315
|
+
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
304
316
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
305
317
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
306
318
|
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
@@ -310,9 +322,9 @@ export interface DatabaseSequence$instance extends Annotatable {
|
|
|
310
322
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
311
323
|
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
312
324
|
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
313
|
-
GetAnnotations():
|
|
314
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory:
|
|
315
|
-
GetRuntimeAnnotations():
|
|
325
|
+
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
326
|
+
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
327
|
+
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
316
328
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
317
329
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
318
330
|
SetAnnotation(name: string, value: unknown): void;
|
|
@@ -336,29 +348,31 @@ export type DatabaseSequence = DatabaseSequence$instance & __DatabaseSequence$vi
|
|
|
336
348
|
|
|
337
349
|
|
|
338
350
|
export interface DatabaseTable$instance extends Annotatable {
|
|
351
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Scaffolding_Metadata_DatabaseTable: never;
|
|
352
|
+
|
|
339
353
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
340
354
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
341
355
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
|
|
342
356
|
|
|
343
|
-
readonly Columns:
|
|
357
|
+
readonly Columns: IList_1<DatabaseColumn>;
|
|
344
358
|
get Comment(): string | undefined;
|
|
345
359
|
set Comment(value: string | undefined);
|
|
346
360
|
get Database(): DatabaseModel | undefined;
|
|
347
361
|
set Database(value: DatabaseModel | undefined);
|
|
348
|
-
readonly ForeignKeys:
|
|
349
|
-
readonly Indexes:
|
|
362
|
+
readonly ForeignKeys: IList_1<DatabaseForeignKey>;
|
|
363
|
+
readonly Indexes: IList_1<DatabaseIndex>;
|
|
350
364
|
Name: string;
|
|
351
365
|
get PrimaryKey(): DatabasePrimaryKey | undefined;
|
|
352
366
|
set PrimaryKey(value: DatabasePrimaryKey | undefined);
|
|
353
367
|
get Schema(): string | undefined;
|
|
354
368
|
set Schema(value: string | undefined);
|
|
355
|
-
readonly Triggers:
|
|
356
|
-
readonly UniqueConstraints:
|
|
369
|
+
readonly Triggers: IList_1<DatabaseTrigger>;
|
|
370
|
+
readonly UniqueConstraints: IList_1<DatabaseUniqueConstraint>;
|
|
357
371
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
358
372
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
359
373
|
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
360
|
-
AddAnnotations(annotations:
|
|
361
|
-
AddAnnotations(annotations:
|
|
374
|
+
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
375
|
+
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
362
376
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
363
377
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
364
378
|
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
@@ -368,9 +382,9 @@ export interface DatabaseTable$instance extends Annotatable {
|
|
|
368
382
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
369
383
|
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
370
384
|
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
371
|
-
GetAnnotations():
|
|
372
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory:
|
|
373
|
-
GetRuntimeAnnotations():
|
|
385
|
+
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
386
|
+
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
387
|
+
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
374
388
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
375
389
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
376
390
|
SetAnnotation(name: string, value: unknown): void;
|
|
@@ -394,6 +408,8 @@ export type DatabaseTable = DatabaseTable$instance & __DatabaseTable$views;
|
|
|
394
408
|
|
|
395
409
|
|
|
396
410
|
export interface DatabaseTrigger$instance extends Annotatable {
|
|
411
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Scaffolding_Metadata_DatabaseTrigger: never;
|
|
412
|
+
|
|
397
413
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
398
414
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
399
415
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
|
|
@@ -402,8 +418,8 @@ export interface DatabaseTrigger$instance extends Annotatable {
|
|
|
402
418
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
403
419
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
404
420
|
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
405
|
-
AddAnnotations(annotations:
|
|
406
|
-
AddAnnotations(annotations:
|
|
421
|
+
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
422
|
+
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
407
423
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
408
424
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
409
425
|
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
@@ -413,9 +429,9 @@ export interface DatabaseTrigger$instance extends Annotatable {
|
|
|
413
429
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
414
430
|
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
415
431
|
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
416
|
-
GetAnnotations():
|
|
417
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory:
|
|
418
|
-
GetRuntimeAnnotations():
|
|
432
|
+
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
433
|
+
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
434
|
+
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
419
435
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
420
436
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
421
437
|
SetAnnotation(name: string, value: unknown): void;
|
|
@@ -438,19 +454,21 @@ export type DatabaseTrigger = DatabaseTrigger$instance & __DatabaseTrigger$views
|
|
|
438
454
|
|
|
439
455
|
|
|
440
456
|
export interface DatabaseUniqueConstraint$instance extends Annotatable {
|
|
457
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Scaffolding_Metadata_DatabaseUniqueConstraint: never;
|
|
458
|
+
|
|
441
459
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
442
460
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
443
461
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
|
|
444
462
|
|
|
445
|
-
readonly Columns:
|
|
463
|
+
readonly Columns: IList_1<DatabaseColumn>;
|
|
446
464
|
get Name(): string | undefined;
|
|
447
465
|
set Name(value: string | undefined);
|
|
448
466
|
Table: DatabaseTable;
|
|
449
467
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
450
468
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
451
469
|
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
452
|
-
AddAnnotations(annotations:
|
|
453
|
-
AddAnnotations(annotations:
|
|
470
|
+
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
471
|
+
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
454
472
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
455
473
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
456
474
|
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
@@ -460,9 +478,9 @@ export interface DatabaseUniqueConstraint$instance extends Annotatable {
|
|
|
460
478
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
461
479
|
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
462
480
|
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
463
|
-
GetAnnotations():
|
|
464
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory:
|
|
465
|
-
GetRuntimeAnnotations():
|
|
481
|
+
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
482
|
+
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
483
|
+
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
466
484
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
467
485
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
468
486
|
SetAnnotation(name: string, value: unknown): void;
|
|
@@ -486,6 +504,8 @@ export type DatabaseUniqueConstraint = DatabaseUniqueConstraint$instance & __Dat
|
|
|
486
504
|
|
|
487
505
|
|
|
488
506
|
export interface DatabaseView$instance extends DatabaseTable$instance {
|
|
507
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Scaffolding_Metadata_DatabaseView: never;
|
|
508
|
+
|
|
489
509
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
490
510
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
491
511
|
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
|
|
@@ -493,8 +513,8 @@ export interface DatabaseView$instance extends DatabaseTable$instance {
|
|
|
493
513
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
494
514
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
495
515
|
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
496
|
-
AddAnnotations(annotations:
|
|
497
|
-
AddAnnotations(annotations:
|
|
516
|
+
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
517
|
+
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
498
518
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
499
519
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
500
520
|
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
@@ -504,9 +524,9 @@ export interface DatabaseView$instance extends DatabaseTable$instance {
|
|
|
504
524
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
505
525
|
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
506
526
|
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
507
|
-
GetAnnotations():
|
|
508
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory:
|
|
509
|
-
GetRuntimeAnnotations():
|
|
527
|
+
GetAnnotations(): IEnumerable_1<IAnnotation>;
|
|
528
|
+
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory: Func_2<TArg, TValue>, factoryArgument: TArg): TValue;
|
|
529
|
+
GetRuntimeAnnotations(): IEnumerable_1<IAnnotation>;
|
|
510
530
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
511
531
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
512
532
|
SetAnnotation(name: string, value: unknown): void;
|