@tsonic/efcore 10.0.3 → 10.0.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Microsoft.EntityFrameworkCore/internal/index.d.ts +634 -529
- package/Microsoft.EntityFrameworkCore.ChangeTracking/internal/index.d.ts +299 -154
- package/Microsoft.EntityFrameworkCore.ChangeTracking.Internal/internal/index.d.ts +591 -291
- package/Microsoft.EntityFrameworkCore.Design/internal/index.d.ts +139 -103
- package/Microsoft.EntityFrameworkCore.Design.Internal/internal/index.d.ts +36 -10
- package/Microsoft.EntityFrameworkCore.Diagnostics/internal/index.d.ts +535 -261
- package/Microsoft.EntityFrameworkCore.Diagnostics.Internal/internal/index.d.ts +105 -42
- package/Microsoft.EntityFrameworkCore.Infrastructure/internal/index.d.ts +330 -145
- package/Microsoft.EntityFrameworkCore.Infrastructure.Internal/internal/index.d.ts +62 -30
- package/Microsoft.EntityFrameworkCore.Internal/internal/index.d.ts +235 -121
- package/Microsoft.EntityFrameworkCore.Metadata/internal/index.d.ts +1624 -1035
- package/Microsoft.EntityFrameworkCore.Metadata.Builders/internal/index.d.ts +718 -476
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions/internal/index.d.ts +860 -307
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure/internal/index.d.ts +27 -7
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Internal/internal/index.d.ts +35 -21
- package/Microsoft.EntityFrameworkCore.Metadata.Internal/internal/index.d.ts +2232 -1303
- package/Microsoft.EntityFrameworkCore.Migrations/internal/index.d.ts +123 -67
- package/Microsoft.EntityFrameworkCore.Migrations.Internal/internal/index.d.ts +88 -74
- package/Microsoft.EntityFrameworkCore.Migrations.Operations/internal/index.d.ts +445 -207
- package/Microsoft.EntityFrameworkCore.Migrations.Operations.Builders/internal/index.d.ts +28 -20
- package/Microsoft.EntityFrameworkCore.Query/internal/index.d.ts +601 -240
- package/Microsoft.EntityFrameworkCore.Query.Internal/internal/index.d.ts +505 -257
- package/Microsoft.EntityFrameworkCore.Query.SqlExpressions/internal/index.d.ts +318 -120
- package/Microsoft.EntityFrameworkCore.Scaffolding/internal/index.d.ts +35 -15
- package/Microsoft.EntityFrameworkCore.Scaffolding.Metadata/internal/index.d.ts +133 -73
- package/Microsoft.EntityFrameworkCore.Storage/internal/index.d.ts +502 -239
- package/Microsoft.EntityFrameworkCore.Storage.Internal/internal/index.d.ts +80 -35
- package/Microsoft.EntityFrameworkCore.Storage.Internal.d.ts +3 -0
- package/Microsoft.EntityFrameworkCore.Storage.Json/internal/index.d.ts +102 -25
- package/Microsoft.EntityFrameworkCore.Storage.ValueConversion/internal/index.d.ts +143 -43
- package/Microsoft.EntityFrameworkCore.Storage.ValueConversion.Internal/internal/index.d.ts +54 -32
- package/Microsoft.EntityFrameworkCore.Update/internal/index.d.ts +136 -68
- package/Microsoft.EntityFrameworkCore.Update.Internal/internal/index.d.ts +198 -91
- package/Microsoft.EntityFrameworkCore.ValueGeneration/internal/index.d.ts +69 -23
- package/Microsoft.EntityFrameworkCore.ValueGeneration.Internal/internal/index.d.ts +44 -6
- package/Microsoft.Extensions.DependencyInjection/internal/index.d.ts +13 -13
- package/Microsoft.Extensions.DependencyInjection.d.ts +3 -0
- package/System.Transactions/internal/index.d.ts +3 -3
- package/__internal/extensions/index.d.ts +1553 -1291
- package/package.json +4 -4
|
@@ -8,12 +8,14 @@ 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
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Scaffolding_IDatabaseModelFactory: never;
|
|
18
|
+
|
|
17
19
|
Create(connection: DbConnection, options: DatabaseModelFactoryOptions): DatabaseModel;
|
|
18
20
|
Create(connectionString: string, options: DatabaseModelFactoryOptions): DatabaseModel;
|
|
19
21
|
}
|
|
@@ -22,6 +24,8 @@ export interface IDatabaseModelFactory$instance {
|
|
|
22
24
|
export type IDatabaseModelFactory = IDatabaseModelFactory$instance;
|
|
23
25
|
|
|
24
26
|
export interface IProviderCodeGeneratorPlugin$instance {
|
|
27
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Scaffolding_IProviderCodeGeneratorPlugin: never;
|
|
28
|
+
|
|
25
29
|
GenerateProviderOptions(): MethodCallCodeFragment | undefined;
|
|
26
30
|
}
|
|
27
31
|
|
|
@@ -29,6 +33,8 @@ export interface IProviderCodeGeneratorPlugin$instance {
|
|
|
29
33
|
export type IProviderCodeGeneratorPlugin = IProviderCodeGeneratorPlugin$instance;
|
|
30
34
|
|
|
31
35
|
export interface IProviderConfigurationCodeGenerator$instance {
|
|
36
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Scaffolding_IProviderConfigurationCodeGenerator: never;
|
|
37
|
+
|
|
32
38
|
GenerateProviderOptions(): MethodCallCodeFragment | undefined;
|
|
33
39
|
GenerateUseProvider(connectionString: string, providerOptions: MethodCallCodeFragment): MethodCallCodeFragment;
|
|
34
40
|
GenerateUseProvider(connectionString: string): MethodCallCodeFragment;
|
|
@@ -38,6 +44,10 @@ export interface IProviderConfigurationCodeGenerator$instance {
|
|
|
38
44
|
export type IProviderConfigurationCodeGenerator = IProviderConfigurationCodeGenerator$instance;
|
|
39
45
|
|
|
40
46
|
export interface DatabaseModelFactory$instance {
|
|
47
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Scaffolding_DatabaseModelFactory: never;
|
|
48
|
+
|
|
49
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Scaffolding_IDatabaseModelFactory: never;
|
|
50
|
+
|
|
41
51
|
Create(connectionString: string, options: DatabaseModelFactoryOptions): DatabaseModel;
|
|
42
52
|
Create(connection: DbConnection, options: DatabaseModelFactoryOptions): DatabaseModel;
|
|
43
53
|
}
|
|
@@ -55,19 +65,25 @@ export type DatabaseModelFactory = DatabaseModelFactory$instance & __DatabaseMod
|
|
|
55
65
|
|
|
56
66
|
|
|
57
67
|
export interface DatabaseModelFactoryOptions$instance {
|
|
58
|
-
readonly
|
|
59
|
-
|
|
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>;
|
|
60
72
|
}
|
|
61
73
|
|
|
62
74
|
|
|
63
75
|
export const DatabaseModelFactoryOptions: {
|
|
64
|
-
new(tables:
|
|
76
|
+
new(tables: IEnumerable_1<System_Internal.String>, schemas: IEnumerable_1<System_Internal.String>): DatabaseModelFactoryOptions;
|
|
65
77
|
};
|
|
66
78
|
|
|
67
79
|
|
|
68
80
|
export type DatabaseModelFactoryOptions = DatabaseModelFactoryOptions$instance;
|
|
69
81
|
|
|
70
|
-
export interface ProviderCodeGenerator$instance {
|
|
82
|
+
export interface ProviderCodeGenerator$instance extends IProviderConfigurationCodeGenerator$instance {
|
|
83
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Scaffolding_ProviderCodeGenerator: never;
|
|
84
|
+
|
|
85
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Scaffolding_IProviderConfigurationCodeGenerator: never;
|
|
86
|
+
|
|
71
87
|
readonly Dependencies: ProviderCodeGeneratorDependencies;
|
|
72
88
|
GenerateContextOptions(): MethodCallCodeFragment | undefined;
|
|
73
89
|
GenerateProviderOptions(): MethodCallCodeFragment | undefined;
|
|
@@ -84,13 +100,15 @@ export interface __ProviderCodeGenerator$views {
|
|
|
84
100
|
As_IProviderConfigurationCodeGenerator(): IProviderConfigurationCodeGenerator$instance;
|
|
85
101
|
}
|
|
86
102
|
|
|
87
|
-
export interface ProviderCodeGenerator$instance extends IProviderConfigurationCodeGenerator$instance {}
|
|
88
|
-
|
|
89
103
|
export type ProviderCodeGenerator = ProviderCodeGenerator$instance & __ProviderCodeGenerator$views;
|
|
90
104
|
|
|
91
105
|
|
|
92
106
|
export interface ProviderCodeGeneratorDependencies$instance {
|
|
93
|
-
|
|
107
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Scaffolding_ProviderCodeGeneratorDependencies: never;
|
|
108
|
+
|
|
109
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
110
|
+
|
|
111
|
+
Plugins: IEnumerable_1<IProviderCodeGeneratorPlugin>;
|
|
94
112
|
_Clone_$(): ProviderCodeGeneratorDependencies;
|
|
95
113
|
Equals(obj: unknown): boolean;
|
|
96
114
|
Equals(other: ProviderCodeGeneratorDependencies): boolean;
|
|
@@ -100,13 +118,17 @@ export interface ProviderCodeGeneratorDependencies$instance {
|
|
|
100
118
|
|
|
101
119
|
|
|
102
120
|
export const ProviderCodeGeneratorDependencies: {
|
|
103
|
-
new(plugins:
|
|
121
|
+
new(plugins: IEnumerable_1<IProviderCodeGeneratorPlugin>): ProviderCodeGeneratorDependencies;
|
|
104
122
|
};
|
|
105
123
|
|
|
106
124
|
|
|
107
125
|
export type ProviderCodeGeneratorDependencies = ProviderCodeGeneratorDependencies$instance;
|
|
108
126
|
|
|
109
|
-
export interface ProviderCodeGeneratorPlugin$instance {
|
|
127
|
+
export interface ProviderCodeGeneratorPlugin$instance extends IProviderCodeGeneratorPlugin$instance {
|
|
128
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Scaffolding_ProviderCodeGeneratorPlugin: never;
|
|
129
|
+
|
|
130
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Scaffolding_IProviderCodeGeneratorPlugin: never;
|
|
131
|
+
|
|
110
132
|
GenerateContextOptions(): MethodCallCodeFragment | undefined;
|
|
111
133
|
GenerateProviderOptions(): MethodCallCodeFragment | undefined;
|
|
112
134
|
}
|
|
@@ -121,8 +143,6 @@ export interface __ProviderCodeGeneratorPlugin$views {
|
|
|
121
143
|
As_IProviderCodeGeneratorPlugin(): IProviderCodeGeneratorPlugin$instance;
|
|
122
144
|
}
|
|
123
145
|
|
|
124
|
-
export interface ProviderCodeGeneratorPlugin$instance extends IProviderCodeGeneratorPlugin$instance {}
|
|
125
|
-
|
|
126
146
|
export type ProviderCodeGeneratorPlugin = ProviderCodeGeneratorPlugin$instance & __ProviderCodeGeneratorPlugin$views;
|
|
127
147
|
|
|
128
148
|
|
|
@@ -12,10 +12,16 @@ 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
|
+
|
|
21
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
22
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
23
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
|
|
24
|
+
|
|
19
25
|
get Collation(): string | undefined;
|
|
20
26
|
set Collation(value: string | undefined);
|
|
21
27
|
get Comment(): string | undefined;
|
|
@@ -27,17 +33,17 @@ export interface DatabaseColumn$instance extends Annotatable {
|
|
|
27
33
|
get DefaultValueSql(): string | undefined;
|
|
28
34
|
set DefaultValueSql(value: string | undefined);
|
|
29
35
|
IsNullable: boolean;
|
|
30
|
-
IsStored:
|
|
36
|
+
IsStored: Nullable_1<System_Internal.Boolean>;
|
|
31
37
|
Name: string;
|
|
32
38
|
get StoreType(): string | undefined;
|
|
33
39
|
set StoreType(value: string | undefined);
|
|
34
40
|
Table: DatabaseTable;
|
|
35
|
-
ValueGenerated:
|
|
41
|
+
ValueGenerated: Nullable_1<ValueGenerated>;
|
|
36
42
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
37
43
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
38
44
|
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
39
|
-
AddAnnotations(annotations:
|
|
40
|
-
AddAnnotations(annotations:
|
|
45
|
+
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
46
|
+
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
41
47
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
42
48
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
43
49
|
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
@@ -47,9 +53,9 @@ export interface DatabaseColumn$instance extends Annotatable {
|
|
|
47
53
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
48
54
|
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
49
55
|
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
50
|
-
GetAnnotations():
|
|
51
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory:
|
|
52
|
-
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>;
|
|
53
59
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
54
60
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
55
61
|
SetAnnotation(name: string, value: unknown): void;
|
|
@@ -73,18 +79,24 @@ export type DatabaseColumn = DatabaseColumn$instance & __DatabaseColumn$views;
|
|
|
73
79
|
|
|
74
80
|
|
|
75
81
|
export interface DatabaseForeignKey$instance extends Annotatable {
|
|
76
|
-
readonly
|
|
82
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Scaffolding_Metadata_DatabaseForeignKey: never;
|
|
83
|
+
|
|
84
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
85
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
86
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
|
|
87
|
+
|
|
88
|
+
readonly Columns: IList_1<DatabaseColumn>;
|
|
77
89
|
get Name(): string | undefined;
|
|
78
90
|
set Name(value: string | undefined);
|
|
79
|
-
OnDelete:
|
|
80
|
-
readonly PrincipalColumns:
|
|
91
|
+
OnDelete: Nullable_1<ReferentialAction>;
|
|
92
|
+
readonly PrincipalColumns: IList_1<DatabaseColumn>;
|
|
81
93
|
PrincipalTable: DatabaseTable;
|
|
82
94
|
Table: DatabaseTable;
|
|
83
95
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
84
96
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
85
97
|
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
86
|
-
AddAnnotations(annotations:
|
|
87
|
-
AddAnnotations(annotations:
|
|
98
|
+
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
99
|
+
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
88
100
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
89
101
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
90
102
|
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
@@ -94,9 +106,9 @@ export interface DatabaseForeignKey$instance extends Annotatable {
|
|
|
94
106
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
95
107
|
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
96
108
|
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
97
|
-
GetAnnotations():
|
|
98
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory:
|
|
99
|
-
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>;
|
|
100
112
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
101
113
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
102
114
|
SetAnnotation(name: string, value: unknown): void;
|
|
@@ -120,10 +132,16 @@ export type DatabaseForeignKey = DatabaseForeignKey$instance & __DatabaseForeign
|
|
|
120
132
|
|
|
121
133
|
|
|
122
134
|
export interface DatabaseIndex$instance extends Annotatable {
|
|
123
|
-
readonly
|
|
135
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Scaffolding_Metadata_DatabaseIndex: never;
|
|
136
|
+
|
|
137
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
138
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
139
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
|
|
140
|
+
|
|
141
|
+
readonly Columns: IList_1<DatabaseColumn>;
|
|
124
142
|
get Filter(): string | undefined;
|
|
125
143
|
set Filter(value: string | undefined);
|
|
126
|
-
IsDescending:
|
|
144
|
+
IsDescending: IList_1<System_Internal.Boolean>;
|
|
127
145
|
IsUnique: boolean;
|
|
128
146
|
get Name(): string | undefined;
|
|
129
147
|
set Name(value: string | undefined);
|
|
@@ -132,8 +150,8 @@ export interface DatabaseIndex$instance extends Annotatable {
|
|
|
132
150
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
133
151
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
134
152
|
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
135
|
-
AddAnnotations(annotations:
|
|
136
|
-
AddAnnotations(annotations:
|
|
153
|
+
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
154
|
+
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
137
155
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
138
156
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
139
157
|
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
@@ -143,9 +161,9 @@ export interface DatabaseIndex$instance extends Annotatable {
|
|
|
143
161
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
144
162
|
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
145
163
|
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
146
|
-
GetAnnotations():
|
|
147
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory:
|
|
148
|
-
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>;
|
|
149
167
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
150
168
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
151
169
|
SetAnnotation(name: string, value: unknown): void;
|
|
@@ -169,19 +187,25 @@ export type DatabaseIndex = DatabaseIndex$instance & __DatabaseIndex$views;
|
|
|
169
187
|
|
|
170
188
|
|
|
171
189
|
export interface DatabaseModel$instance extends Annotatable {
|
|
190
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Scaffolding_Metadata_DatabaseModel: never;
|
|
191
|
+
|
|
192
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
193
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
194
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
|
|
195
|
+
|
|
172
196
|
get Collation(): string | undefined;
|
|
173
197
|
set Collation(value: string | undefined);
|
|
174
198
|
get DatabaseName(): string | undefined;
|
|
175
199
|
set DatabaseName(value: string | undefined);
|
|
176
200
|
get DefaultSchema(): string | undefined;
|
|
177
201
|
set DefaultSchema(value: string | undefined);
|
|
178
|
-
readonly Sequences:
|
|
179
|
-
readonly Tables:
|
|
202
|
+
readonly Sequences: IList_1<DatabaseSequence>;
|
|
203
|
+
readonly Tables: IList_1<DatabaseTable>;
|
|
180
204
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
181
205
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
182
206
|
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
183
|
-
AddAnnotations(annotations:
|
|
184
|
-
AddAnnotations(annotations:
|
|
207
|
+
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
208
|
+
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
185
209
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
186
210
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
187
211
|
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
@@ -191,9 +215,9 @@ export interface DatabaseModel$instance extends Annotatable {
|
|
|
191
215
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
192
216
|
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
193
217
|
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
194
|
-
GetAnnotations():
|
|
195
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory:
|
|
196
|
-
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>;
|
|
197
221
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
198
222
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
199
223
|
SetAnnotation(name: string, value: unknown): void;
|
|
@@ -216,7 +240,13 @@ export type DatabaseModel = DatabaseModel$instance & __DatabaseModel$views;
|
|
|
216
240
|
|
|
217
241
|
|
|
218
242
|
export interface DatabasePrimaryKey$instance extends Annotatable {
|
|
219
|
-
readonly
|
|
243
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Scaffolding_Metadata_DatabasePrimaryKey: never;
|
|
244
|
+
|
|
245
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
246
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
247
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
|
|
248
|
+
|
|
249
|
+
readonly Columns: IList_1<DatabaseColumn>;
|
|
220
250
|
get Name(): string | undefined;
|
|
221
251
|
set Name(value: string | undefined);
|
|
222
252
|
get Table(): DatabaseTable | undefined;
|
|
@@ -224,8 +254,8 @@ export interface DatabasePrimaryKey$instance extends Annotatable {
|
|
|
224
254
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
225
255
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
226
256
|
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
227
|
-
AddAnnotations(annotations:
|
|
228
|
-
AddAnnotations(annotations:
|
|
257
|
+
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
258
|
+
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
229
259
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
230
260
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
231
261
|
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
@@ -235,9 +265,9 @@ export interface DatabasePrimaryKey$instance extends Annotatable {
|
|
|
235
265
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
236
266
|
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
237
267
|
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
238
|
-
GetAnnotations():
|
|
239
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory:
|
|
240
|
-
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>;
|
|
241
271
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
242
272
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
243
273
|
SetAnnotation(name: string, value: unknown): void;
|
|
@@ -261,22 +291,28 @@ export type DatabasePrimaryKey = DatabasePrimaryKey$instance & __DatabasePrimary
|
|
|
261
291
|
|
|
262
292
|
|
|
263
293
|
export interface DatabaseSequence$instance extends Annotatable {
|
|
294
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Scaffolding_Metadata_DatabaseSequence: never;
|
|
295
|
+
|
|
296
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
297
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
298
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
|
|
299
|
+
|
|
264
300
|
Database: DatabaseModel;
|
|
265
|
-
IncrementBy:
|
|
266
|
-
IsCyclic:
|
|
267
|
-
MaxValue:
|
|
268
|
-
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>;
|
|
269
305
|
Name: string;
|
|
270
306
|
get Schema(): string | undefined;
|
|
271
307
|
set Schema(value: string | undefined);
|
|
272
|
-
StartValue:
|
|
308
|
+
StartValue: Nullable_1<System_Internal.Int64>;
|
|
273
309
|
get StoreType(): string | undefined;
|
|
274
310
|
set StoreType(value: string | undefined);
|
|
275
311
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
276
312
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
277
313
|
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
278
|
-
AddAnnotations(annotations:
|
|
279
|
-
AddAnnotations(annotations:
|
|
314
|
+
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
315
|
+
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
280
316
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
281
317
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
282
318
|
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
@@ -286,9 +322,9 @@ export interface DatabaseSequence$instance extends Annotatable {
|
|
|
286
322
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
287
323
|
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
288
324
|
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
289
|
-
GetAnnotations():
|
|
290
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory:
|
|
291
|
-
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>;
|
|
292
328
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
293
329
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
294
330
|
SetAnnotation(name: string, value: unknown): void;
|
|
@@ -312,25 +348,31 @@ export type DatabaseSequence = DatabaseSequence$instance & __DatabaseSequence$vi
|
|
|
312
348
|
|
|
313
349
|
|
|
314
350
|
export interface DatabaseTable$instance extends Annotatable {
|
|
315
|
-
readonly
|
|
351
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Scaffolding_Metadata_DatabaseTable: never;
|
|
352
|
+
|
|
353
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
354
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
355
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
|
|
356
|
+
|
|
357
|
+
readonly Columns: IList_1<DatabaseColumn>;
|
|
316
358
|
get Comment(): string | undefined;
|
|
317
359
|
set Comment(value: string | undefined);
|
|
318
360
|
get Database(): DatabaseModel | undefined;
|
|
319
361
|
set Database(value: DatabaseModel | undefined);
|
|
320
|
-
readonly ForeignKeys:
|
|
321
|
-
readonly Indexes:
|
|
362
|
+
readonly ForeignKeys: IList_1<DatabaseForeignKey>;
|
|
363
|
+
readonly Indexes: IList_1<DatabaseIndex>;
|
|
322
364
|
Name: string;
|
|
323
365
|
get PrimaryKey(): DatabasePrimaryKey | undefined;
|
|
324
366
|
set PrimaryKey(value: DatabasePrimaryKey | undefined);
|
|
325
367
|
get Schema(): string | undefined;
|
|
326
368
|
set Schema(value: string | undefined);
|
|
327
|
-
readonly Triggers:
|
|
328
|
-
readonly UniqueConstraints:
|
|
369
|
+
readonly Triggers: IList_1<DatabaseTrigger>;
|
|
370
|
+
readonly UniqueConstraints: IList_1<DatabaseUniqueConstraint>;
|
|
329
371
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
330
372
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
331
373
|
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
332
|
-
AddAnnotations(annotations:
|
|
333
|
-
AddAnnotations(annotations:
|
|
374
|
+
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
375
|
+
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
334
376
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
335
377
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
336
378
|
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
@@ -340,9 +382,9 @@ export interface DatabaseTable$instance extends Annotatable {
|
|
|
340
382
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
341
383
|
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
342
384
|
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
343
|
-
GetAnnotations():
|
|
344
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory:
|
|
345
|
-
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>;
|
|
346
388
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
347
389
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
348
390
|
SetAnnotation(name: string, value: unknown): void;
|
|
@@ -366,12 +408,18 @@ export type DatabaseTable = DatabaseTable$instance & __DatabaseTable$views;
|
|
|
366
408
|
|
|
367
409
|
|
|
368
410
|
export interface DatabaseTrigger$instance extends Annotatable {
|
|
411
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Scaffolding_Metadata_DatabaseTrigger: never;
|
|
412
|
+
|
|
413
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
414
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
415
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
|
|
416
|
+
|
|
369
417
|
Name: string;
|
|
370
418
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
371
419
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
372
420
|
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
373
|
-
AddAnnotations(annotations:
|
|
374
|
-
AddAnnotations(annotations:
|
|
421
|
+
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
422
|
+
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
375
423
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
376
424
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
377
425
|
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
@@ -381,9 +429,9 @@ export interface DatabaseTrigger$instance extends Annotatable {
|
|
|
381
429
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
382
430
|
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
383
431
|
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
384
|
-
GetAnnotations():
|
|
385
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory:
|
|
386
|
-
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>;
|
|
387
435
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
388
436
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
389
437
|
SetAnnotation(name: string, value: unknown): void;
|
|
@@ -406,15 +454,21 @@ export type DatabaseTrigger = DatabaseTrigger$instance & __DatabaseTrigger$views
|
|
|
406
454
|
|
|
407
455
|
|
|
408
456
|
export interface DatabaseUniqueConstraint$instance extends Annotatable {
|
|
409
|
-
readonly
|
|
457
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Scaffolding_Metadata_DatabaseUniqueConstraint: never;
|
|
458
|
+
|
|
459
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
460
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
461
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
|
|
462
|
+
|
|
463
|
+
readonly Columns: IList_1<DatabaseColumn>;
|
|
410
464
|
get Name(): string | undefined;
|
|
411
465
|
set Name(value: string | undefined);
|
|
412
466
|
Table: DatabaseTable;
|
|
413
467
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
414
468
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
415
469
|
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
416
|
-
AddAnnotations(annotations:
|
|
417
|
-
AddAnnotations(annotations:
|
|
470
|
+
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
471
|
+
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
418
472
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
419
473
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
420
474
|
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
@@ -424,9 +478,9 @@ export interface DatabaseUniqueConstraint$instance extends Annotatable {
|
|
|
424
478
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
425
479
|
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
426
480
|
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
427
|
-
GetAnnotations():
|
|
428
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory:
|
|
429
|
-
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>;
|
|
430
484
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
431
485
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
432
486
|
SetAnnotation(name: string, value: unknown): void;
|
|
@@ -450,11 +504,17 @@ export type DatabaseUniqueConstraint = DatabaseUniqueConstraint$instance & __Dat
|
|
|
450
504
|
|
|
451
505
|
|
|
452
506
|
export interface DatabaseView$instance extends DatabaseTable$instance {
|
|
507
|
+
readonly __tsonic_type_Microsoft_EntityFrameworkCore_Scaffolding_Metadata_DatabaseView: never;
|
|
508
|
+
|
|
509
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IAnnotatable: never;
|
|
510
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Infrastructure_IReadOnlyAnnotatable: never;
|
|
511
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_IMutableAnnotatable: never;
|
|
512
|
+
|
|
453
513
|
AddAnnotation(name: string, value: unknown): IAnnotation;
|
|
454
514
|
AddAnnotation(name: string, value: unknown): Annotation;
|
|
455
515
|
AddAnnotation(name: string, annotation: Annotation): Annotation;
|
|
456
|
-
AddAnnotations(annotations:
|
|
457
|
-
AddAnnotations(annotations:
|
|
516
|
+
AddAnnotations(annotations: IEnumerable_1<IAnnotation>): void;
|
|
517
|
+
AddAnnotations(annotations: IReadOnlyDictionary_2<System_Internal.String, unknown>): void;
|
|
458
518
|
AddRuntimeAnnotation(name: string, value: unknown): IAnnotation;
|
|
459
519
|
AddRuntimeAnnotation(name: string, value: unknown): Annotation;
|
|
460
520
|
AddRuntimeAnnotation(name: string, annotation: Annotation): Annotation;
|
|
@@ -464,9 +524,9 @@ export interface DatabaseView$instance extends DatabaseTable$instance {
|
|
|
464
524
|
FindRuntimeAnnotation(name: string): IAnnotation | undefined;
|
|
465
525
|
FindRuntimeAnnotation(name: string): Annotation | undefined;
|
|
466
526
|
FindRuntimeAnnotationValue(name: string): unknown | undefined;
|
|
467
|
-
GetAnnotations():
|
|
468
|
-
GetOrAddRuntimeAnnotationValue<TValue, TArg>(name: string, valueFactory:
|
|
469
|
-
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>;
|
|
470
530
|
RemoveAnnotation(name: string): IAnnotation | undefined;
|
|
471
531
|
RemoveAnnotation(name: string): Annotation | undefined;
|
|
472
532
|
SetAnnotation(name: string, value: unknown): void;
|