@tsonic/efcore-sqlserver 10.0.1 → 10.0.2

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.
Files changed (142) hide show
  1. package/Azure/bindings.json +686 -17
  2. package/Azure/internal/index.d.ts +37 -7
  3. package/Azure.Core/bindings.json +1048 -19
  4. package/Azure.Core/internal/index.d.ts +40 -9
  5. package/Azure.Core.Cryptography/bindings.json +5 -0
  6. package/Azure.Core.Diagnostics/bindings.json +56 -0
  7. package/Azure.Core.Diagnostics/internal/index.d.ts +9 -3
  8. package/Azure.Core.Diagnostics.d.ts +2 -2
  9. package/Azure.Core.Extensions/bindings.json +17 -0
  10. package/Azure.Core.GeoJson/bindings.json +362 -0
  11. package/Azure.Core.Pipeline/bindings.json +450 -3
  12. package/Azure.Core.Pipeline/internal/index.d.ts +27 -4
  13. package/Azure.Core.Pipeline.d.ts +2 -2
  14. package/Azure.Core.Serialization/bindings.json +89 -1
  15. package/Azure.Core.Serialization/internal/index.d.ts +1 -0
  16. package/Azure.Core.d.ts +1 -1
  17. package/Azure.Identity/bindings.json +1039 -58
  18. package/Azure.Identity/internal/index.d.ts +51 -30
  19. package/Azure.Identity.d.ts +1 -1
  20. package/Azure.Messaging/bindings.json +69 -0
  21. package/Azure.Messaging/internal/index.d.ts +6 -1
  22. package/Azure.d.ts +1 -1
  23. package/Microsoft.Data/bindings.json +16 -0
  24. package/Microsoft.Data.Sql/bindings.json +16 -0
  25. package/Microsoft.Data.SqlClient/bindings.json +2482 -38
  26. package/Microsoft.Data.SqlClient/internal/index.d.ts +114 -22
  27. package/Microsoft.Data.SqlClient.DataClassification/bindings.json +66 -0
  28. package/Microsoft.Data.SqlClient.Diagnostics/bindings.json +639 -0
  29. package/Microsoft.Data.SqlClient.Server/bindings.json +163 -0
  30. package/Microsoft.Data.SqlTypes/bindings.json +73 -0
  31. package/Microsoft.EntityFrameworkCore/bindings.json +700 -2
  32. package/Microsoft.EntityFrameworkCore/internal/index.d.ts +9 -2
  33. package/Microsoft.EntityFrameworkCore.Diagnostics/bindings.json +35 -0
  34. package/Microsoft.EntityFrameworkCore.Infrastructure/bindings.json +107 -1
  35. package/Microsoft.EntityFrameworkCore.Infrastructure/internal/index.d.ts +1 -0
  36. package/Microsoft.EntityFrameworkCore.Metadata/bindings.json +27 -0
  37. package/Microsoft.EntityFrameworkCore.Metadata.Builders/bindings.json +78 -0
  38. package/Microsoft.EntityFrameworkCore.Metadata.Conventions/bindings.json +853 -10
  39. package/Microsoft.EntityFrameworkCore.Metadata.Conventions/internal/index.d.ts +85 -13
  40. package/Microsoft.EntityFrameworkCore.Metadata.Conventions.d.ts +3 -2
  41. package/Microsoft.EntityFrameworkCore.Metadata.Internal/bindings.json +10 -0
  42. package/Microsoft.EntityFrameworkCore.Migrations/bindings.json +917 -0
  43. package/Microsoft.EntityFrameworkCore.Migrations/internal/index.d.ts +56 -6
  44. package/Microsoft.EntityFrameworkCore.Migrations.Operations/bindings.json +41 -0
  45. package/Microsoft.EntityFrameworkCore.Migrations.d.ts +6 -5
  46. package/Microsoft.EntityFrameworkCore.SqlServer.Design.Internal/bindings.json +122 -0
  47. package/Microsoft.EntityFrameworkCore.SqlServer.Design.Internal/internal/index.d.ts +10 -2
  48. package/Microsoft.EntityFrameworkCore.SqlServer.Design.Internal.d.ts +1 -1
  49. package/Microsoft.EntityFrameworkCore.SqlServer.Diagnostics.Internal/bindings.json +28 -0
  50. package/Microsoft.EntityFrameworkCore.SqlServer.Extensions.Internal/bindings.json +27 -0
  51. package/Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal/bindings.json +421 -8
  52. package/Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal/internal/index.d.ts +34 -10
  53. package/Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal.d.ts +3 -2
  54. package/Microsoft.EntityFrameworkCore.SqlServer.Internal/bindings.json +87 -0
  55. package/Microsoft.EntityFrameworkCore.SqlServer.Metadata.Internal/bindings.json +56 -0
  56. package/Microsoft.EntityFrameworkCore.SqlServer.Migrations.Internal/bindings.json +95 -0
  57. package/Microsoft.EntityFrameworkCore.SqlServer.Migrations.Internal/internal/index.d.ts +8 -2
  58. package/Microsoft.EntityFrameworkCore.SqlServer.Migrations.Internal.d.ts +1 -1
  59. package/Microsoft.EntityFrameworkCore.SqlServer.Query.Internal/bindings.json +2415 -31
  60. package/Microsoft.EntityFrameworkCore.SqlServer.Query.Internal/internal/index.d.ts +209 -30
  61. package/Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlExpressions/bindings.json +39 -0
  62. package/Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlExpressions/internal/index.d.ts +8 -3
  63. package/Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlExpressions.d.ts +2 -2
  64. package/Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.d.ts +5 -5
  65. package/Microsoft.EntityFrameworkCore.SqlServer.Scaffolding.Internal/bindings.json +32 -0
  66. package/Microsoft.EntityFrameworkCore.SqlServer.Storage.Internal/bindings.json +1816 -67
  67. package/Microsoft.EntityFrameworkCore.SqlServer.Storage.Internal/internal/index.d.ts +197 -27
  68. package/Microsoft.EntityFrameworkCore.SqlServer.Storage.Internal.d.ts +2 -2
  69. package/Microsoft.EntityFrameworkCore.SqlServer.Update.Internal/bindings.json +397 -4
  70. package/Microsoft.EntityFrameworkCore.SqlServer.Update.Internal/internal/index.d.ts +38 -7
  71. package/Microsoft.EntityFrameworkCore.SqlServer.Update.Internal.d.ts +3 -3
  72. package/Microsoft.EntityFrameworkCore.SqlServer.ValueGeneration.Internal/bindings.json +138 -1
  73. package/Microsoft.EntityFrameworkCore.SqlServer.ValueGeneration.Internal/internal/index.d.ts +16 -3
  74. package/Microsoft.EntityFrameworkCore.SqlServer.ValueGeneration.Internal.d.ts +3 -1
  75. package/Microsoft.EntityFrameworkCore.d.ts +1 -1
  76. package/Microsoft.Extensions.DependencyInjection/bindings.json +10 -0
  77. package/Microsoft.Identity.Client/bindings.json +1941 -39
  78. package/Microsoft.Identity.Client/internal/index.d.ts +94 -28
  79. package/Microsoft.Identity.Client.Advanced/bindings.json +5 -0
  80. package/Microsoft.Identity.Client.AppConfig/bindings.json +21 -0
  81. package/Microsoft.Identity.Client.AuthScheme/bindings.json +6 -0
  82. package/Microsoft.Identity.Client.AuthScheme.PoP/bindings.json +3 -0
  83. package/Microsoft.Identity.Client.Cache/bindings.json +34 -0
  84. package/Microsoft.Identity.Client.Extensibility/bindings.json +80 -10
  85. package/Microsoft.Identity.Client.Extensibility/internal/index.d.ts +6 -5
  86. package/Microsoft.Identity.Client.Extensions.Msal/bindings.json +117 -0
  87. package/Microsoft.Identity.Client.Extensions.Msal/internal/index.d.ts +2 -1
  88. package/Microsoft.Identity.Client.Extensions.Msal.d.ts +1 -1
  89. package/Microsoft.Identity.Client.Kerberos/bindings.json +77 -0
  90. package/Microsoft.Identity.Client.ManagedIdentity/bindings.json +31 -0
  91. package/Microsoft.Identity.Client.Platforms.Features.DesktopOs.Kerberos/bindings.json +18 -1
  92. package/Microsoft.Identity.Client.Platforms.Features.DesktopOs.Kerberos/internal/index.d.ts +1 -0
  93. package/Microsoft.Identity.Client.RP/bindings.json +10 -0
  94. package/Microsoft.Identity.Client.Region/bindings.json +29 -0
  95. package/Microsoft.Identity.Client.SSHCertificates/bindings.json +6 -0
  96. package/Microsoft.Identity.Client.TelemetryCore.TelemetryClient/bindings.json +6 -0
  97. package/Microsoft.Identity.Client.Utils/bindings.json +10 -0
  98. package/Microsoft.Identity.Client.Utils.Windows/bindings.json +6 -0
  99. package/Microsoft.IdentityModel.Abstractions/bindings.json +135 -1
  100. package/Microsoft.IdentityModel.Abstractions/internal/index.d.ts +1 -0
  101. package/Microsoft.IdentityModel.JsonWebTokens/bindings.json +252 -6
  102. package/Microsoft.IdentityModel.JsonWebTokens/internal/index.d.ts +12 -5
  103. package/Microsoft.IdentityModel.JsonWebTokens.d.ts +1 -1
  104. package/Microsoft.IdentityModel.Logging/bindings.json +122 -2
  105. package/Microsoft.IdentityModel.Logging/internal/index.d.ts +8 -3
  106. package/Microsoft.IdentityModel.Logging.d.ts +1 -1
  107. package/Microsoft.IdentityModel.Protocols/bindings.json +155 -1
  108. package/Microsoft.IdentityModel.Protocols/internal/index.d.ts +1 -0
  109. package/Microsoft.IdentityModel.Protocols.Configuration/bindings.json +30 -0
  110. package/Microsoft.IdentityModel.Protocols.Configuration/internal/index.d.ts +2 -1
  111. package/Microsoft.IdentityModel.Protocols.Configuration.d.ts +1 -1
  112. package/Microsoft.IdentityModel.Protocols.OpenIdConnect/bindings.json +645 -0
  113. package/Microsoft.IdentityModel.Protocols.OpenIdConnect/internal/index.d.ts +17 -2
  114. package/Microsoft.IdentityModel.Protocols.OpenIdConnect.Configuration/bindings.json +17 -0
  115. package/Microsoft.IdentityModel.Protocols.OpenIdConnect.d.ts +1 -1
  116. package/Microsoft.IdentityModel.Tokens/bindings.json +2486 -77
  117. package/Microsoft.IdentityModel.Tokens/internal/index.d.ts +135 -35
  118. package/Microsoft.IdentityModel.Tokens.Configuration/bindings.json +10 -0
  119. package/Microsoft.IdentityModel.Tokens.d.ts +1 -1
  120. package/Microsoft.SqlServer.Server/bindings.json +144 -0
  121. package/System/bindings.json +63 -0
  122. package/System.ClientModel/bindings.json +256 -11
  123. package/System.ClientModel/internal/index.d.ts +22 -6
  124. package/System.ClientModel.Primitives/bindings.json +1673 -120
  125. package/System.ClientModel.Primitives/internal/index.d.ts +111 -17
  126. package/System.ClientModel.Primitives.d.ts +2 -2
  127. package/System.Configuration/bindings.json +5382 -321
  128. package/System.Configuration/internal/index.d.ts +323 -51
  129. package/System.Configuration.Internal/bindings.json +193 -1
  130. package/System.Configuration.Provider/bindings.json +69 -1
  131. package/System.Configuration.Provider/internal/index.d.ts +3 -1
  132. package/System.Configuration.Provider.d.ts +1 -1
  133. package/System.Configuration.d.ts +3 -3
  134. package/System.Diagnostics/bindings.json +5 -0
  135. package/System.Drawing.Configuration/bindings.json +25 -0
  136. package/System.Drawing.Configuration/internal/index.d.ts +11 -3
  137. package/System.Drawing.Configuration.d.ts +5 -2
  138. package/System.IdentityModel.Tokens.Jwt/bindings.json +646 -36
  139. package/System.IdentityModel.Tokens.Jwt/internal/index.d.ts +33 -19
  140. package/System.Security.Cryptography/bindings.json +31 -0
  141. package/System.Text.Json.Serialization/bindings.json +10 -0
  142. package/package.json +1 -1
@@ -6,16 +6,66 @@
6
6
  import type { sbyte, byte, short, ushort, int, uint, long, ulong, int128, uint128, half, float, double, decimal, nint, nuint, char } from '@tsonic/core/types.js';
7
7
 
8
8
  // Import types from other namespaces
9
- import type { IReadOnlyList } from "@tsonic/dotnet/System.Collections.Generic.js";
9
+ import type { SqlServerCreateDatabaseOperation, SqlServerDropDatabaseOperation } from "../../Microsoft.EntityFrameworkCore.Migrations.Operations/internal/index.js";
10
+ import type { IEnumerable, IReadOnlyList } from "@tsonic/dotnet/System.Collections.Generic.js";
10
11
  import * as System_Internal from "@tsonic/dotnet/System.js";
11
- import type { Boolean as ClrBoolean, Object as ClrObject } from "@tsonic/dotnet/System.js";
12
- import type { IModel } from "@tsonic/efcore/Microsoft.EntityFrameworkCore.Metadata.js";
12
+ import type { Boolean as ClrBoolean, Object as ClrObject, String as ClrString, Void } from "@tsonic/dotnet/System.js";
13
+ import type { IColumn, IModel, ITableIndex } from "@tsonic/efcore/Microsoft.EntityFrameworkCore.Metadata.js";
13
14
  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";
15
+ import type { IMigrationsSqlGenerator, MigrationBuilder, MigrationCommand, MigrationCommandListBuilder, MigrationsSqlGenerationOptions, MigrationsSqlGenerator, MigrationsSqlGeneratorDependencies, ReferentialAction } from "@tsonic/efcore/Microsoft.EntityFrameworkCore.Migrations.js";
16
+ import type { AddCheckConstraintOperation, AddColumnOperation, AddForeignKeyOperation, AddPrimaryKeyOperation, AlterColumnOperation, AlterDatabaseOperation, AlterTableOperation, ColumnOperation, CreateIndexOperation, CreateSequenceOperation, CreateTableOperation, DeleteDataOperation, DropColumnOperation, DropForeignKeyOperation, DropIndexOperation, DropPrimaryKeyOperation, DropTableOperation, EnsureSchemaOperation, InsertDataOperation, MigrationOperation, RenameColumnOperation, RenameIndexOperation, RenameSequenceOperation, RenameTableOperation, RestartSequenceOperation, SequenceOperation, SqlOperation, UpdateDataOperation } from "@tsonic/efcore/Microsoft.EntityFrameworkCore.Migrations.Operations.js";
16
17
  import type { ICommandBatchPreparer } from "@tsonic/efcore/Microsoft.EntityFrameworkCore.Update.js";
17
18
 
18
- export interface SqlServerMigrationsSqlGenerator$instance extends MigrationsSqlGenerator {
19
+ export abstract class SqlServerMigrationsSqlGenerator$protected {
20
+ protected AddDescription(builder: MigrationCommandListBuilder, description: string, schema: string, table: string, column?: string, omitVariableDeclarations?: boolean): void;
21
+ protected ColumnDefinition(schema: string, table: string, name: string, operation: ColumnOperation, model: IModel, builder: MigrationCommandListBuilder): void;
22
+ protected ComputedColumnDefinition(schema: string, table: string, name: string, operation: ColumnOperation, model: IModel, builder: MigrationCommandListBuilder): void;
23
+ protected CreateIndexes(indexes: IEnumerable<ITableIndex>, builder: MigrationCommandListBuilder): void;
24
+ protected DefaultValue(defaultValue: unknown, defaultValueSql: string, columnType: string, constraintName: string, builder: MigrationCommandListBuilder): void;
25
+ protected DropDefaultConstraint(schema: string, tableName: string, columnName: string, defaultConstraintName: string, builder: MigrationCommandListBuilder): void;
26
+ protected DropDescription(builder: MigrationCommandListBuilder, schema: string, table: string, column?: string, omitVariableDeclarations?: boolean): void;
27
+ protected DropIndexes(indexes: IEnumerable<ITableIndex>, builder: MigrationCommandListBuilder): void;
28
+ protected ForeignKeyAction(referentialAction: ReferentialAction, builder: MigrationCommandListBuilder): void;
29
+ protected Generate(operation: MigrationOperation, model: IModel, builder: MigrationCommandListBuilder): void;
30
+ protected Generate(operation: AddCheckConstraintOperation, model: IModel, builder: MigrationCommandListBuilder): void;
31
+ protected Generate(operation: AlterColumnOperation, model: IModel, builder: MigrationCommandListBuilder): void;
32
+ protected Generate(operation: RenameIndexOperation, model: IModel, builder: MigrationCommandListBuilder): void;
33
+ protected Generate(operation: RenameSequenceOperation, model: IModel, builder: MigrationCommandListBuilder): void;
34
+ protected Generate(operation: RestartSequenceOperation, model: IModel, builder: MigrationCommandListBuilder): void;
35
+ protected Generate(operation: RenameTableOperation, model: IModel, builder: MigrationCommandListBuilder): void;
36
+ protected Generate(operation: EnsureSchemaOperation, model: IModel, builder: MigrationCommandListBuilder): void;
37
+ protected Generate(operation: CreateSequenceOperation, model: IModel, builder: MigrationCommandListBuilder): void;
38
+ protected Generate(operation: SqlServerCreateDatabaseOperation, model: IModel, builder: MigrationCommandListBuilder): void;
39
+ protected Generate(operation: SqlServerDropDatabaseOperation, model: IModel, builder: MigrationCommandListBuilder): void;
40
+ protected Generate(operation: AlterDatabaseOperation, model: IModel, builder: MigrationCommandListBuilder): void;
41
+ protected Generate(operation: AlterTableOperation, model: IModel, builder: MigrationCommandListBuilder): void;
42
+ protected Generate(operation: RenameColumnOperation, model: IModel, builder: MigrationCommandListBuilder): void;
43
+ protected Generate(operation: SqlOperation, model: IModel, builder: MigrationCommandListBuilder): void;
44
+ protected Generate(operation: DeleteDataOperation, model: IModel, builder: MigrationCommandListBuilder): void;
45
+ protected Generate(operation: UpdateDataOperation, model: IModel, builder: MigrationCommandListBuilder): void;
46
+ protected Generate(operation: AddColumnOperation, model: IModel, builder: MigrationCommandListBuilder, terminate: boolean): void;
47
+ protected Generate(operation: AddForeignKeyOperation, model: IModel, builder: MigrationCommandListBuilder, terminate?: boolean): void;
48
+ protected Generate(operation: AddPrimaryKeyOperation, model: IModel, builder: MigrationCommandListBuilder, terminate?: boolean): void;
49
+ protected Generate(operation: CreateTableOperation, model: IModel, builder: MigrationCommandListBuilder, terminate?: boolean): void;
50
+ protected Generate(operation: DropTableOperation, model: IModel, builder: MigrationCommandListBuilder, terminate?: boolean): void;
51
+ protected Generate(operation: CreateIndexOperation, model: IModel, builder: MigrationCommandListBuilder, terminate?: boolean): void;
52
+ protected Generate(operation: DropPrimaryKeyOperation, model: IModel, builder: MigrationCommandListBuilder, terminate?: boolean): void;
53
+ protected Generate(operation: DropForeignKeyOperation, model: IModel, builder: MigrationCommandListBuilder, terminate?: boolean): void;
54
+ protected Generate(operation: DropIndexOperation, model: IModel, builder: MigrationCommandListBuilder, terminate: boolean): void;
55
+ protected Generate(operation: DropColumnOperation, model: IModel, builder: MigrationCommandListBuilder, terminate?: boolean): void;
56
+ protected Generate(operation: InsertDataOperation, model: IModel, builder: MigrationCommandListBuilder, terminate?: boolean): void;
57
+ protected GetIndexesToRebuild(column: IColumn, currentOperation: MigrationOperation): IEnumerable<ITableIndex>;
58
+ protected IndexOptions(operation: MigrationOperation, model: IModel, builder: MigrationCommandListBuilder): void;
59
+ protected IndexTraits(operation: MigrationOperation, model: IModel, builder: MigrationCommandListBuilder): void;
60
+ protected Rename(name: string, newName: string, builder: MigrationCommandListBuilder): void;
61
+ protected Rename(name: string, newName: string, type: string, builder: MigrationCommandListBuilder): void;
62
+ protected SequenceOptions(schema: string, name: string, operation: SequenceOperation, model: IModel, builder: MigrationCommandListBuilder, forAlter: boolean): void;
63
+ protected Transfer(newSchema: string, schema: string, name: string, builder: MigrationCommandListBuilder): void;
64
+ protected UseLegacyIndexFilters(operation: CreateIndexOperation, model: IModel): boolean;
65
+ }
66
+
67
+
68
+ export interface SqlServerMigrationsSqlGenerator$instance extends SqlServerMigrationsSqlGenerator$protected, MigrationsSqlGenerator {
19
69
  Generate(operations: IReadOnlyList<MigrationOperation>, model?: IModel, options?: MigrationsSqlGenerationOptions): IReadOnlyList<MigrationCommand>;
20
70
  }
21
71
 
@@ -16,6 +16,24 @@
16
16
  "isSealed": false,
17
17
  "isStatic": false,
18
18
  "arity": 0,
19
+ "baseType": {
20
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Migrations.Operations.DatabaseOperation",
21
+ "clrName": "Microsoft.EntityFrameworkCore.Migrations.Operations.DatabaseOperation"
22
+ },
23
+ "interfaces": [
24
+ {
25
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Infrastructure.IAnnotatable",
26
+ "clrName": "Microsoft.EntityFrameworkCore.Infrastructure.IAnnotatable"
27
+ },
28
+ {
29
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Infrastructure.IReadOnlyAnnotatable",
30
+ "clrName": "Microsoft.EntityFrameworkCore.Infrastructure.IReadOnlyAnnotatable"
31
+ },
32
+ {
33
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Metadata.IMutableAnnotatable",
34
+ "clrName": "Microsoft.EntityFrameworkCore.Metadata.IMutableAnnotatable"
35
+ }
36
+ ],
19
37
  "methods": [],
20
38
  "properties": [
21
39
  {
@@ -33,6 +51,7 @@
33
51
  "isAbstract": false,
34
52
  "isVirtual": true,
35
53
  "isOverride": false,
54
+ "visibility": "Public",
36
55
  "declaringClrType": "Microsoft.EntityFrameworkCore.Migrations.Operations.SqlServerCreateDatabaseOperation",
37
56
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
38
57
  },
@@ -51,6 +70,7 @@
51
70
  "isAbstract": false,
52
71
  "isVirtual": true,
53
72
  "isOverride": false,
73
+ "visibility": "Public",
54
74
  "declaringClrType": "Microsoft.EntityFrameworkCore.Migrations.Operations.SqlServerCreateDatabaseOperation",
55
75
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
56
76
  }
@@ -65,6 +85,7 @@
65
85
  "normalizedSignature": "constructor|():void|static=false",
66
86
  "isStatic": false,
67
87
  "parameterCount": 0,
88
+ "visibility": "Public",
68
89
  "declaringClrType": "Microsoft.EntityFrameworkCore.Migrations.Operations.SqlServerCreateDatabaseOperation",
69
90
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
70
91
  }
@@ -81,6 +102,24 @@
81
102
  "isSealed": false,
82
103
  "isStatic": false,
83
104
  "arity": 0,
105
+ "baseType": {
106
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Migrations.Operations.MigrationOperation",
107
+ "clrName": "Microsoft.EntityFrameworkCore.Migrations.Operations.MigrationOperation"
108
+ },
109
+ "interfaces": [
110
+ {
111
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Infrastructure.IAnnotatable",
112
+ "clrName": "Microsoft.EntityFrameworkCore.Infrastructure.IAnnotatable"
113
+ },
114
+ {
115
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Infrastructure.IReadOnlyAnnotatable",
116
+ "clrName": "Microsoft.EntityFrameworkCore.Infrastructure.IReadOnlyAnnotatable"
117
+ },
118
+ {
119
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Metadata.IMutableAnnotatable",
120
+ "clrName": "Microsoft.EntityFrameworkCore.Metadata.IMutableAnnotatable"
121
+ }
122
+ ],
84
123
  "methods": [],
85
124
  "properties": [
86
125
  {
@@ -98,6 +137,7 @@
98
137
  "isAbstract": false,
99
138
  "isVirtual": true,
100
139
  "isOverride": false,
140
+ "visibility": "Public",
101
141
  "declaringClrType": "Microsoft.EntityFrameworkCore.Migrations.Operations.SqlServerDropDatabaseOperation",
102
142
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
103
143
  }
@@ -112,6 +152,7 @@
112
152
  "normalizedSignature": "constructor|():void|static=false",
113
153
  "isStatic": false,
114
154
  "parameterCount": 0,
155
+ "visibility": "Public",
115
156
  "declaringClrType": "Microsoft.EntityFrameworkCore.Migrations.Operations.SqlServerDropDatabaseOperation",
116
157
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
117
158
  }
@@ -6,11 +6,12 @@
6
6
  import * as Internal from './Microsoft.EntityFrameworkCore.Migrations/internal/index.js';
7
7
 
8
8
  // Cross-namespace type imports for constraints
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';
11
- import type { IModel } 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';
9
+ import type { SqlServerCreateDatabaseOperation, SqlServerDropDatabaseOperation } from './Microsoft.EntityFrameworkCore.Migrations.Operations/internal/index.js';
10
+ import type { IEnumerable, IReadOnlyList } from '@tsonic/dotnet/System.Collections.Generic.js';
11
+ import type { Boolean as ClrBoolean, Object as ClrObject, String as ClrString, Void } from '@tsonic/dotnet/System.js';
12
+ import type { IColumn, IModel, ITableIndex } from '@tsonic/efcore/Microsoft.EntityFrameworkCore.Metadata.js';
13
+ import type { IMigrationsSqlGenerator, MigrationBuilder, MigrationCommand, MigrationCommandListBuilder, MigrationsSqlGenerationOptions, MigrationsSqlGenerator, MigrationsSqlGeneratorDependencies, ReferentialAction } from '@tsonic/efcore/Microsoft.EntityFrameworkCore.Migrations.js';
14
+ import type { AddCheckConstraintOperation, AddColumnOperation, AddForeignKeyOperation, AddPrimaryKeyOperation, AlterColumnOperation, AlterDatabaseOperation, AlterTableOperation, ColumnOperation, CreateIndexOperation, CreateSequenceOperation, CreateTableOperation, DeleteDataOperation, DropColumnOperation, DropForeignKeyOperation, DropIndexOperation, DropPrimaryKeyOperation, DropTableOperation, EnsureSchemaOperation, InsertDataOperation, MigrationOperation, RenameColumnOperation, RenameIndexOperation, RenameSequenceOperation, RenameTableOperation, RestartSequenceOperation, SequenceOperation, SqlOperation, UpdateDataOperation } from '@tsonic/efcore/Microsoft.EntityFrameworkCore.Migrations.Operations.js';
14
15
  import type { ICommandBatchPreparer } from '@tsonic/efcore/Microsoft.EntityFrameworkCore.Update.js';
15
16
 
16
17
  // Public API exports (curated - no internal $instance/$views leakage)
@@ -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.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Design.Internal.SqlServerAnnotationCodeGenerator::GenerateFluentApiCalls(Microsoft.EntityFrameworkCore.Metadata.IModel,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,7 @@
31
41
  "isVirtual": true,
32
42
  "isOverride": true,
33
43
  "isSealed": false,
44
+ "visibility": "Public",
34
45
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Design.Internal.SqlServerAnnotationCodeGenerator",
35
46
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
36
47
  "isExtensionMethod": false
@@ -50,6 +61,7 @@
50
61
  "isVirtual": true,
51
62
  "isOverride": true,
52
63
  "isSealed": false,
64
+ "visibility": "Public",
53
65
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Design.Internal.SqlServerAnnotationCodeGenerator",
54
66
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
55
67
  "isExtensionMethod": false
@@ -69,6 +81,87 @@
69
81
  "isVirtual": true,
70
82
  "isOverride": true,
71
83
  "isSealed": false,
84
+ "visibility": "Public",
85
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Design.Internal.SqlServerAnnotationCodeGenerator",
86
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
87
+ "isExtensionMethod": false
88
+ },
89
+ {
90
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Design.Internal.SqlServerAnnotationCodeGenerator::IsHandledByConvention(Microsoft.EntityFrameworkCore.Metadata.IModel,Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation):System.Boolean",
91
+ "clrName": "IsHandledByConvention",
92
+ "metadataToken": 100665263,
93
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Metadata.IModel,Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation):System.Boolean",
94
+ "normalizedSignature": "IsHandledByConvention|(Microsoft.EntityFrameworkCore.Metadata.IModel,Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation):System.Boolean|static=false",
95
+ "emitScope": "ClassSurface",
96
+ "provenance": "Original",
97
+ "arity": 0,
98
+ "parameterCount": 2,
99
+ "isStatic": false,
100
+ "isAbstract": false,
101
+ "isVirtual": true,
102
+ "isOverride": true,
103
+ "isSealed": false,
104
+ "visibility": "Protected",
105
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Design.Internal.SqlServerAnnotationCodeGenerator",
106
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
107
+ "isExtensionMethod": false
108
+ },
109
+ {
110
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Design.Internal.SqlServerAnnotationCodeGenerator::IsHandledByConvention(Microsoft.EntityFrameworkCore.Metadata.IProperty,Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation):System.Boolean",
111
+ "clrName": "IsHandledByConvention",
112
+ "metadataToken": 100665264,
113
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Metadata.IProperty,Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation):System.Boolean",
114
+ "normalizedSignature": "IsHandledByConvention|(Microsoft.EntityFrameworkCore.Metadata.IProperty,Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation):System.Boolean|static=false",
115
+ "emitScope": "ClassSurface",
116
+ "provenance": "Original",
117
+ "arity": 0,
118
+ "parameterCount": 2,
119
+ "isStatic": false,
120
+ "isAbstract": false,
121
+ "isVirtual": true,
122
+ "isOverride": true,
123
+ "isSealed": false,
124
+ "visibility": "Protected",
125
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Design.Internal.SqlServerAnnotationCodeGenerator",
126
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
127
+ "isExtensionMethod": false
128
+ },
129
+ {
130
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Design.Internal.SqlServerAnnotationCodeGenerator::GenerateFluentApi(Microsoft.EntityFrameworkCore.Metadata.IKey,Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation):Microsoft.EntityFrameworkCore.Design.MethodCallCodeFragment",
131
+ "clrName": "GenerateFluentApi",
132
+ "metadataToken": 100665265,
133
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Metadata.IKey,Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation):Microsoft.EntityFrameworkCore.Design.MethodCallCodeFragment",
134
+ "normalizedSignature": "GenerateFluentApi|(Microsoft.EntityFrameworkCore.Metadata.IKey,Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation):Microsoft.EntityFrameworkCore.Design.MethodCallCodeFragment|static=false",
135
+ "emitScope": "ClassSurface",
136
+ "provenance": "Original",
137
+ "arity": 0,
138
+ "parameterCount": 2,
139
+ "isStatic": false,
140
+ "isAbstract": false,
141
+ "isVirtual": true,
142
+ "isOverride": true,
143
+ "isSealed": false,
144
+ "visibility": "Protected",
145
+ "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Design.Internal.SqlServerAnnotationCodeGenerator",
146
+ "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
147
+ "isExtensionMethod": false
148
+ },
149
+ {
150
+ "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Design.Internal.SqlServerAnnotationCodeGenerator::GenerateFluentApi(Microsoft.EntityFrameworkCore.Metadata.IIndex,Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation):Microsoft.EntityFrameworkCore.Design.MethodCallCodeFragment",
151
+ "clrName": "GenerateFluentApi",
152
+ "metadataToken": 100665266,
153
+ "canonicalSignature": "(Microsoft.EntityFrameworkCore.Metadata.IIndex,Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation):Microsoft.EntityFrameworkCore.Design.MethodCallCodeFragment",
154
+ "normalizedSignature": "GenerateFluentApi|(Microsoft.EntityFrameworkCore.Metadata.IIndex,Microsoft.EntityFrameworkCore.Infrastructure.IAnnotation):Microsoft.EntityFrameworkCore.Design.MethodCallCodeFragment|static=false",
155
+ "emitScope": "ClassSurface",
156
+ "provenance": "Original",
157
+ "arity": 0,
158
+ "parameterCount": 2,
159
+ "isStatic": false,
160
+ "isAbstract": false,
161
+ "isVirtual": true,
162
+ "isOverride": true,
163
+ "isSealed": false,
164
+ "visibility": "Protected",
72
165
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Design.Internal.SqlServerAnnotationCodeGenerator",
73
166
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
74
167
  "isExtensionMethod": false
@@ -85,6 +178,7 @@
85
178
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Design.AnnotationCodeGeneratorDependencies):void|static=false",
86
179
  "isStatic": false,
87
180
  "parameterCount": 1,
181
+ "visibility": "Public",
88
182
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Design.Internal.SqlServerAnnotationCodeGenerator",
89
183
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
90
184
  }
@@ -101,6 +195,10 @@
101
195
  "isSealed": false,
102
196
  "isStatic": false,
103
197
  "arity": 0,
198
+ "baseType": {
199
+ "stableId": "Microsoft.EntityFrameworkCore.Relational:Microsoft.EntityFrameworkCore.Design.Internal.RelationalCSharpRuntimeAnnotationCodeGenerator",
200
+ "clrName": "Microsoft.EntityFrameworkCore.Design.Internal.RelationalCSharpRuntimeAnnotationCodeGenerator"
201
+ },
104
202
  "methods": [
105
203
  {
106
204
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Design.Internal.SqlServerCSharpRuntimeAnnotationCodeGenerator::Generate(Microsoft.EntityFrameworkCore.Metadata.IModel,Microsoft.EntityFrameworkCore.Design.Internal.CSharpRuntimeAnnotationCodeGeneratorParameters):System.Void",
@@ -117,6 +215,7 @@
117
215
  "isVirtual": true,
118
216
  "isOverride": true,
119
217
  "isSealed": false,
218
+ "visibility": "Public",
120
219
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Design.Internal.SqlServerCSharpRuntimeAnnotationCodeGenerator",
121
220
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
122
221
  "isExtensionMethod": false
@@ -136,6 +235,7 @@
136
235
  "isVirtual": true,
137
236
  "isOverride": true,
138
237
  "isSealed": false,
238
+ "visibility": "Public",
139
239
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Design.Internal.SqlServerCSharpRuntimeAnnotationCodeGenerator",
140
240
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
141
241
  "isExtensionMethod": false
@@ -155,6 +255,7 @@
155
255
  "isVirtual": true,
156
256
  "isOverride": true,
157
257
  "isSealed": false,
258
+ "visibility": "Public",
158
259
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Design.Internal.SqlServerCSharpRuntimeAnnotationCodeGenerator",
159
260
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
160
261
  "isExtensionMethod": false
@@ -174,6 +275,7 @@
174
275
  "isVirtual": true,
175
276
  "isOverride": true,
176
277
  "isSealed": false,
278
+ "visibility": "Public",
177
279
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Design.Internal.SqlServerCSharpRuntimeAnnotationCodeGenerator",
178
280
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
179
281
  "isExtensionMethod": false
@@ -193,6 +295,7 @@
193
295
  "isVirtual": true,
194
296
  "isOverride": true,
195
297
  "isSealed": false,
298
+ "visibility": "Public",
196
299
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Design.Internal.SqlServerCSharpRuntimeAnnotationCodeGenerator",
197
300
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
198
301
  "isExtensionMethod": false
@@ -212,6 +315,7 @@
212
315
  "isVirtual": true,
213
316
  "isOverride": true,
214
317
  "isSealed": false,
318
+ "visibility": "Public",
215
319
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Design.Internal.SqlServerCSharpRuntimeAnnotationCodeGenerator",
216
320
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
217
321
  "isExtensionMethod": false
@@ -231,6 +335,7 @@
231
335
  "isVirtual": true,
232
336
  "isOverride": true,
233
337
  "isSealed": false,
338
+ "visibility": "Public",
234
339
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Design.Internal.SqlServerCSharpRuntimeAnnotationCodeGenerator",
235
340
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
236
341
  "isExtensionMethod": false
@@ -250,6 +355,7 @@
250
355
  "isVirtual": true,
251
356
  "isOverride": true,
252
357
  "isSealed": false,
358
+ "visibility": "Public",
253
359
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Design.Internal.SqlServerCSharpRuntimeAnnotationCodeGenerator",
254
360
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
255
361
  "isExtensionMethod": false
@@ -269,6 +375,7 @@
269
375
  "isVirtual": true,
270
376
  "isOverride": true,
271
377
  "isSealed": false,
378
+ "visibility": "Public",
272
379
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Design.Internal.SqlServerCSharpRuntimeAnnotationCodeGenerator",
273
380
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
274
381
  "isExtensionMethod": false
@@ -288,6 +395,7 @@
288
395
  "isVirtual": true,
289
396
  "isOverride": true,
290
397
  "isSealed": false,
398
+ "visibility": "Public",
291
399
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Design.Internal.SqlServerCSharpRuntimeAnnotationCodeGenerator",
292
400
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
293
401
  "isExtensionMethod": false
@@ -307,6 +415,7 @@
307
415
  "isVirtual": true,
308
416
  "isOverride": true,
309
417
  "isSealed": false,
418
+ "visibility": "Public",
310
419
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Design.Internal.SqlServerCSharpRuntimeAnnotationCodeGenerator",
311
420
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
312
421
  "isExtensionMethod": false
@@ -323,6 +432,7 @@
323
432
  "normalizedSignature": "constructor|(Microsoft.EntityFrameworkCore.Design.Internal.CSharpRuntimeAnnotationCodeGeneratorDependencies,Microsoft.EntityFrameworkCore.Design.Internal.RelationalCSharpRuntimeAnnotationCodeGeneratorDependencies):void|static=false",
324
433
  "isStatic": false,
325
434
  "parameterCount": 2,
435
+ "visibility": "Public",
326
436
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Design.Internal.SqlServerCSharpRuntimeAnnotationCodeGenerator",
327
437
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
328
438
  }
@@ -339,6 +449,16 @@
339
449
  "isSealed": false,
340
450
  "isStatic": false,
341
451
  "arity": 0,
452
+ "baseType": {
453
+ "stableId": "System.Private.CoreLib:System.Object",
454
+ "clrName": "System.Object"
455
+ },
456
+ "interfaces": [
457
+ {
458
+ "stableId": "Microsoft.EntityFrameworkCore:Microsoft.EntityFrameworkCore.Design.IDesignTimeServices",
459
+ "clrName": "Microsoft.EntityFrameworkCore.Design.IDesignTimeServices"
460
+ }
461
+ ],
342
462
  "methods": [
343
463
  {
344
464
  "stableId": "Microsoft.EntityFrameworkCore.SqlServer:Microsoft.EntityFrameworkCore.SqlServer.Design.Internal.SqlServerDesignTimeServices::ConfigureDesignTimeServices(Microsoft.Extensions.DependencyInjection.IServiceCollection):System.Void",
@@ -355,6 +475,7 @@
355
475
  "isVirtual": true,
356
476
  "isOverride": false,
357
477
  "isSealed": false,
478
+ "visibility": "Public",
358
479
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Design.Internal.SqlServerDesignTimeServices",
359
480
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer",
360
481
  "isExtensionMethod": false
@@ -371,6 +492,7 @@
371
492
  "normalizedSignature": "constructor|():void|static=false",
372
493
  "isStatic": false,
373
494
  "parameterCount": 0,
495
+ "visibility": "Public",
374
496
  "declaringClrType": "Microsoft.EntityFrameworkCore.SqlServer.Design.Internal.SqlServerDesignTimeServices",
375
497
  "declaringAssemblyName": "Microsoft.EntityFrameworkCore.SqlServer"
376
498
  }
@@ -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";
@@ -17,7 +17,15 @@ import type { IAnnotation } from "@tsonic/efcore/Microsoft.EntityFrameworkCore.I
17
17
  import type { IColumn, IEntityType, IIndex, IKey, IModel, IProperty, IRelationalModel, IRelationalPropertyOverrides, ITable, ITableIndex, IUniqueConstraint } from "@tsonic/efcore/Microsoft.EntityFrameworkCore.Metadata.js";
18
18
  import type { IServiceCollection } from "@tsonic/microsoft-extensions/Microsoft.Extensions.DependencyInjection.js";
19
19
 
20
- export interface SqlServerAnnotationCodeGenerator$instance extends AnnotationCodeGenerator {
20
+ export abstract class SqlServerAnnotationCodeGenerator$protected {
21
+ protected GenerateFluentApi(key: IKey, annotation: IAnnotation): MethodCallCodeFragment | undefined;
22
+ protected GenerateFluentApi(index: IIndex, annotation: IAnnotation): MethodCallCodeFragment | undefined;
23
+ protected IsHandledByConvention(model: IModel, annotation: IAnnotation): boolean;
24
+ protected IsHandledByConvention(property: IProperty, annotation: IAnnotation): boolean;
25
+ }
26
+
27
+
28
+ export interface SqlServerAnnotationCodeGenerator$instance extends SqlServerAnnotationCodeGenerator$protected, AnnotationCodeGenerator {
21
29
  GenerateFluentApiCalls(model: IModel, annotations: IDictionary<System_Internal.String, IAnnotation>): IReadOnlyList<MethodCallCodeFragment>;
22
30
  GenerateFluentApiCalls(property: IProperty, annotations: IDictionary<System_Internal.String, IAnnotation>): IReadOnlyList<MethodCallCodeFragment>;
23
31
  GenerateFluentApiCalls(entityType: IEntityType, annotations: IDictionary<System_Internal.String, IAnnotation>): IReadOnlyList<MethodCallCodeFragment>;
@@ -7,7 +7,7 @@ import * as Internal from './Microsoft.EntityFrameworkCore.SqlServer.Design.Inte
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';