@tsonic/efcore-sqlite 10.0.1 → 10.0.3
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.Data.Sqlite/bindings.json +948 -1
- package/Microsoft.Data.Sqlite/internal/index.d.ts +31 -11
- package/Microsoft.DotNet.PlatformAbstractions/bindings.json +10 -0
- package/Microsoft.EntityFrameworkCore/bindings.json +113 -0
- package/Microsoft.EntityFrameworkCore.Diagnostics/bindings.json +31 -0
- package/Microsoft.EntityFrameworkCore.Infrastructure/bindings.json +21 -0
- package/Microsoft.EntityFrameworkCore.Metadata/bindings.json +25 -0
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions/bindings.json +197 -2
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions/internal/index.d.ts +10 -2
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.d.ts +3 -2
- package/Microsoft.EntityFrameworkCore.Migrations/bindings.json +557 -0
- package/Microsoft.EntityFrameworkCore.Migrations/internal/index.d.ts +30 -3
- package/Microsoft.EntityFrameworkCore.Migrations.d.ts +3 -3
- package/Microsoft.EntityFrameworkCore.Sqlite.Design.Internal/bindings.json +52 -0
- package/Microsoft.EntityFrameworkCore.Sqlite.Design.Internal/internal/index.d.ts +2 -1
- package/Microsoft.EntityFrameworkCore.Sqlite.Design.Internal.d.ts +1 -1
- package/Microsoft.EntityFrameworkCore.Sqlite.Diagnostics.Internal/bindings.json +37 -0
- package/Microsoft.EntityFrameworkCore.Sqlite.Infrastructure.Internal/bindings.json +190 -0
- package/Microsoft.EntityFrameworkCore.Sqlite.Infrastructure.Internal/internal/index.d.ts +13 -2
- package/Microsoft.EntityFrameworkCore.Sqlite.Infrastructure.Internal.d.ts +3 -2
- package/Microsoft.EntityFrameworkCore.Sqlite.Internal/bindings.json +62 -0
- package/Microsoft.EntityFrameworkCore.Sqlite.Metadata.Internal/bindings.json +26 -0
- package/Microsoft.EntityFrameworkCore.Sqlite.Migrations.Internal/bindings.json +98 -0
- package/Microsoft.EntityFrameworkCore.Sqlite.Migrations.Internal/internal/index.d.ts +4 -1
- package/Microsoft.EntityFrameworkCore.Sqlite.Migrations.Internal.d.ts +1 -1
- package/Microsoft.EntityFrameworkCore.Sqlite.Query.Internal/bindings.json +1541 -79
- package/Microsoft.EntityFrameworkCore.Sqlite.Query.Internal/internal/index.d.ts +55 -4
- package/Microsoft.EntityFrameworkCore.Sqlite.Query.Internal.d.ts +5 -4
- package/Microsoft.EntityFrameworkCore.Sqlite.Scaffolding.Internal/bindings.json +45 -0
- package/Microsoft.EntityFrameworkCore.Sqlite.Scaffolding.Internal/internal/index.d.ts +3 -2
- package/Microsoft.EntityFrameworkCore.Sqlite.Scaffolding.Internal.d.ts +2 -2
- package/Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal/bindings.json +749 -9
- package/Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal/internal/index.d.ts +28 -2
- package/Microsoft.EntityFrameworkCore.Sqlite.Storage.Internal.d.ts +3 -2
- package/Microsoft.EntityFrameworkCore.Sqlite.Storage.Json.Internal/bindings.json +55 -0
- package/Microsoft.EntityFrameworkCore.Sqlite.Storage.Json.Internal/internal/index.d.ts +0 -5
- package/Microsoft.EntityFrameworkCore.Sqlite.Update.Internal/bindings.json +194 -2
- package/Microsoft.EntityFrameworkCore.Sqlite.Update.Internal/internal/index.d.ts +9 -2
- package/Microsoft.EntityFrameworkCore.Sqlite.Update.Internal.d.ts +3 -2
- package/Microsoft.Extensions.DependencyInjection/bindings.json +6 -0
- package/Microsoft.Extensions.DependencyModel/bindings.json +213 -0
- package/Microsoft.Extensions.DependencyModel/internal/index.d.ts +4 -3
- package/Microsoft.Extensions.DependencyModel.Resolution/bindings.json +63 -0
- package/SQLitePCL/bindings.json +1398 -9
- package/SQLitePCL/internal/index.d.ts +10 -10
- package/System.Collections.Generic/bindings.json +10 -0
- package/package.json +1 -1
|
@@ -8,14 +8,41 @@ import type { sbyte, byte, short, ushort, int, uint, long, ulong, int128, uint12
|
|
|
8
8
|
// Import types from other namespaces
|
|
9
9
|
import type { IReadOnlyList } from "@tsonic/dotnet/System.Collections.Generic.js";
|
|
10
10
|
import * as System_Internal from "@tsonic/dotnet/System.js";
|
|
11
|
-
import type { Boolean as ClrBoolean, Object as ClrObject } from "@tsonic/dotnet/System.js";
|
|
11
|
+
import type { Boolean as ClrBoolean, Object as ClrObject, String as ClrString, Void } from "@tsonic/dotnet/System.js";
|
|
12
12
|
import type { IModel, IRelationalAnnotationProvider } from "@tsonic/efcore/Microsoft.EntityFrameworkCore.Metadata.js";
|
|
13
13
|
import * as Microsoft_EntityFrameworkCore_Migrations_Internal from "@tsonic/efcore/Microsoft.EntityFrameworkCore.Migrations.js";
|
|
14
|
-
import type { IMigrationsSqlGenerator, MigrationBuilder, MigrationCommand, MigrationsSqlGenerationOptions, MigrationsSqlGenerator, MigrationsSqlGeneratorDependencies } from "@tsonic/efcore/Microsoft.EntityFrameworkCore.Migrations.js";
|
|
15
|
-
import type { MigrationOperation } from "@tsonic/efcore/Microsoft.EntityFrameworkCore.Migrations.Operations.js";
|
|
14
|
+
import type { IMigrationsSqlGenerator, MigrationBuilder, MigrationCommand, MigrationCommandListBuilder, MigrationsSqlGenerationOptions, MigrationsSqlGenerator, MigrationsSqlGeneratorDependencies } from "@tsonic/efcore/Microsoft.EntityFrameworkCore.Migrations.js";
|
|
15
|
+
import type { AddCheckConstraintOperation, AddColumnOperation, AddForeignKeyOperation, AddPrimaryKeyOperation, AddUniqueConstraintOperation, AlterColumnOperation, AlterDatabaseOperation, AlterSequenceOperation, ColumnOperation, CreateSequenceOperation, CreateTableOperation, DropCheckConstraintOperation, DropColumnOperation, DropForeignKeyOperation, DropIndexOperation, DropPrimaryKeyOperation, DropSchemaOperation, DropSequenceOperation, DropUniqueConstraintOperation, EnsureSchemaOperation, MigrationOperation, RenameColumnOperation, RenameIndexOperation, RenameSequenceOperation, RenameTableOperation, RestartSequenceOperation } from "@tsonic/efcore/Microsoft.EntityFrameworkCore.Migrations.Operations.js";
|
|
16
16
|
|
|
17
17
|
export interface SqliteMigrationsSqlGenerator$instance extends MigrationsSqlGenerator {
|
|
18
|
+
ColumnDefinition(schema: string, table: string, name: string, operation: ColumnOperation, model: IModel, builder: MigrationCommandListBuilder): void;
|
|
19
|
+
ComputedColumnDefinition(schema: string, table: string, name: string, operation: ColumnOperation, model: IModel, builder: MigrationCommandListBuilder): void;
|
|
20
|
+
CreateTableColumns(operation: CreateTableOperation, model: IModel, builder: MigrationCommandListBuilder): void;
|
|
18
21
|
Generate(operations: IReadOnlyList<MigrationOperation>, model?: IModel, options?: MigrationsSqlGenerationOptions): IReadOnlyList<MigrationCommand>;
|
|
22
|
+
Generate(operation: AlterDatabaseOperation, model: IModel, builder: MigrationCommandListBuilder): void;
|
|
23
|
+
Generate(operation: AddColumnOperation, model: IModel, builder: MigrationCommandListBuilder, terminate: boolean): void;
|
|
24
|
+
Generate(operation: DropIndexOperation, model: IModel, builder: MigrationCommandListBuilder, terminate: boolean): void;
|
|
25
|
+
Generate(operation: RenameIndexOperation, model: IModel, builder: MigrationCommandListBuilder): void;
|
|
26
|
+
Generate(operation: RenameTableOperation, model: IModel, builder: MigrationCommandListBuilder): void;
|
|
27
|
+
Generate(operation: RenameColumnOperation, model: IModel, builder: MigrationCommandListBuilder): void;
|
|
28
|
+
Generate(operation: CreateTableOperation, model: IModel, builder: MigrationCommandListBuilder, terminate?: boolean): void;
|
|
29
|
+
Generate(operation: AddForeignKeyOperation, model: IModel, builder: MigrationCommandListBuilder, terminate?: boolean): void;
|
|
30
|
+
Generate(operation: AddPrimaryKeyOperation, model: IModel, builder: MigrationCommandListBuilder, terminate?: boolean): void;
|
|
31
|
+
Generate(operation: AddUniqueConstraintOperation, model: IModel, builder: MigrationCommandListBuilder): void;
|
|
32
|
+
Generate(operation: AddCheckConstraintOperation, model: IModel, builder: MigrationCommandListBuilder): void;
|
|
33
|
+
Generate(operation: DropColumnOperation, model: IModel, builder: MigrationCommandListBuilder, terminate?: boolean): void;
|
|
34
|
+
Generate(operation: DropForeignKeyOperation, model: IModel, builder: MigrationCommandListBuilder, terminate?: boolean): void;
|
|
35
|
+
Generate(operation: DropPrimaryKeyOperation, model: IModel, builder: MigrationCommandListBuilder, terminate?: boolean): void;
|
|
36
|
+
Generate(operation: DropUniqueConstraintOperation, model: IModel, builder: MigrationCommandListBuilder): void;
|
|
37
|
+
Generate(operation: DropCheckConstraintOperation, model: IModel, builder: MigrationCommandListBuilder): void;
|
|
38
|
+
Generate(operation: AlterColumnOperation, model: IModel, builder: MigrationCommandListBuilder): void;
|
|
39
|
+
Generate(operation: EnsureSchemaOperation, model: IModel, builder: MigrationCommandListBuilder): void;
|
|
40
|
+
Generate(operation: DropSchemaOperation, model: IModel, builder: MigrationCommandListBuilder): void;
|
|
41
|
+
Generate(operation: RestartSequenceOperation, model: IModel, builder: MigrationCommandListBuilder): void;
|
|
42
|
+
Generate(operation: CreateSequenceOperation, model: IModel, builder: MigrationCommandListBuilder): void;
|
|
43
|
+
Generate(operation: RenameSequenceOperation, model: IModel, builder: MigrationCommandListBuilder): void;
|
|
44
|
+
Generate(operation: AlterSequenceOperation, model: IModel, builder: MigrationCommandListBuilder): void;
|
|
45
|
+
Generate(operation: DropSequenceOperation, model: IModel, builder: MigrationCommandListBuilder): void;
|
|
19
46
|
}
|
|
20
47
|
|
|
21
48
|
|
|
@@ -7,10 +7,10 @@ import * as Internal from './Microsoft.EntityFrameworkCore.Migrations/internal/i
|
|
|
7
7
|
|
|
8
8
|
// Cross-namespace type imports for constraints
|
|
9
9
|
import type { IReadOnlyList } from '@tsonic/dotnet/System.Collections.Generic.js';
|
|
10
|
-
import type { Boolean as ClrBoolean, Object as ClrObject } from '@tsonic/dotnet/System.js';
|
|
10
|
+
import type { Boolean as ClrBoolean, Object as ClrObject, String as ClrString, Void } from '@tsonic/dotnet/System.js';
|
|
11
11
|
import type { IModel, IRelationalAnnotationProvider } from '@tsonic/efcore/Microsoft.EntityFrameworkCore.Metadata.js';
|
|
12
|
-
import type { IMigrationsSqlGenerator, MigrationBuilder, MigrationCommand, MigrationsSqlGenerationOptions, MigrationsSqlGenerator, MigrationsSqlGeneratorDependencies } from '@tsonic/efcore/Microsoft.EntityFrameworkCore.Migrations.js';
|
|
13
|
-
import type { MigrationOperation } from '@tsonic/efcore/Microsoft.EntityFrameworkCore.Migrations.Operations.js';
|
|
12
|
+
import type { IMigrationsSqlGenerator, MigrationBuilder, MigrationCommand, MigrationCommandListBuilder, MigrationsSqlGenerationOptions, MigrationsSqlGenerator, MigrationsSqlGeneratorDependencies } from '@tsonic/efcore/Microsoft.EntityFrameworkCore.Migrations.js';
|
|
13
|
+
import type { AddCheckConstraintOperation, AddColumnOperation, AddForeignKeyOperation, AddPrimaryKeyOperation, AddUniqueConstraintOperation, AlterColumnOperation, AlterDatabaseOperation, AlterSequenceOperation, ColumnOperation, CreateSequenceOperation, CreateTableOperation, DropCheckConstraintOperation, DropColumnOperation, DropForeignKeyOperation, DropIndexOperation, DropPrimaryKeyOperation, DropSchemaOperation, DropSequenceOperation, DropUniqueConstraintOperation, EnsureSchemaOperation, MigrationOperation, RenameColumnOperation, RenameIndexOperation, RenameSequenceOperation, RenameTableOperation, RestartSequenceOperation } from '@tsonic/efcore/Microsoft.EntityFrameworkCore.Migrations.Operations.js';
|
|
14
14
|
|
|
15
15
|
// Public API exports (curated - no internal $instance/$views leakage)
|
|
16
16
|
export { SqliteMigrationBuilderExtensions$instance as SqliteMigrationBuilderExtensions } from './Microsoft.EntityFrameworkCore.Migrations/internal/index.js';
|
|
@@ -15,6 +15,16 @@
|
|
|
15
15
|
"isSealed": false,
|
|
16
16
|
"isStatic": false,
|
|
17
17
|
"arity": 0,
|
|
18
|
+
"baseType": {
|
|
19
|
+
"stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Design.AnnotationCodeGenerator",
|
|
20
|
+
"clrName": "Microsoft.EntityFrameworkCore.Design.AnnotationCodeGenerator"
|
|
21
|
+
},
|
|
22
|
+
"interfaces": [
|
|
23
|
+
{
|
|
24
|
+
"stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Design.IAnnotationCodeGenerator",
|
|
25
|
+
"clrName": "Microsoft.EntityFrameworkCore.Design.IAnnotationCodeGenerator"
|
|
26
|
+
}
|
|
27
|
+
],
|
|
18
28
|
"methods": [
|
|
19
29
|
{
|
|
20
30
|
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Design.Internal.SqliteAnnotationCodeGenerator::GenerateFluentApiCalls(Microsoft.EntityFrameworkCore.Metadata.IProperty,System.Collections.Generic.IDictionary_2[[System.String,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e],[Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]):System.Collections.Generic.IReadOnlyList_1[[Microsoft.EntityFrameworkCore.Design.MethodCallCodeFragment,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60]]",
|
|
@@ -31,6 +41,27 @@
|
|
|
31
41
|
"isVirtual": true,
|
|
32
42
|
"isOverride": true,
|
|
33
43
|
"isSealed": false,
|
|
44
|
+
"visibility": "Public",
|
|
45
|
+
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Design.Internal.SqliteAnnotationCodeGenerator",
|
|
46
|
+
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
|
|
47
|
+
"isExtensionMethod": false
|
|
48
|
+
},
|
|
49
|
+
{
|
|
50
|
+
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Design.Internal.SqliteAnnotationCodeGenerator::IsHandledByConvention(Microsoft.EntityFrameworkCore.Metadata.IProperty,Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation):System.Boolean",
|
|
51
|
+
"clrName": "IsHandledByConvention",
|
|
52
|
+
"metadataToken": 100664228,
|
|
53
|
+
"canonicalSignature": "(Microsoft.EntityFrameworkCore.Metadata.IProperty,Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation):System.Boolean",
|
|
54
|
+
"normalizedSignature": "IsHandledByConvention|(Microsoft.EntityFrameworkCore.Metadata.IProperty,Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation):System.Boolean|static=false",
|
|
55
|
+
"emitScope": "ClassSurface",
|
|
56
|
+
"provenance": "Original",
|
|
57
|
+
"arity": 0,
|
|
58
|
+
"parameterCount": 2,
|
|
59
|
+
"isStatic": false,
|
|
60
|
+
"isAbstract": false,
|
|
61
|
+
"isVirtual": true,
|
|
62
|
+
"isOverride": true,
|
|
63
|
+
"isSealed": false,
|
|
64
|
+
"visibility": "Protected",
|
|
34
65
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Design.Internal.SqliteAnnotationCodeGenerator",
|
|
35
66
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
|
|
36
67
|
"isExtensionMethod": false
|
|
@@ -47,6 +78,7 @@
|
|
|
47
78
|
"normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Design.AnnotationCodeGeneratorDependencies):void|static=false",
|
|
48
79
|
"isStatic": false,
|
|
49
80
|
"parameterCount": 1,
|
|
81
|
+
"visibility": "Public",
|
|
50
82
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Design.Internal.SqliteAnnotationCodeGenerator",
|
|
51
83
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
52
84
|
}
|
|
@@ -63,6 +95,10 @@
|
|
|
63
95
|
"isSealed": false,
|
|
64
96
|
"isStatic": false,
|
|
65
97
|
"arity": 0,
|
|
98
|
+
"baseType": {
|
|
99
|
+
"stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Design.Internal.RelationalCSharpRuntimeAnnotationCodeGenerator",
|
|
100
|
+
"clrName": "Microsoft.EntityFrameworkCore.Design.Internal.RelationalCSharpRuntimeAnnotationCodeGenerator"
|
|
101
|
+
},
|
|
66
102
|
"methods": [
|
|
67
103
|
{
|
|
68
104
|
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Design.Internal.SqliteCSharpRuntimeAnnotationCodeGenerator::Generate(Microsoft.EntityFrameworkCore.Metadata.IRelationalModel,Microsoft.EntityFrameworkCore.Design.Internal.CSharpRuntimeAnnotationCodeGeneratorParameters):System.Void",
|
|
@@ -79,6 +115,7 @@
|
|
|
79
115
|
"isVirtual": true,
|
|
80
116
|
"isOverride": true,
|
|
81
117
|
"isSealed": false,
|
|
118
|
+
"visibility": "Public",
|
|
82
119
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Design.Internal.SqliteCSharpRuntimeAnnotationCodeGenerator",
|
|
83
120
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
|
|
84
121
|
"isExtensionMethod": false
|
|
@@ -98,6 +135,7 @@
|
|
|
98
135
|
"isVirtual": true,
|
|
99
136
|
"isOverride": true,
|
|
100
137
|
"isSealed": false,
|
|
138
|
+
"visibility": "Public",
|
|
101
139
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Design.Internal.SqliteCSharpRuntimeAnnotationCodeGenerator",
|
|
102
140
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
|
|
103
141
|
"isExtensionMethod": false
|
|
@@ -117,6 +155,7 @@
|
|
|
117
155
|
"isVirtual": true,
|
|
118
156
|
"isOverride": true,
|
|
119
157
|
"isSealed": false,
|
|
158
|
+
"visibility": "Public",
|
|
120
159
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Design.Internal.SqliteCSharpRuntimeAnnotationCodeGenerator",
|
|
121
160
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
|
|
122
161
|
"isExtensionMethod": false
|
|
@@ -133,6 +172,7 @@
|
|
|
133
172
|
"normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Design.Internal.CSharpRuntimeAnnotationCodeGeneratorDependencies,Microsoft.EntityFrameworkCore.Design.Internal.RelationalCSharpRuntimeAnnotationCodeGeneratorDependencies):void|static=false",
|
|
134
173
|
"isStatic": false,
|
|
135
174
|
"parameterCount": 2,
|
|
175
|
+
"visibility": "Public",
|
|
136
176
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Design.Internal.SqliteCSharpRuntimeAnnotationCodeGenerator",
|
|
137
177
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
138
178
|
}
|
|
@@ -149,6 +189,16 @@
|
|
|
149
189
|
"isSealed": false,
|
|
150
190
|
"isStatic": false,
|
|
151
191
|
"arity": 0,
|
|
192
|
+
"baseType": {
|
|
193
|
+
"stableId": "System.Private.CoreLib:System.Object",
|
|
194
|
+
"clrName": "System.Object"
|
|
195
|
+
},
|
|
196
|
+
"interfaces": [
|
|
197
|
+
{
|
|
198
|
+
"stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Design.IDesignTimeServices",
|
|
199
|
+
"clrName": "Microsoft.EntityFrameworkCore.Design.IDesignTimeServices"
|
|
200
|
+
}
|
|
201
|
+
],
|
|
152
202
|
"methods": [
|
|
153
203
|
{
|
|
154
204
|
"stableId": "Microsoft.EntityFrameworkCore.Sqlite:Microsoft.EntityFrameworkCore.Sqlite.Design.Internal.SqliteDesignTimeServices::ConfigureDesignTimeServices(Microsoft.Extensions.DependencyInjection.IServiceCollection):System.Void",
|
|
@@ -165,6 +215,7 @@
|
|
|
165
215
|
"isVirtual": true,
|
|
166
216
|
"isOverride": false,
|
|
167
217
|
"isSealed": false,
|
|
218
|
+
"visibility": "Public",
|
|
168
219
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Design.Internal.SqliteDesignTimeServices",
|
|
169
220
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite",
|
|
170
221
|
"isExtensionMethod": false
|
|
@@ -181,6 +232,7 @@
|
|
|
181
232
|
"normalizedSignature": "constructor|():void|static=false",
|
|
182
233
|
"isStatic": false,
|
|
183
234
|
"parameterCount": 0,
|
|
235
|
+
"visibility": "Public",
|
|
184
236
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Design.Internal.SqliteDesignTimeServices",
|
|
185
237
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
186
238
|
}
|
|
@@ -8,7 +8,7 @@ import type { sbyte, byte, short, ushort, int, uint, long, ulong, int128, uint12
|
|
|
8
8
|
// Import types from other namespaces
|
|
9
9
|
import type { IDictionary, IReadOnlyList } from "@tsonic/dotnet/System.Collections.Generic.js";
|
|
10
10
|
import * as System_Internal from "@tsonic/dotnet/System.js";
|
|
11
|
-
import type { Object as ClrObject, String as ClrString, Void } from "@tsonic/dotnet/System.js";
|
|
11
|
+
import type { Boolean as ClrBoolean, Object as ClrObject, String as ClrString, Void } from "@tsonic/dotnet/System.js";
|
|
12
12
|
import * as Microsoft_EntityFrameworkCore_Design_Internal_Internal from "@tsonic/efcore/Microsoft.EntityFrameworkCore.Design.Internal.js";
|
|
13
13
|
import type { CSharpRuntimeAnnotationCodeGeneratorDependencies, CSharpRuntimeAnnotationCodeGeneratorParameters, RelationalCSharpRuntimeAnnotationCodeGenerator, RelationalCSharpRuntimeAnnotationCodeGeneratorDependencies } from "@tsonic/efcore/Microsoft.EntityFrameworkCore.Design.Internal.js";
|
|
14
14
|
import * as Microsoft_EntityFrameworkCore_Design_Internal from "@tsonic/efcore/Microsoft.EntityFrameworkCore.Design.js";
|
|
@@ -19,6 +19,7 @@ import type { IServiceCollection } from "@tsonic/microsoft-extensions/Microsoft.
|
|
|
19
19
|
|
|
20
20
|
export interface SqliteAnnotationCodeGenerator$instance extends AnnotationCodeGenerator {
|
|
21
21
|
GenerateFluentApiCalls(property: IProperty, annotations: IDictionary<System_Internal.String, IAnnotation>): IReadOnlyList<MethodCallCodeFragment>;
|
|
22
|
+
IsHandledByConvention(property: IProperty, annotation: IAnnotation): boolean;
|
|
22
23
|
}
|
|
23
24
|
|
|
24
25
|
|
|
@@ -7,7 +7,7 @@ import * as Internal from './Microsoft.EntityFrameworkCore.Sqlite.Design.Interna
|
|
|
7
7
|
|
|
8
8
|
// Cross-namespace type imports for constraints
|
|
9
9
|
import type { IDictionary, IReadOnlyList } from '@tsonic/dotnet/System.Collections.Generic.js';
|
|
10
|
-
import type { Object as ClrObject, String as ClrString, Void } from '@tsonic/dotnet/System.js';
|
|
10
|
+
import type { Boolean as ClrBoolean, Object as ClrObject, String as ClrString, Void } from '@tsonic/dotnet/System.js';
|
|
11
11
|
import type { CSharpRuntimeAnnotationCodeGeneratorDependencies, CSharpRuntimeAnnotationCodeGeneratorParameters, RelationalCSharpRuntimeAnnotationCodeGenerator, RelationalCSharpRuntimeAnnotationCodeGeneratorDependencies } from '@tsonic/efcore/Microsoft.EntityFrameworkCore.Design.Internal.js';
|
|
12
12
|
import type { AnnotationCodeGenerator, AnnotationCodeGeneratorDependencies, IAnnotationCodeGenerator, IDesignTimeServices, MethodCallCodeFragment } from '@tsonic/efcore/Microsoft.EntityFrameworkCore.Design.js';
|
|
13
13
|
import type { IAnnotation } from '@tsonic/efcore/Microsoft.EntityFrameworkCore.Infrastructure.js';
|
|
@@ -15,6 +15,10 @@
|
|
|
15
15
|
"isSealed": false,
|
|
16
16
|
"isStatic": false,
|
|
17
17
|
"arity": 0,
|
|
18
|
+
"baseType": {
|
|
19
|
+
"stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Diagnostics.RelationalLoggingDefinitions",
|
|
20
|
+
"clrName": "Microsoft.EntityFrameworkCore.Diagnostics.RelationalLoggingDefinitions"
|
|
21
|
+
},
|
|
18
22
|
"methods": [],
|
|
19
23
|
"properties": [],
|
|
20
24
|
"fields": [
|
|
@@ -26,6 +30,7 @@
|
|
|
26
30
|
"isStatic": false,
|
|
27
31
|
"isReadOnly": false,
|
|
28
32
|
"isLiteral": false,
|
|
33
|
+
"visibility": "Public",
|
|
29
34
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Diagnostics.Internal.SqliteLoggingDefinitions",
|
|
30
35
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
31
36
|
},
|
|
@@ -37,6 +42,7 @@
|
|
|
37
42
|
"isStatic": false,
|
|
38
43
|
"isReadOnly": false,
|
|
39
44
|
"isLiteral": false,
|
|
45
|
+
"visibility": "Public",
|
|
40
46
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Diagnostics.Internal.SqliteLoggingDefinitions",
|
|
41
47
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
42
48
|
},
|
|
@@ -48,6 +54,7 @@
|
|
|
48
54
|
"isStatic": false,
|
|
49
55
|
"isReadOnly": false,
|
|
50
56
|
"isLiteral": false,
|
|
57
|
+
"visibility": "Public",
|
|
51
58
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Diagnostics.Internal.SqliteLoggingDefinitions",
|
|
52
59
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
53
60
|
},
|
|
@@ -59,6 +66,7 @@
|
|
|
59
66
|
"isStatic": false,
|
|
60
67
|
"isReadOnly": false,
|
|
61
68
|
"isLiteral": false,
|
|
69
|
+
"visibility": "Public",
|
|
62
70
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Diagnostics.Internal.SqliteLoggingDefinitions",
|
|
63
71
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
64
72
|
},
|
|
@@ -70,6 +78,7 @@
|
|
|
70
78
|
"isStatic": false,
|
|
71
79
|
"isReadOnly": false,
|
|
72
80
|
"isLiteral": false,
|
|
81
|
+
"visibility": "Public",
|
|
73
82
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Diagnostics.Internal.SqliteLoggingDefinitions",
|
|
74
83
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
75
84
|
},
|
|
@@ -81,6 +90,7 @@
|
|
|
81
90
|
"isStatic": false,
|
|
82
91
|
"isReadOnly": false,
|
|
83
92
|
"isLiteral": false,
|
|
93
|
+
"visibility": "Public",
|
|
84
94
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Diagnostics.Internal.SqliteLoggingDefinitions",
|
|
85
95
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
86
96
|
},
|
|
@@ -92,6 +102,7 @@
|
|
|
92
102
|
"isStatic": false,
|
|
93
103
|
"isReadOnly": false,
|
|
94
104
|
"isLiteral": false,
|
|
105
|
+
"visibility": "Public",
|
|
95
106
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Diagnostics.Internal.SqliteLoggingDefinitions",
|
|
96
107
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
97
108
|
},
|
|
@@ -103,6 +114,7 @@
|
|
|
103
114
|
"isStatic": false,
|
|
104
115
|
"isReadOnly": false,
|
|
105
116
|
"isLiteral": false,
|
|
117
|
+
"visibility": "Public",
|
|
106
118
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Diagnostics.Internal.SqliteLoggingDefinitions",
|
|
107
119
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
108
120
|
},
|
|
@@ -114,6 +126,7 @@
|
|
|
114
126
|
"isStatic": false,
|
|
115
127
|
"isReadOnly": false,
|
|
116
128
|
"isLiteral": false,
|
|
129
|
+
"visibility": "Public",
|
|
117
130
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Diagnostics.Internal.SqliteLoggingDefinitions",
|
|
118
131
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
119
132
|
},
|
|
@@ -125,6 +138,7 @@
|
|
|
125
138
|
"isStatic": false,
|
|
126
139
|
"isReadOnly": false,
|
|
127
140
|
"isLiteral": false,
|
|
141
|
+
"visibility": "Public",
|
|
128
142
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Diagnostics.Internal.SqliteLoggingDefinitions",
|
|
129
143
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
130
144
|
},
|
|
@@ -136,6 +150,7 @@
|
|
|
136
150
|
"isStatic": false,
|
|
137
151
|
"isReadOnly": false,
|
|
138
152
|
"isLiteral": false,
|
|
153
|
+
"visibility": "Public",
|
|
139
154
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Diagnostics.Internal.SqliteLoggingDefinitions",
|
|
140
155
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
141
156
|
},
|
|
@@ -147,6 +162,7 @@
|
|
|
147
162
|
"isStatic": false,
|
|
148
163
|
"isReadOnly": false,
|
|
149
164
|
"isLiteral": false,
|
|
165
|
+
"visibility": "Public",
|
|
150
166
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Diagnostics.Internal.SqliteLoggingDefinitions",
|
|
151
167
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
152
168
|
},
|
|
@@ -158,6 +174,7 @@
|
|
|
158
174
|
"isStatic": false,
|
|
159
175
|
"isReadOnly": false,
|
|
160
176
|
"isLiteral": false,
|
|
177
|
+
"visibility": "Public",
|
|
161
178
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Diagnostics.Internal.SqliteLoggingDefinitions",
|
|
162
179
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
163
180
|
},
|
|
@@ -169,6 +186,7 @@
|
|
|
169
186
|
"isStatic": false,
|
|
170
187
|
"isReadOnly": false,
|
|
171
188
|
"isLiteral": false,
|
|
189
|
+
"visibility": "Public",
|
|
172
190
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Diagnostics.Internal.SqliteLoggingDefinitions",
|
|
173
191
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
174
192
|
},
|
|
@@ -180,6 +198,7 @@
|
|
|
180
198
|
"isStatic": false,
|
|
181
199
|
"isReadOnly": false,
|
|
182
200
|
"isLiteral": false,
|
|
201
|
+
"visibility": "Public",
|
|
183
202
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Diagnostics.Internal.SqliteLoggingDefinitions",
|
|
184
203
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
185
204
|
},
|
|
@@ -191,6 +210,7 @@
|
|
|
191
210
|
"isStatic": false,
|
|
192
211
|
"isReadOnly": false,
|
|
193
212
|
"isLiteral": false,
|
|
213
|
+
"visibility": "Public",
|
|
194
214
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Diagnostics.Internal.SqliteLoggingDefinitions",
|
|
195
215
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
196
216
|
},
|
|
@@ -202,6 +222,7 @@
|
|
|
202
222
|
"isStatic": false,
|
|
203
223
|
"isReadOnly": false,
|
|
204
224
|
"isLiteral": false,
|
|
225
|
+
"visibility": "Public",
|
|
205
226
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Diagnostics.Internal.SqliteLoggingDefinitions",
|
|
206
227
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
207
228
|
},
|
|
@@ -213,6 +234,7 @@
|
|
|
213
234
|
"isStatic": false,
|
|
214
235
|
"isReadOnly": false,
|
|
215
236
|
"isLiteral": false,
|
|
237
|
+
"visibility": "Public",
|
|
216
238
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Diagnostics.Internal.SqliteLoggingDefinitions",
|
|
217
239
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
218
240
|
},
|
|
@@ -224,6 +246,7 @@
|
|
|
224
246
|
"isStatic": false,
|
|
225
247
|
"isReadOnly": false,
|
|
226
248
|
"isLiteral": false,
|
|
249
|
+
"visibility": "Public",
|
|
227
250
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Diagnostics.Internal.SqliteLoggingDefinitions",
|
|
228
251
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
229
252
|
}
|
|
@@ -237,6 +260,7 @@
|
|
|
237
260
|
"normalizedSignature": "constructor|():void|static=false",
|
|
238
261
|
"isStatic": false,
|
|
239
262
|
"parameterCount": 0,
|
|
263
|
+
"visibility": "Public",
|
|
240
264
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Diagnostics.Internal.SqliteLoggingDefinitions",
|
|
241
265
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
242
266
|
}
|
|
@@ -253,6 +277,10 @@
|
|
|
253
277
|
"isSealed": false,
|
|
254
278
|
"isStatic": false,
|
|
255
279
|
"arity": 0,
|
|
280
|
+
"baseType": {
|
|
281
|
+
"stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Diagnostics.EventData",
|
|
282
|
+
"clrName": "Microsoft.EntityFrameworkCore.Diagnostics.EventData"
|
|
283
|
+
},
|
|
256
284
|
"methods": [],
|
|
257
285
|
"properties": [
|
|
258
286
|
{
|
|
@@ -270,6 +298,7 @@
|
|
|
270
298
|
"isAbstract": false,
|
|
271
299
|
"isVirtual": true,
|
|
272
300
|
"isOverride": false,
|
|
301
|
+
"visibility": "Public",
|
|
273
302
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Diagnostics.Internal.TableRebuildEventData",
|
|
274
303
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
275
304
|
},
|
|
@@ -288,6 +317,7 @@
|
|
|
288
317
|
"isAbstract": false,
|
|
289
318
|
"isVirtual": true,
|
|
290
319
|
"isOverride": false,
|
|
320
|
+
"visibility": "Public",
|
|
291
321
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Diagnostics.Internal.TableRebuildEventData",
|
|
292
322
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
293
323
|
}
|
|
@@ -302,6 +332,7 @@
|
|
|
302
332
|
"normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Diagnostics.EventDefinitionBase,System.Func_3[[Microsoft.EntityFrameworkCore.Diagnostics.EventDefinitionBase,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60],[Microsoft.EntityFrameworkCore.Diagnostics.EventData,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60],[System.String,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e]],System.Type,System.String):void|static=false",
|
|
303
333
|
"isStatic": false,
|
|
304
334
|
"parameterCount": 4,
|
|
335
|
+
"visibility": "Public",
|
|
305
336
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Diagnostics.Internal.TableRebuildEventData",
|
|
306
337
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
307
338
|
}
|
|
@@ -318,6 +349,10 @@
|
|
|
318
349
|
"isSealed": false,
|
|
319
350
|
"isStatic": false,
|
|
320
351
|
"arity": 0,
|
|
352
|
+
"baseType": {
|
|
353
|
+
"stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Diagnostics.EventData",
|
|
354
|
+
"clrName": "Microsoft.EntityFrameworkCore.Diagnostics.EventData"
|
|
355
|
+
},
|
|
321
356
|
"methods": [],
|
|
322
357
|
"properties": [
|
|
323
358
|
{
|
|
@@ -335,6 +370,7 @@
|
|
|
335
370
|
"isAbstract": false,
|
|
336
371
|
"isVirtual": true,
|
|
337
372
|
"isOverride": false,
|
|
373
|
+
"visibility": "Public",
|
|
338
374
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Diagnostics.Internal.UnexpectedConnectionTypeEventData",
|
|
339
375
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
340
376
|
}
|
|
@@ -349,6 +385,7 @@
|
|
|
349
385
|
"normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Diagnostics.EventDefinitionBase,System.Func_3[[Microsoft.EntityFrameworkCore.Diagnostics.EventDefinitionBase,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60],[Microsoft.EntityFrameworkCore.Diagnostics.EventData,Microsoft.EntityFrameworkCore,Version=10.0.1.0,Culture=neutral,PublicKeyToken=adb9793829ddae60],[System.String,System.Private.CoreLib,Version=10.0.0.0,Culture=neutral,PublicKeyToken=7cec85d7bea7798e]],System.Type):void|static=false",
|
|
350
386
|
"isStatic": false,
|
|
351
387
|
"parameterCount": 3,
|
|
388
|
+
"visibility": "Public",
|
|
352
389
|
"declaringClrType": "Microsoft.EntityFrameworkCore.Sqlite.Diagnostics.Internal.UnexpectedConnectionTypeEventData",
|
|
353
390
|
"declaringAssemblyName": "Microsoft.EntityFrameworkCore.Sqlite"
|
|
354
391
|
}
|