@tsonic/efcore 10.0.11 → 10.0.16
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/bindings.json +0 -500
- package/Microsoft.EntityFrameworkCore/internal/index.d.ts +22 -5
- package/Microsoft.EntityFrameworkCore.ChangeTracking/bindings.json +0 -480
- package/Microsoft.EntityFrameworkCore.ChangeTracking/internal/index.d.ts +16 -12
- package/Microsoft.EntityFrameworkCore.ChangeTracking.Internal/bindings.json +981 -2411
- package/Microsoft.EntityFrameworkCore.ChangeTracking.Internal/internal/index.d.ts +1 -70
- package/Microsoft.EntityFrameworkCore.Design/bindings.json +0 -40
- package/Microsoft.EntityFrameworkCore.Design/internal/index.d.ts +0 -2
- package/Microsoft.EntityFrameworkCore.Design.Internal/bindings.json +2 -22
- package/Microsoft.EntityFrameworkCore.Design.Internal/internal/index.d.ts +1 -1
- package/Microsoft.EntityFrameworkCore.Diagnostics.Internal/bindings.json +0 -528
- package/Microsoft.EntityFrameworkCore.Diagnostics.Internal/internal/index.d.ts +14 -18
- package/Microsoft.EntityFrameworkCore.Infrastructure/bindings.json +900 -1800
- package/Microsoft.EntityFrameworkCore.Infrastructure/internal/index.d.ts +6 -46
- package/Microsoft.EntityFrameworkCore.Internal/bindings.json +0 -260
- package/Microsoft.EntityFrameworkCore.Internal/internal/index.d.ts +0 -13
- package/Microsoft.EntityFrameworkCore.Metadata/bindings.json +9011 -16771
- package/Microsoft.EntityFrameworkCore.Metadata/internal/index.d.ts +1 -376
- package/Microsoft.EntityFrameworkCore.Metadata.Builders/bindings.json +7901 -14241
- package/Microsoft.EntityFrameworkCore.Metadata.Builders/internal/index.d.ts +361 -47
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions/bindings.json +350 -2250
- package/Microsoft.EntityFrameworkCore.Metadata.Conventions/internal/index.d.ts +51 -91
- package/Microsoft.EntityFrameworkCore.Metadata.Internal/bindings.json +44938 -86844
- package/Microsoft.EntityFrameworkCore.Metadata.Internal/internal/index.d.ts +17 -2067
- package/Microsoft.EntityFrameworkCore.Migrations.Operations/bindings.json +5234 -20354
- package/Microsoft.EntityFrameworkCore.Migrations.Operations/internal/index.d.ts +1 -757
- package/Microsoft.EntityFrameworkCore.Migrations.Operations.Builders/bindings.json +0 -40
- package/Microsoft.EntityFrameworkCore.Migrations.Operations.Builders/internal/index.d.ts +2 -0
- package/Microsoft.EntityFrameworkCore.Query/bindings.json +3 -183
- package/Microsoft.EntityFrameworkCore.Query/internal/index.d.ts +3 -4
- package/Microsoft.EntityFrameworkCore.Query.Internal/bindings.json +0 -160
- package/Microsoft.EntityFrameworkCore.Query.Internal/internal/index.d.ts +2 -3
- package/Microsoft.EntityFrameworkCore.Query.SqlExpressions/bindings.json +14 -794
- package/Microsoft.EntityFrameworkCore.Query.SqlExpressions/internal/index.d.ts +26 -9
- package/Microsoft.EntityFrameworkCore.Scaffolding.Metadata/bindings.json +1610 -5810
- package/Microsoft.EntityFrameworkCore.Scaffolding.Metadata/internal/index.d.ts +1 -211
- package/Microsoft.EntityFrameworkCore.Storage/bindings.json +129 -309
- package/Microsoft.EntityFrameworkCore.Storage/internal/index.d.ts +2 -6
- package/Microsoft.EntityFrameworkCore.Storage.Internal/bindings.json +12 -52
- package/Microsoft.EntityFrameworkCore.Storage.Internal/internal/index.d.ts +1 -3
- package/Microsoft.EntityFrameworkCore.Storage.Json/bindings.json +26 -1406
- package/Microsoft.EntityFrameworkCore.Storage.Json/internal/index.d.ts +10 -0
- package/Microsoft.EntityFrameworkCore.Storage.ValueConversion.Internal/internal/index.d.ts +1 -1
- package/Microsoft.EntityFrameworkCore.Update/bindings.json +0 -86
- package/Microsoft.EntityFrameworkCore.Update/internal/index.d.ts +0 -4
- package/Microsoft.EntityFrameworkCore.Update.Internal/bindings.json +0 -512
- package/Microsoft.EntityFrameworkCore.Update.Internal/internal/index.d.ts +0 -18
- package/Microsoft.EntityFrameworkCore.ValueGeneration/bindings.json +6 -272
- package/Microsoft.EntityFrameworkCore.ValueGeneration/internal/index.d.ts +10 -13
- package/Microsoft.EntityFrameworkCore.ValueGeneration.Internal/bindings.json +0 -660
- package/Microsoft.EntityFrameworkCore.ValueGeneration.Internal/internal/index.d.ts +32 -33
- package/README.md +119 -2
- package/package.json +4 -4
|
@@ -22,7 +22,6 @@ export interface ConvertedValueGenerator$instance extends ValueGenerator {
|
|
|
22
22
|
readonly GeneratesStableValues: boolean;
|
|
23
23
|
readonly GeneratesTemporaryValues: boolean;
|
|
24
24
|
NextAsync(entry: EntityEntry, cancellationToken?: CancellationToken): ValueTask_1<unknown>;
|
|
25
|
-
NextAsync(entry: EntityEntry, cancellationToken?: CancellationToken): ValueTask_1<unknown>;
|
|
26
25
|
NextValue(entry: EntityEntry): unknown | undefined;
|
|
27
26
|
}
|
|
28
27
|
|
|
@@ -54,8 +53,8 @@ export interface TemporaryBinaryValueGenerator$instance extends ValueGenerator_1
|
|
|
54
53
|
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ValueGeneration_Internal_TemporaryBinaryValueGenerator: never;
|
|
55
54
|
|
|
56
55
|
readonly GeneratesTemporaryValues: boolean;
|
|
57
|
-
|
|
58
|
-
|
|
56
|
+
Next(entry: EntityEntry): byte[];
|
|
57
|
+
Next(entry: EntityEntry): unknown;
|
|
59
58
|
}
|
|
60
59
|
|
|
61
60
|
|
|
@@ -69,8 +68,8 @@ export type TemporaryBinaryValueGenerator = TemporaryBinaryValueGenerator$instan
|
|
|
69
68
|
export interface TemporaryByteValueGenerator$instance extends TemporaryNumberValueGenerator_1<System_Internal.Byte> {
|
|
70
69
|
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ValueGeneration_Internal_TemporaryByteValueGenerator: never;
|
|
71
70
|
|
|
72
|
-
|
|
73
|
-
|
|
71
|
+
Next(entry: EntityEntry): byte;
|
|
72
|
+
Next(entry: EntityEntry): unknown;
|
|
74
73
|
}
|
|
75
74
|
|
|
76
75
|
|
|
@@ -84,8 +83,8 @@ export type TemporaryByteValueGenerator = TemporaryByteValueGenerator$instance;
|
|
|
84
83
|
export interface TemporaryCharValueGenerator$instance extends TemporaryNumberValueGenerator_1<System_Internal.Char> {
|
|
85
84
|
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ValueGeneration_Internal_TemporaryCharValueGenerator: never;
|
|
86
85
|
|
|
87
|
-
|
|
88
|
-
|
|
86
|
+
Next(entry: EntityEntry): char;
|
|
87
|
+
Next(entry: EntityEntry): unknown;
|
|
89
88
|
}
|
|
90
89
|
|
|
91
90
|
|
|
@@ -100,8 +99,8 @@ export interface TemporaryDateTimeOffsetValueGenerator$instance extends ValueGen
|
|
|
100
99
|
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ValueGeneration_Internal_TemporaryDateTimeOffsetValueGenerator: never;
|
|
101
100
|
|
|
102
101
|
readonly GeneratesTemporaryValues: boolean;
|
|
103
|
-
|
|
104
|
-
|
|
102
|
+
Next(entry: EntityEntry): DateTimeOffset;
|
|
103
|
+
Next(entry: EntityEntry): unknown;
|
|
105
104
|
}
|
|
106
105
|
|
|
107
106
|
|
|
@@ -116,8 +115,8 @@ export interface TemporaryDateTimeValueGenerator$instance extends ValueGenerator
|
|
|
116
115
|
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ValueGeneration_Internal_TemporaryDateTimeValueGenerator: never;
|
|
117
116
|
|
|
118
117
|
readonly GeneratesTemporaryValues: boolean;
|
|
119
|
-
|
|
120
|
-
|
|
118
|
+
Next(entry: EntityEntry): DateTime;
|
|
119
|
+
Next(entry: EntityEntry): unknown;
|
|
121
120
|
}
|
|
122
121
|
|
|
123
122
|
|
|
@@ -131,8 +130,8 @@ export type TemporaryDateTimeValueGenerator = TemporaryDateTimeValueGenerator$in
|
|
|
131
130
|
export interface TemporaryDecimalValueGenerator$instance extends TemporaryNumberValueGenerator_1<System_Internal.Decimal> {
|
|
132
131
|
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ValueGeneration_Internal_TemporaryDecimalValueGenerator: never;
|
|
133
132
|
|
|
134
|
-
|
|
135
|
-
|
|
133
|
+
Next(entry: EntityEntry): decimal;
|
|
134
|
+
Next(entry: EntityEntry): unknown;
|
|
136
135
|
}
|
|
137
136
|
|
|
138
137
|
|
|
@@ -146,8 +145,8 @@ export type TemporaryDecimalValueGenerator = TemporaryDecimalValueGenerator$inst
|
|
|
146
145
|
export interface TemporaryDoubleValueGenerator$instance extends TemporaryNumberValueGenerator_1<System_Internal.Double> {
|
|
147
146
|
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ValueGeneration_Internal_TemporaryDoubleValueGenerator: never;
|
|
148
147
|
|
|
149
|
-
|
|
150
|
-
|
|
148
|
+
Next(entry: EntityEntry): double;
|
|
149
|
+
Next(entry: EntityEntry): unknown;
|
|
151
150
|
}
|
|
152
151
|
|
|
153
152
|
|
|
@@ -161,8 +160,8 @@ export type TemporaryDoubleValueGenerator = TemporaryDoubleValueGenerator$instan
|
|
|
161
160
|
export interface TemporaryFloatValueGenerator$instance extends TemporaryNumberValueGenerator_1<System_Internal.Single> {
|
|
162
161
|
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ValueGeneration_Internal_TemporaryFloatValueGenerator: never;
|
|
163
162
|
|
|
164
|
-
|
|
165
|
-
|
|
163
|
+
Next(entry: EntityEntry): float;
|
|
164
|
+
Next(entry: EntityEntry): unknown;
|
|
166
165
|
}
|
|
167
166
|
|
|
168
167
|
|
|
@@ -176,8 +175,8 @@ export type TemporaryFloatValueGenerator = TemporaryFloatValueGenerator$instance
|
|
|
176
175
|
export interface TemporaryIntValueGenerator$instance extends TemporaryNumberValueGenerator_1<System_Internal.Int32> {
|
|
177
176
|
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ValueGeneration_Internal_TemporaryIntValueGenerator: never;
|
|
178
177
|
|
|
179
|
-
|
|
180
|
-
|
|
178
|
+
Next(entry: EntityEntry): int;
|
|
179
|
+
Next(entry: EntityEntry): unknown;
|
|
181
180
|
}
|
|
182
181
|
|
|
183
182
|
|
|
@@ -191,8 +190,8 @@ export type TemporaryIntValueGenerator = TemporaryIntValueGenerator$instance;
|
|
|
191
190
|
export interface TemporaryLongValueGenerator$instance extends TemporaryNumberValueGenerator_1<System_Internal.Int64> {
|
|
192
191
|
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ValueGeneration_Internal_TemporaryLongValueGenerator: never;
|
|
193
192
|
|
|
194
|
-
|
|
195
|
-
|
|
193
|
+
Next(entry: EntityEntry): long;
|
|
194
|
+
Next(entry: EntityEntry): unknown;
|
|
196
195
|
}
|
|
197
196
|
|
|
198
197
|
|
|
@@ -219,8 +218,8 @@ export type TemporaryNumberValueGenerator_1<TValue> = TemporaryNumberValueGenera
|
|
|
219
218
|
export interface TemporarySByteValueGenerator$instance extends TemporaryNumberValueGenerator_1<System_Internal.SByte> {
|
|
220
219
|
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ValueGeneration_Internal_TemporarySByteValueGenerator: never;
|
|
221
220
|
|
|
222
|
-
|
|
223
|
-
|
|
221
|
+
Next(entry: EntityEntry): sbyte;
|
|
222
|
+
Next(entry: EntityEntry): unknown;
|
|
224
223
|
}
|
|
225
224
|
|
|
226
225
|
|
|
@@ -234,8 +233,8 @@ export type TemporarySByteValueGenerator = TemporarySByteValueGenerator$instance
|
|
|
234
233
|
export interface TemporaryShortValueGenerator$instance extends TemporaryNumberValueGenerator_1<System_Internal.Int16> {
|
|
235
234
|
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ValueGeneration_Internal_TemporaryShortValueGenerator: never;
|
|
236
235
|
|
|
237
|
-
|
|
238
|
-
|
|
236
|
+
Next(entry: EntityEntry): short;
|
|
237
|
+
Next(entry: EntityEntry): unknown;
|
|
239
238
|
}
|
|
240
239
|
|
|
241
240
|
|
|
@@ -250,8 +249,8 @@ export interface TemporaryStringValueGenerator$instance extends ValueGenerator_1
|
|
|
250
249
|
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ValueGeneration_Internal_TemporaryStringValueGenerator: never;
|
|
251
250
|
|
|
252
251
|
readonly GeneratesTemporaryValues: boolean;
|
|
253
|
-
|
|
254
|
-
|
|
252
|
+
Next(entry: EntityEntry): string;
|
|
253
|
+
Next(entry: EntityEntry): unknown;
|
|
255
254
|
}
|
|
256
255
|
|
|
257
256
|
|
|
@@ -265,8 +264,8 @@ export type TemporaryStringValueGenerator = TemporaryStringValueGenerator$instan
|
|
|
265
264
|
export interface TemporaryUIntValueGenerator$instance extends TemporaryNumberValueGenerator_1<System_Internal.UInt32> {
|
|
266
265
|
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ValueGeneration_Internal_TemporaryUIntValueGenerator: never;
|
|
267
266
|
|
|
268
|
-
|
|
269
|
-
|
|
267
|
+
Next(entry: EntityEntry): uint;
|
|
268
|
+
Next(entry: EntityEntry): unknown;
|
|
270
269
|
}
|
|
271
270
|
|
|
272
271
|
|
|
@@ -280,8 +279,8 @@ export type TemporaryUIntValueGenerator = TemporaryUIntValueGenerator$instance;
|
|
|
280
279
|
export interface TemporaryULongValueGenerator$instance extends TemporaryNumberValueGenerator_1<System_Internal.UInt64> {
|
|
281
280
|
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ValueGeneration_Internal_TemporaryULongValueGenerator: never;
|
|
282
281
|
|
|
283
|
-
|
|
284
|
-
|
|
282
|
+
Next(entry: EntityEntry): ulong;
|
|
283
|
+
Next(entry: EntityEntry): unknown;
|
|
285
284
|
}
|
|
286
285
|
|
|
287
286
|
|
|
@@ -295,8 +294,8 @@ export type TemporaryULongValueGenerator = TemporaryULongValueGenerator$instance
|
|
|
295
294
|
export interface TemporaryUShortValueGenerator$instance extends TemporaryNumberValueGenerator_1<System_Internal.UInt16> {
|
|
296
295
|
readonly __tsonic_type_Microsoft_EntityFrameworkCore_ValueGeneration_Internal_TemporaryUShortValueGenerator: never;
|
|
297
296
|
|
|
298
|
-
|
|
299
|
-
|
|
297
|
+
Next(entry: EntityEntry): ushort;
|
|
298
|
+
Next(entry: EntityEntry): unknown;
|
|
300
299
|
}
|
|
301
300
|
|
|
302
301
|
|
package/README.md
CHANGED
|
@@ -1,5 +1,122 @@
|
|
|
1
1
|
# @tsonic/efcore
|
|
2
2
|
|
|
3
|
-
TypeScript type definitions for `Microsoft.EntityFrameworkCore.*` for .NET
|
|
3
|
+
TypeScript type definitions for **Entity Framework Core 10** (`Microsoft.EntityFrameworkCore.*`) for use with the **Tsonic** compiler (TypeScript → .NET).
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
This package is generated by `tsbindgen` from the official NuGet assemblies and is intended to give you an editor-friendly, strongly typed surface while compiling to real EF Core APIs.
|
|
6
|
+
|
|
7
|
+
## What this package is (and isn’t)
|
|
8
|
+
|
|
9
|
+
- ✅ **It is** a TypeScript type package (`.d.ts`) + ESM stubs for the EF Core assemblies.
|
|
10
|
+
- ❌ **It is not** a JavaScript runtime implementation of EF Core (the `.js` files are module stubs for type-only use).
|
|
11
|
+
- ✅ **You still need** the actual **.NET assemblies** via NuGet in your Tsonic workspace (see below).
|
|
12
|
+
|
|
13
|
+
## Install (types)
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
npm install @tsonic/efcore @tsonic/dotnet @tsonic/core
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
## Use with Tsonic (recommended)
|
|
20
|
+
|
|
21
|
+
If you want a deterministic “one command” setup for both the **.NET assemblies** and the **TypeScript bindings**, use `tsonic add nuget` and pass this package as the `types` argument:
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
tsonic add nuget Microsoft.EntityFrameworkCore <version> @tsonic/efcore
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
If you omit the `@tsonic/efcore` argument, Tsonic will generate bindings locally instead.
|
|
28
|
+
|
|
29
|
+
### Providers
|
|
30
|
+
|
|
31
|
+
Pick the provider that matches your database:
|
|
32
|
+
|
|
33
|
+
- SQLite: `@tsonic/efcore-sqlite`
|
|
34
|
+
- SQL Server: `@tsonic/efcore-sqlserver`
|
|
35
|
+
- PostgreSQL (Npgsql): `@tsonic/efcore-npgsql`
|
|
36
|
+
|
|
37
|
+
Example:
|
|
38
|
+
|
|
39
|
+
```bash
|
|
40
|
+
tsonic add nuget Microsoft.EntityFrameworkCore.Sqlite <version> @tsonic/efcore-sqlite
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
## Imports
|
|
44
|
+
|
|
45
|
+
The package is shipped as **ESM**. Import EF Core namespaces via explicit module paths:
|
|
46
|
+
|
|
47
|
+
```ts
|
|
48
|
+
import { DbContext, DbContextOptions, DbSet } from "@tsonic/efcore/Microsoft.EntityFrameworkCore.js";
|
|
49
|
+
```
|
|
50
|
+
|
|
51
|
+
Provider-specific APIs come from the provider package:
|
|
52
|
+
|
|
53
|
+
```ts
|
|
54
|
+
import { SqliteDbContextOptionsBuilderExtensions } from "@tsonic/efcore-sqlite/Microsoft.EntityFrameworkCore.js";
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
## LINQ + EF extension methods (idiomatic queries)
|
|
58
|
+
|
|
59
|
+
EF Core relies heavily on **extension methods** (LINQ operators like `Where`/`Select` and EF async operators like `CountAsync`/`ToArrayAsync`).
|
|
60
|
+
|
|
61
|
+
In Tsonic, you opt into a “C# using semantics” extension surface by wrapping the receiver with `asinterface<...>` and the generated `ExtensionMethods` helpers:
|
|
62
|
+
|
|
63
|
+
```ts
|
|
64
|
+
import { asinterface } from "@tsonic/core/lang.js";
|
|
65
|
+
import type { ExtensionMethods as Linq } from "@tsonic/dotnet/System.Linq.js";
|
|
66
|
+
import type { ExtensionMethods as Ef } from "@tsonic/efcore/Microsoft.EntityFrameworkCore.js";
|
|
67
|
+
import type { DbSet } from "@tsonic/efcore/Microsoft.EntityFrameworkCore.js";
|
|
68
|
+
|
|
69
|
+
type DbSetQuery<T> = Ef<Linq<DbSet<T>>>;
|
|
70
|
+
|
|
71
|
+
// Example: turn a DbSet<T> into something that has LINQ + EF async operators.
|
|
72
|
+
const q = asinterface<DbSetQuery<PostEntity>>(db.posts);
|
|
73
|
+
|
|
74
|
+
const pageviews = await q.Where((p) => p.Published === true).CountAsync();
|
|
75
|
+
const rows = await q.Where((p) => p.Published === true).ToArrayAsync();
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
You can always call extension methods via their static classes as well, but the pattern above gives you the most idiomatic “instance-style” call sites.
|
|
79
|
+
|
|
80
|
+
## Example
|
|
81
|
+
|
|
82
|
+
Minimal `DbContext` + options:
|
|
83
|
+
|
|
84
|
+
```ts
|
|
85
|
+
import { DbContext, DbContextOptions, DbContextOptionsBuilder, DbSet } from "@tsonic/efcore/Microsoft.EntityFrameworkCore.js";
|
|
86
|
+
import { SqliteDbContextOptionsBuilderExtensions } from "@tsonic/efcore-sqlite/Microsoft.EntityFrameworkCore.js";
|
|
87
|
+
|
|
88
|
+
export class BlogDbContext extends DbContext {
|
|
89
|
+
get posts(): DbSet<PostEntity> {
|
|
90
|
+
return this.Set<PostEntity>();
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
constructor(options: DbContextOptions) {
|
|
94
|
+
super(options);
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
export const createDbOptions = (dbPath: string): DbContextOptions => {
|
|
99
|
+
const optionsBuilder = new DbContextOptionsBuilder();
|
|
100
|
+
SqliteDbContextOptionsBuilderExtensions.UseSqlite(optionsBuilder, `Data Source=${dbPath}`);
|
|
101
|
+
return optionsBuilder.Options;
|
|
102
|
+
};
|
|
103
|
+
```
|
|
104
|
+
|
|
105
|
+
## Versioning
|
|
106
|
+
|
|
107
|
+
This repo is versioned by **.NET major**:
|
|
108
|
+
|
|
109
|
+
- .NET 10 → npm: `@tsonic/efcore@10.x`
|
|
110
|
+
|
|
111
|
+
## Development (regenerating bindings)
|
|
112
|
+
|
|
113
|
+
This repo is generated from NuGet assemblies:
|
|
114
|
+
|
|
115
|
+
```bash
|
|
116
|
+
npm install
|
|
117
|
+
npm run generate:10
|
|
118
|
+
```
|
|
119
|
+
|
|
120
|
+
## License
|
|
121
|
+
|
|
122
|
+
MIT
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tsonic/efcore",
|
|
3
|
-
"version": "10.0.
|
|
3
|
+
"version": "10.0.16",
|
|
4
4
|
"description": "TypeScript type definitions for Microsoft.EntityFrameworkCore.* for .NET 10",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"keywords": [
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
"url": "https://github.com/tsoniclang/efcore.git"
|
|
20
20
|
},
|
|
21
21
|
"peerDependencies": {
|
|
22
|
-
"@tsonic/core": "10.0.
|
|
23
|
-
"@tsonic/dotnet": "10.0.
|
|
24
|
-
"@tsonic/microsoft-extensions": "10.0.
|
|
22
|
+
"@tsonic/core": "10.0.16",
|
|
23
|
+
"@tsonic/dotnet": "10.0.16",
|
|
24
|
+
"@tsonic/microsoft-extensions": "10.0.16"
|
|
25
25
|
}
|
|
26
26
|
}
|