@tsonic/efcore 10.0.3 → 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/Microsoft.EntityFrameworkCore/internal/index.d.ts +36 -1
- package/Microsoft.EntityFrameworkCore.ChangeTracking/internal/index.d.ts +113 -6
- package/Microsoft.EntityFrameworkCore.ChangeTracking.Internal/internal/index.d.ts +208 -2
- package/Microsoft.EntityFrameworkCore.Design/internal/index.d.ts +16 -0
- package/Microsoft.EntityFrameworkCore.Design.Internal/internal/index.d.ts +14 -0
- package/Microsoft.EntityFrameworkCore.Diagnostics/internal/index.d.ts +92 -0
- package/Microsoft.EntityFrameworkCore.Diagnostics.Internal/internal/index.d.ts +39 -0
- package/Microsoft.EntityFrameworkCore.Infrastructure/internal/index.d.ts +116 -1
- package/Microsoft.EntityFrameworkCore.Infrastructure.Internal/internal/index.d.ts +23 -1
- package/Microsoft.EntityFrameworkCore.Internal/internal/index.d.ts +100 -4
- package/Microsoft.EntityFrameworkCore.Metadata/internal/index.d.ts +485 -0
- package/Microsoft.EntityFrameworkCore.Metadata.Builders/internal/index.d.ts +208 -0
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions/internal/index.d.ts +497 -0
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure/internal/index.d.ts +14 -0
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Internal/internal/index.d.ts +10 -0
- package/Microsoft.EntityFrameworkCore.Metadata.Internal/internal/index.d.ts +679 -2
- package/Microsoft.EntityFrameworkCore.Migrations/internal/index.d.ts +32 -0
- package/Microsoft.EntityFrameworkCore.Migrations.Internal/internal/index.d.ts +10 -0
- package/Microsoft.EntityFrameworkCore.Migrations.Operations/internal/index.d.ts +174 -0
- package/Microsoft.EntityFrameworkCore.Migrations.Operations.Builders/internal/index.d.ts +6 -0
- package/Microsoft.EntityFrameworkCore.Query/internal/index.d.ts +213 -0
- package/Microsoft.EntityFrameworkCore.Query.Internal/internal/index.d.ts +161 -0
- package/Microsoft.EntityFrameworkCore.Query.SqlExpressions/internal/index.d.ts +130 -0
- package/Microsoft.EntityFrameworkCore.Scaffolding/internal/index.d.ts +14 -0
- package/Microsoft.EntityFrameworkCore.Scaffolding.Metadata/internal/index.d.ts +40 -0
- package/Microsoft.EntityFrameworkCore.Storage/internal/index.d.ts +145 -0
- package/Microsoft.EntityFrameworkCore.Storage.Internal/internal/index.d.ts +31 -2
- package/Microsoft.EntityFrameworkCore.Storage.Internal.d.ts +3 -0
- package/Microsoft.EntityFrameworkCore.Storage.Json/internal/index.d.ts +17 -0
- package/Microsoft.EntityFrameworkCore.Storage.ValueConversion/internal/index.d.ts +6 -0
- package/Microsoft.EntityFrameworkCore.Update/internal/index.d.ts +44 -0
- package/Microsoft.EntityFrameworkCore.Update.Internal/internal/index.d.ts +77 -0
- package/Microsoft.EntityFrameworkCore.ValueGeneration/internal/index.d.ts +16 -0
- package/Microsoft.Extensions.DependencyInjection.d.ts +3 -0
- package/__internal/extensions/index.d.ts +860 -595
- package/package.json +1 -1
package/Microsoft.EntityFrameworkCore.Metadata.Conventions.Infrastructure/internal/index.d.ts
CHANGED
|
@@ -19,6 +19,8 @@ import * as System_Internal from "@tsonic/dotnet/System.js";
|
|
|
19
19
|
import type { Boolean as ClrBoolean, IEquatable, Int32, Object as ClrObject, String as ClrString, Type } from "@tsonic/dotnet/System.js";
|
|
20
20
|
|
|
21
21
|
export interface IConventionSetBuilder$instance {
|
|
22
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_Infrastructure_IConventionSetBuilder: never;
|
|
23
|
+
|
|
22
24
|
CreateConventionSet(): ConventionSet;
|
|
23
25
|
}
|
|
24
26
|
|
|
@@ -26,6 +28,8 @@ export interface IConventionSetBuilder$instance {
|
|
|
26
28
|
export type IConventionSetBuilder = IConventionSetBuilder$instance;
|
|
27
29
|
|
|
28
30
|
export interface IConventionSetPlugin$instance {
|
|
31
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_Infrastructure_IConventionSetPlugin: never;
|
|
32
|
+
|
|
29
33
|
ModifyConventions(conventionSet: ConventionSet): ConventionSet;
|
|
30
34
|
}
|
|
31
35
|
|
|
@@ -33,6 +37,8 @@ export interface IConventionSetPlugin$instance {
|
|
|
33
37
|
export type IConventionSetPlugin = IConventionSetPlugin$instance;
|
|
34
38
|
|
|
35
39
|
export interface IProviderConventionSetBuilder$instance {
|
|
40
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_Infrastructure_IProviderConventionSetBuilder: never;
|
|
41
|
+
|
|
36
42
|
CreateConventionSet(): ConventionSet;
|
|
37
43
|
}
|
|
38
44
|
|
|
@@ -40,6 +46,8 @@ export interface IProviderConventionSetBuilder$instance {
|
|
|
40
46
|
export type IProviderConventionSetBuilder = IProviderConventionSetBuilder$instance;
|
|
41
47
|
|
|
42
48
|
export interface ProviderConventionSetBuilder$instance {
|
|
49
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_Infrastructure_IProviderConventionSetBuilder: never;
|
|
50
|
+
|
|
43
51
|
readonly Dependencies: ProviderConventionSetBuilderDependencies;
|
|
44
52
|
CreateConventionSet(): ConventionSet;
|
|
45
53
|
ReplaceConvention<TConvention, TImplementation extends TConvention>(conventionsList: List<TConvention>, newConvention: TImplementation): boolean;
|
|
@@ -61,6 +69,8 @@ export type ProviderConventionSetBuilder = ProviderConventionSetBuilder$instance
|
|
|
61
69
|
|
|
62
70
|
|
|
63
71
|
export interface ProviderConventionSetBuilderDependencies$instance {
|
|
72
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
73
|
+
|
|
64
74
|
ConstructorBindingFactory: IConstructorBindingFactory;
|
|
65
75
|
readonly ContextType: Type;
|
|
66
76
|
Logger: IDiagnosticsLogger_1<DbLoggerCategory_Model>;
|
|
@@ -86,6 +96,8 @@ export const ProviderConventionSetBuilderDependencies: {
|
|
|
86
96
|
export type ProviderConventionSetBuilderDependencies = ProviderConventionSetBuilderDependencies$instance;
|
|
87
97
|
|
|
88
98
|
export interface RelationalConventionSetBuilder$instance extends ProviderConventionSetBuilder$instance {
|
|
99
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_Infrastructure_IProviderConventionSetBuilder: never;
|
|
100
|
+
|
|
89
101
|
readonly RelationalDependencies: RelationalConventionSetBuilderDependencies;
|
|
90
102
|
CreateConventionSet(): ConventionSet;
|
|
91
103
|
}
|
|
@@ -103,6 +115,8 @@ export type RelationalConventionSetBuilder = RelationalConventionSetBuilder$inst
|
|
|
103
115
|
|
|
104
116
|
|
|
105
117
|
export interface RelationalConventionSetBuilderDependencies$instance {
|
|
118
|
+
readonly __tsonic_iface_System_IEquatable_1: never;
|
|
119
|
+
|
|
106
120
|
RelationalAnnotationProvider: IRelationalAnnotationProvider;
|
|
107
121
|
UpdateSqlGenerator: IUpdateSqlGenerator;
|
|
108
122
|
_Clone_$(): RelationalConventionSetBuilderDependencies;
|
|
@@ -24,6 +24,8 @@ import type { Boolean as ClrBoolean, Func, Nullable, Object as ClrObject, String
|
|
|
24
24
|
import type { FieldInfo, MemberInfo } from "@tsonic/dotnet/System.Reflection.js";
|
|
25
25
|
|
|
26
26
|
export interface IReadableConventionContext$instance extends IConventionContext {
|
|
27
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_Internal_IReadableConventionContext: never;
|
|
28
|
+
|
|
27
29
|
DelayConventions(): IConventionBatch;
|
|
28
30
|
ShouldStopProcessing(): boolean;
|
|
29
31
|
StopProcessing(): void;
|
|
@@ -35,6 +37,10 @@ export interface IReadableConventionContext$instance extends Microsoft_EntityFra
|
|
|
35
37
|
export type IReadableConventionContext = IReadableConventionContext$instance;
|
|
36
38
|
|
|
37
39
|
export interface ConventionContext_1$instance<TMetadata> {
|
|
40
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConventionContext: never;
|
|
41
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_IConventionContext_1: never;
|
|
42
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_Internal_IReadableConventionContext: never;
|
|
43
|
+
|
|
38
44
|
readonly Result: TMetadata | undefined;
|
|
39
45
|
DelayConventions(): IConventionBatch;
|
|
40
46
|
ResetState(input: TMetadata): void;
|
|
@@ -129,6 +135,8 @@ export const ConventionDispatcher: {
|
|
|
129
135
|
export type ConventionDispatcher = ConventionDispatcher$instance;
|
|
130
136
|
|
|
131
137
|
export interface MetadataTracker$instance {
|
|
138
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Internal_IReferenceRoot_1: never;
|
|
139
|
+
|
|
132
140
|
Track(foreignKey: IConventionForeignKey): Reference_1<IConventionForeignKey>;
|
|
133
141
|
Update(oldForeignKey: IConventionForeignKey, newForeignKey: IConventionForeignKey): void;
|
|
134
142
|
}
|
|
@@ -149,6 +157,8 @@ export type MetadataTracker = MetadataTracker$instance & __MetadataTracker$views
|
|
|
149
157
|
|
|
150
158
|
|
|
151
159
|
export interface RuntimeConventionSetBuilder$instance {
|
|
160
|
+
readonly __tsonic_iface_Microsoft_EntityFrameworkCore_Metadata_Conventions_Infrastructure_IConventionSetBuilder: never;
|
|
161
|
+
|
|
152
162
|
CreateConventionSet(): ConventionSet;
|
|
153
163
|
}
|
|
154
164
|
|