@tsonic/efcore-sqlserver 10.0.2 → 10.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Azure/internal/index.d.ts +33 -41
- package/Azure.Core/internal/index.d.ts +55 -48
- package/Azure.Core.Cryptography/internal/index.d.ts +4 -0
- package/Azure.Core.Diagnostics/internal/index.d.ts +4 -6
- package/Azure.Core.Extensions/internal/index.d.ts +8 -0
- package/Azure.Core.GeoJson/internal/index.d.ts +43 -7
- package/Azure.Core.Pipeline/internal/index.d.ts +22 -30
- package/Azure.Core.Serialization/internal/index.d.ts +8 -3
- package/Azure.Identity/internal/index.d.ts +69 -28
- package/Azure.Messaging/internal/index.d.ts +7 -11
- package/Microsoft.Data/internal/index.d.ts +2 -1
- package/Microsoft.Data.SqlClient/internal/index.d.ts +133 -123
- package/Microsoft.Data.SqlClient.Diagnostics/internal/index.d.ts +90 -15
- package/Microsoft.Data.SqlClient.Server/internal/index.d.ts +2 -0
- package/Microsoft.Data.SqlTypes/internal/index.d.ts +8 -1
- package/Microsoft.EntityFrameworkCore/internal/index.d.ts +4 -6
- package/Microsoft.EntityFrameworkCore.Infrastructure/internal/index.d.ts +11 -2
- package/Microsoft.EntityFrameworkCore.Metadata.Builders/internal/index.d.ts +2 -0
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions/internal/index.d.ts +86 -73
- package/Microsoft.EntityFrameworkCore.Metadata.Internal.d.ts +3 -0
- package/Microsoft.EntityFrameworkCore.Migrations/internal/index.d.ts +47 -49
- package/Microsoft.EntityFrameworkCore.Migrations.Operations/internal/index.d.ts +9 -1
- package/Microsoft.EntityFrameworkCore.Migrations.d.ts +3 -0
- package/Microsoft.EntityFrameworkCore.SqlServer.Design.Internal/internal/index.d.ts +8 -8
- package/Microsoft.EntityFrameworkCore.SqlServer.Extensions.Internal.d.ts +3 -0
- package/Microsoft.EntityFrameworkCore.SqlServer.Infrastructure.Internal/internal/index.d.ts +24 -22
- package/Microsoft.EntityFrameworkCore.SqlServer.Metadata.Internal/internal/index.d.ts +2 -0
- package/Microsoft.EntityFrameworkCore.SqlServer.Migrations.Internal/internal/index.d.ts +10 -6
- package/Microsoft.EntityFrameworkCore.SqlServer.Query.Internal/internal/index.d.ts +189 -194
- package/Microsoft.EntityFrameworkCore.SqlServer.Query.Internal.SqlExpressions/internal/index.d.ts +4 -5
- package/Microsoft.EntityFrameworkCore.SqlServer.Scaffolding.Internal/internal/index.d.ts +4 -0
- package/Microsoft.EntityFrameworkCore.SqlServer.Scaffolding.Internal.d.ts +3 -0
- package/Microsoft.EntityFrameworkCore.SqlServer.Storage.Internal/internal/index.d.ts +115 -191
- package/Microsoft.EntityFrameworkCore.SqlServer.Update.Internal/internal/index.d.ts +31 -32
- package/Microsoft.EntityFrameworkCore.SqlServer.ValueGeneration.Internal/internal/index.d.ts +19 -12
- package/Microsoft.EntityFrameworkCore.d.ts +3 -0
- package/Microsoft.Extensions.DependencyInjection.d.ts +3 -0
- package/Microsoft.Identity.Client/internal/index.d.ts +108 -108
- package/Microsoft.Identity.Client.AppConfig/internal/index.d.ts +0 -1
- package/Microsoft.Identity.Client.AuthScheme/internal/index.d.ts +2 -0
- package/Microsoft.Identity.Client.AuthScheme.PoP/internal/index.d.ts +2 -0
- package/Microsoft.Identity.Client.Extensibility/internal/index.d.ts +3 -2
- package/Microsoft.Identity.Client.Extensions.Msal/internal/index.d.ts +4 -4
- package/Microsoft.Identity.Client.Kerberos/internal/index.d.ts +1 -1
- package/Microsoft.Identity.Client.Platforms.Features.DesktopOs.Kerberos/internal/index.d.ts +1 -2
- package/Microsoft.Identity.Client.Utils/internal/index.d.ts +0 -1
- package/Microsoft.IdentityModel.Abstractions/internal/index.d.ts +13 -7
- package/Microsoft.IdentityModel.JsonWebTokens/internal/index.d.ts +8 -10
- package/Microsoft.IdentityModel.Logging/internal/index.d.ts +7 -6
- package/Microsoft.IdentityModel.Protocols/internal/index.d.ts +17 -2
- package/Microsoft.IdentityModel.Protocols.Configuration/internal/index.d.ts +2 -1
- package/Microsoft.IdentityModel.Protocols.OpenIdConnect/internal/index.d.ts +19 -18
- package/Microsoft.IdentityModel.Protocols.OpenIdConnect.Configuration/internal/index.d.ts +2 -0
- package/Microsoft.IdentityModel.Tokens/internal/index.d.ts +119 -118
- package/Microsoft.IdentityModel.Tokens.d.ts +3 -0
- package/Microsoft.SqlServer.Server/internal/index.d.ts +4 -1
- package/System.ClientModel/internal/index.d.ts +19 -26
- package/System.ClientModel.Primitives/internal/index.d.ts +99 -124
- package/System.ClientModel.Primitives.d.ts +3 -0
- package/System.Configuration/internal/index.d.ts +293 -332
- package/System.Configuration.Internal/internal/index.d.ts +23 -2
- package/System.Configuration.Provider/internal/index.d.ts +7 -4
- package/System.Drawing.Configuration/internal/index.d.ts +2 -6
- package/System.IdentityModel.Tokens.Jwt/internal/index.d.ts +38 -16
- package/__internal/extensions/index.d.ts +915 -14
- package/package.json +1 -1
|
@@ -21,19 +21,23 @@ import * as Microsoft_EntityFrameworkCore_Update_Internal from "@tsonic/efcore/M
|
|
|
21
21
|
import type { AffectedCountModificationCommandBatch, ColumnModificationParameters, IColumnModification, IModificationCommand, IModificationCommandBatchFactory, IModificationCommandFactory, INonTrackedModificationCommand, IReadOnlyModificationCommand, IUpdateSqlGenerator, ModificationCommand, ModificationCommandBatch, ModificationCommandBatchFactoryDependencies, ModificationCommandParameters, NonTrackedModificationCommandParameters, ResultSetMapping, UpdateAndSelectSqlGenerator, UpdateSqlGeneratorDependencies } from "@tsonic/efcore/Microsoft.EntityFrameworkCore.Update.js";
|
|
22
22
|
|
|
23
23
|
export interface ISqlServerUpdateSqlGenerator$instance extends IUpdateSqlGenerator {
|
|
24
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_SqlServer_Update_Internal_ISqlServerUpdateSqlGenerator: never;
|
|
25
|
+
|
|
24
26
|
AppendBulkInsertOperation(commandStringBuilder: StringBuilder, modificationCommands: IReadOnlyList<IReadOnlyModificationCommand>, commandPosition: int, requiresTransaction: boolean): ResultSetMapping;
|
|
25
27
|
AppendBulkInsertOperation(commandStringBuilder: StringBuilder, modificationCommands: IReadOnlyList<IReadOnlyModificationCommand>, commandPosition: int): ResultSetMapping;
|
|
26
28
|
}
|
|
27
29
|
|
|
28
30
|
|
|
29
|
-
export
|
|
31
|
+
export interface ISqlServerUpdateSqlGenerator$instance extends Microsoft_EntityFrameworkCore_Update_Internal.IUpdateSqlGenerator {}
|
|
30
32
|
|
|
31
|
-
export
|
|
32
|
-
protected ProcessSinglePropertyJsonUpdate(parameters: ColumnModificationParameters): void;
|
|
33
|
-
}
|
|
33
|
+
export type ISqlServerUpdateSqlGenerator = ISqlServerUpdateSqlGenerator$instance;
|
|
34
34
|
|
|
35
|
+
export interface SqlServerModificationCommand$instance extends ModificationCommand {
|
|
36
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_IModificationCommand: never;
|
|
37
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_INonTrackedModificationCommand: never;
|
|
38
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_IReadOnlyModificationCommand: never;
|
|
35
39
|
|
|
36
|
-
|
|
40
|
+
ProcessSinglePropertyJsonUpdate(parameters: ColumnModificationParameters): void;
|
|
37
41
|
}
|
|
38
42
|
|
|
39
43
|
|
|
@@ -45,18 +49,14 @@ export const SqlServerModificationCommand: {
|
|
|
45
49
|
|
|
46
50
|
export type SqlServerModificationCommand = SqlServerModificationCommand$instance;
|
|
47
51
|
|
|
48
|
-
export
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
protected IsValid(): boolean;
|
|
52
|
-
protected RollbackLastCommand(modificationCommand: IReadOnlyModificationCommand): void;
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
export interface SqlServerModificationCommandBatch$instance extends SqlServerModificationCommandBatch$protected, AffectedCountModificationCommandBatch {
|
|
52
|
+
export interface SqlServerModificationCommandBatch$instance extends AffectedCountModificationCommandBatch {
|
|
53
|
+
readonly UpdateSqlGenerator: ISqlServerUpdateSqlGenerator;
|
|
54
|
+
AddCommand(modificationCommand: IReadOnlyModificationCommand): void;
|
|
57
55
|
Complete(moreBatchesExpected: boolean): void;
|
|
58
56
|
Execute(connection: IRelationalConnection): void;
|
|
59
57
|
ExecuteAsync(connection: IRelationalConnection, cancellationToken?: CancellationToken): Task;
|
|
58
|
+
IsValid(): boolean;
|
|
59
|
+
RollbackLastCommand(modificationCommand: IReadOnlyModificationCommand): void;
|
|
60
60
|
TryAddCommand(modificationCommand: IReadOnlyModificationCommand): boolean;
|
|
61
61
|
}
|
|
62
62
|
|
|
@@ -68,12 +68,10 @@ export const SqlServerModificationCommandBatch: {
|
|
|
68
68
|
|
|
69
69
|
export type SqlServerModificationCommandBatch = SqlServerModificationCommandBatch$instance;
|
|
70
70
|
|
|
71
|
-
export
|
|
72
|
-
|
|
73
|
-
}
|
|
74
|
-
|
|
71
|
+
export interface SqlServerModificationCommandBatchFactory$instance {
|
|
72
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_IModificationCommandBatchFactory: never;
|
|
75
73
|
|
|
76
|
-
|
|
74
|
+
readonly Dependencies: ModificationCommandBatchFactoryDependencies;
|
|
77
75
|
Create(): ModificationCommandBatch;
|
|
78
76
|
}
|
|
79
77
|
|
|
@@ -86,6 +84,8 @@ export const SqlServerModificationCommandBatchFactory: {
|
|
|
86
84
|
export type SqlServerModificationCommandBatchFactory = SqlServerModificationCommandBatchFactory$instance;
|
|
87
85
|
|
|
88
86
|
export interface SqlServerModificationCommandFactory$instance {
|
|
87
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_IModificationCommandFactory: never;
|
|
88
|
+
|
|
89
89
|
CreateModificationCommand(modificationCommandParameters: ModificationCommandParameters): IModificationCommand;
|
|
90
90
|
CreateNonTrackedModificationCommand(modificationCommandParameters: NonTrackedModificationCommandParameters): INonTrackedModificationCommand;
|
|
91
91
|
}
|
|
@@ -98,25 +98,24 @@ export const SqlServerModificationCommandFactory: {
|
|
|
98
98
|
|
|
99
99
|
export type SqlServerModificationCommandFactory = SqlServerModificationCommandFactory$instance;
|
|
100
100
|
|
|
101
|
-
export
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
protected AppendIdentityWhereCondition(commandStringBuilder: StringBuilder, columnModification: IColumnModification): void;
|
|
105
|
-
protected AppendInsertCommand(commandStringBuilder: StringBuilder, name: string, schema: string, writeOperations: IReadOnlyList<IColumnModification>, readOperations: IReadOnlyList<IColumnModification>): void;
|
|
106
|
-
protected AppendReturningClause(commandStringBuilder: StringBuilder, operations: IReadOnlyList<IColumnModification>, additionalValues?: string): void;
|
|
107
|
-
protected AppendRowsAffectedWhereCondition(commandStringBuilder: StringBuilder, expectedRowsAffected: int): void;
|
|
108
|
-
protected AppendSelectAffectedCountCommand(commandStringBuilder: StringBuilder, name: string, schema: string, commandPosition: int): ResultSetMapping;
|
|
109
|
-
protected AppendUpdateColumnValue(updateSqlGeneratorHelper: ISqlGenerationHelper, columnModification: IColumnModification, stringBuilder: StringBuilder, name: string, schema: string): void;
|
|
110
|
-
protected AppendUpdateCommand(commandStringBuilder: StringBuilder, name: string, schema: string, writeOperations: IReadOnlyList<IColumnModification>, readOperations: IReadOnlyList<IColumnModification>, conditionOperations: IReadOnlyList<IColumnModification>, appendReturningOneClause?: boolean): void;
|
|
111
|
-
}
|
|
112
|
-
|
|
101
|
+
export interface SqlServerUpdateSqlGenerator$instance extends UpdateAndSelectSqlGenerator {
|
|
102
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_SqlServer_Update_Internal_ISqlServerUpdateSqlGenerator: never;
|
|
103
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Update_IUpdateSqlGenerator: never;
|
|
113
104
|
|
|
114
|
-
|
|
105
|
+
readonly MergeIntoMinimumThreshold: int;
|
|
115
106
|
AppendBatchHeader(commandStringBuilder: StringBuilder): void;
|
|
116
107
|
AppendBulkInsertOperation(commandStringBuilder: StringBuilder, modificationCommands: IReadOnlyList<IReadOnlyModificationCommand>, commandPosition: int, requiresTransaction: boolean): ResultSetMapping;
|
|
108
|
+
AppendDeleteCommand(commandStringBuilder: StringBuilder, name: string, schema: string, readOperations: IReadOnlyList<IColumnModification>, conditionOperations: IReadOnlyList<IColumnModification>, appendReturningOneClause?: boolean): void;
|
|
117
109
|
AppendDeleteOperation(commandStringBuilder: StringBuilder, command: IReadOnlyModificationCommand, commandPosition: int, requiresTransaction: boolean): ResultSetMapping;
|
|
110
|
+
AppendIdentityWhereCondition(commandStringBuilder: StringBuilder, columnModification: IColumnModification): void;
|
|
111
|
+
AppendInsertCommand(commandStringBuilder: StringBuilder, name: string, schema: string, writeOperations: IReadOnlyList<IColumnModification>, readOperations: IReadOnlyList<IColumnModification>): void;
|
|
118
112
|
AppendInsertOperation(commandStringBuilder: StringBuilder, command: IReadOnlyModificationCommand, commandPosition: int, requiresTransaction: boolean): ResultSetMapping;
|
|
113
|
+
AppendReturningClause(commandStringBuilder: StringBuilder, operations: IReadOnlyList<IColumnModification>, additionalValues?: string): void;
|
|
114
|
+
AppendRowsAffectedWhereCondition(commandStringBuilder: StringBuilder, expectedRowsAffected: int): void;
|
|
115
|
+
AppendSelectAffectedCountCommand(commandStringBuilder: StringBuilder, name: string, schema: string, commandPosition: int): ResultSetMapping;
|
|
119
116
|
AppendStoredProcedureCall(commandStringBuilder: StringBuilder, command: IReadOnlyModificationCommand, commandPosition: int, requiresTransaction: boolean): ResultSetMapping;
|
|
117
|
+
AppendUpdateColumnValue(updateSqlGeneratorHelper: ISqlGenerationHelper, columnModification: IColumnModification, stringBuilder: StringBuilder, name: string, schema: string): void;
|
|
118
|
+
AppendUpdateCommand(commandStringBuilder: StringBuilder, name: string, schema: string, writeOperations: IReadOnlyList<IColumnModification>, readOperations: IReadOnlyList<IColumnModification>, conditionOperations: IReadOnlyList<IColumnModification>, appendReturningOneClause?: boolean): void;
|
|
120
119
|
AppendUpdateOperation(commandStringBuilder: StringBuilder, command: IReadOnlyModificationCommand, commandPosition: int, requiresTransaction: boolean): ResultSetMapping;
|
|
121
120
|
PrependEnsureAutocommit(commandStringBuilder: StringBuilder): void;
|
|
122
121
|
}
|
package/Microsoft.EntityFrameworkCore.SqlServer.ValueGeneration.Internal/internal/index.d.ts
CHANGED
|
@@ -22,6 +22,8 @@ import * as Microsoft_EntityFrameworkCore_ValueGeneration_Internal from "@tsonic
|
|
|
22
22
|
import type { HiLoValueGenerator, HiLoValueGeneratorState, IValueGeneratorCache, IValueGeneratorSelector, RelationalValueGeneratorSelector, ValueGenerator, ValueGeneratorCache, ValueGeneratorCacheDependencies, ValueGeneratorSelectorDependencies } from "@tsonic/efcore/Microsoft.EntityFrameworkCore.ValueGeneration.js";
|
|
23
23
|
|
|
24
24
|
export interface ISqlServerSequenceValueGeneratorFactory$instance {
|
|
25
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_SqlServer_ValueGeneration_Internal_ISqlServerSequenceValueGeneratorFactory: never;
|
|
26
|
+
|
|
25
27
|
TryCreate(property: IProperty, clrType: Type, generatorState: SqlServerSequenceValueGeneratorState, connection: ISqlServerConnection, rawSqlCommandBuilder: IRawSqlCommandBuilder, commandLogger: IRelationalCommandDiagnosticsLogger): ValueGenerator | undefined;
|
|
26
28
|
}
|
|
27
29
|
|
|
@@ -29,20 +31,20 @@ export interface ISqlServerSequenceValueGeneratorFactory$instance {
|
|
|
29
31
|
export type ISqlServerSequenceValueGeneratorFactory = ISqlServerSequenceValueGeneratorFactory$instance;
|
|
30
32
|
|
|
31
33
|
export interface ISqlServerValueGeneratorCache$instance extends IValueGeneratorCache {
|
|
34
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_SqlServer_ValueGeneration_Internal_ISqlServerValueGeneratorCache: never;
|
|
35
|
+
|
|
32
36
|
GetOrAddSequenceState(property: IProperty, connection: IRelationalConnection): SqlServerSequenceValueGeneratorState;
|
|
33
37
|
}
|
|
34
38
|
|
|
35
39
|
|
|
36
|
-
export
|
|
37
|
-
|
|
38
|
-
export abstract class SqlServerSequenceHiLoValueGenerator_1$protected<TValue> {
|
|
39
|
-
protected GetNewLowValue(): long;
|
|
40
|
-
protected GetNewLowValueAsync(cancellationToken?: CancellationToken): Task<System_Internal.Int64>;
|
|
41
|
-
}
|
|
40
|
+
export interface ISqlServerValueGeneratorCache$instance extends Microsoft_EntityFrameworkCore_ValueGeneration_Internal.IValueGeneratorCache {}
|
|
42
41
|
|
|
42
|
+
export type ISqlServerValueGeneratorCache = ISqlServerValueGeneratorCache$instance;
|
|
43
43
|
|
|
44
|
-
export interface SqlServerSequenceHiLoValueGenerator_1$instance<TValue> extends
|
|
44
|
+
export interface SqlServerSequenceHiLoValueGenerator_1$instance<TValue> extends HiLoValueGenerator<TValue> {
|
|
45
45
|
readonly GeneratesTemporaryValues: boolean;
|
|
46
|
+
GetNewLowValue(): long;
|
|
47
|
+
GetNewLowValueAsync(cancellationToken?: CancellationToken): Task<System_Internal.Int64>;
|
|
46
48
|
}
|
|
47
49
|
|
|
48
50
|
|
|
@@ -54,6 +56,8 @@ export const SqlServerSequenceHiLoValueGenerator_1: {
|
|
|
54
56
|
export type SqlServerSequenceHiLoValueGenerator_1<TValue> = SqlServerSequenceHiLoValueGenerator_1$instance<TValue>;
|
|
55
57
|
|
|
56
58
|
export interface SqlServerSequenceValueGeneratorFactory$instance {
|
|
59
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_SqlServer_ValueGeneration_Internal_ISqlServerSequenceValueGeneratorFactory: never;
|
|
60
|
+
|
|
57
61
|
TryCreate(property: IProperty, type: Type, generatorState: SqlServerSequenceValueGeneratorState, connection: ISqlServerConnection, rawSqlCommandBuilder: IRawSqlCommandBuilder, commandLogger: IRelationalCommandDiagnosticsLogger): ValueGenerator | undefined;
|
|
58
62
|
}
|
|
59
63
|
|
|
@@ -73,6 +77,8 @@ export type SqlServerSequenceValueGeneratorFactory = SqlServerSequenceValueGener
|
|
|
73
77
|
|
|
74
78
|
|
|
75
79
|
export interface SqlServerSequenceValueGeneratorState$instance extends HiLoValueGeneratorState {
|
|
80
|
+
readonly __tsonic_iface_System_IDisposable: never;
|
|
81
|
+
|
|
76
82
|
readonly Sequence: ISequence;
|
|
77
83
|
}
|
|
78
84
|
|
|
@@ -85,6 +91,9 @@ export const SqlServerSequenceValueGeneratorState: {
|
|
|
85
91
|
export type SqlServerSequenceValueGeneratorState = SqlServerSequenceValueGeneratorState$instance;
|
|
86
92
|
|
|
87
93
|
export interface SqlServerValueGeneratorCache$instance extends ValueGeneratorCache {
|
|
94
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_SqlServer_ValueGeneration_Internal_ISqlServerValueGeneratorCache: never;
|
|
95
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ValueGeneration_IValueGeneratorCache: never;
|
|
96
|
+
|
|
88
97
|
GetOrAddSequenceState(property: IProperty, connection: IRelationalConnection): SqlServerSequenceValueGeneratorState;
|
|
89
98
|
}
|
|
90
99
|
|
|
@@ -103,13 +112,11 @@ export interface SqlServerValueGeneratorCache$instance extends ISqlServerValueGe
|
|
|
103
112
|
export type SqlServerValueGeneratorCache = SqlServerValueGeneratorCache$instance & __SqlServerValueGeneratorCache$views;
|
|
104
113
|
|
|
105
114
|
|
|
106
|
-
export
|
|
107
|
-
|
|
108
|
-
}
|
|
109
|
-
|
|
115
|
+
export interface SqlServerValueGeneratorSelector$instance extends RelationalValueGeneratorSelector {
|
|
116
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_ValueGeneration_IValueGeneratorSelector: never;
|
|
110
117
|
|
|
111
|
-
export interface SqlServerValueGeneratorSelector$instance extends SqlServerValueGeneratorSelector$protected, RelationalValueGeneratorSelector {
|
|
112
118
|
readonly Cache: ISqlServerValueGeneratorCache;
|
|
119
|
+
FindForType(property: IProperty, typeBase: ITypeBase, clrType: Type): ValueGenerator | undefined;
|
|
113
120
|
Select(property: IProperty, typeBase: ITypeBase): ValueGenerator | undefined;
|
|
114
121
|
TrySelect(property: IProperty, typeBase: ITypeBase, valueGenerator: ValueGenerator): boolean;
|
|
115
122
|
}
|
|
@@ -44,3 +44,6 @@ export { SqlServerPropertyExtensions$instance as SqlServerPropertyExtensions } f
|
|
|
44
44
|
export { SqlServerTableBuilderExtensions$instance as SqlServerTableBuilderExtensions } from './Microsoft.EntityFrameworkCore/internal/index.js';
|
|
45
45
|
export { SqlServerTableExtensions$instance as SqlServerTableExtensions } from './Microsoft.EntityFrameworkCore/internal/index.js';
|
|
46
46
|
export { SqlServerRetryingExecutionStrategy as SqlServerRetryingExecutionStrategy } from './Microsoft.EntityFrameworkCore/internal/index.js';
|
|
47
|
+
// Extension methods (C# using semantics)
|
|
48
|
+
export type { ExtensionMethods_Microsoft_EntityFrameworkCore as ExtensionMethods } from './__internal/extensions/index.js';
|
|
49
|
+
|
|
@@ -13,3 +13,6 @@ import type { IServiceCollection } from '@tsonic/microsoft-extensions/Microsoft.
|
|
|
13
13
|
|
|
14
14
|
// Public API exports (curated - no internal $instance/$views leakage)
|
|
15
15
|
export { SqlServerServiceCollectionExtensions$instance as SqlServerServiceCollectionExtensions } from './Microsoft.Extensions.DependencyInjection/internal/index.js';
|
|
16
|
+
// Extension methods (C# using semantics)
|
|
17
|
+
export type { ExtensionMethods_Microsoft_Extensions_DependencyInjection as ExtensionMethods } from './__internal/extensions/index.js';
|
|
18
|
+
|