Skip to content

Commit ee6a9f9

Browse files
committed
Add efcore 10 specific types (VECTOR, JSON)
1 parent 11bb5aa commit ee6a9f9

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

ReversePoco.sql

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
-- EFCore 10 specific types: vector and json
2+
CREATE TABLE Testing_EfCore10
3+
(
4+
Id INT NOT NULL IDENTITY(1, 1),
5+
Embedding vector(1234) NULL,
6+
ShippingAddress json NOT NULL,
7+
CONSTRAINT PK_Testing_EfCore10 PRIMARY KEY CLUSTERED (Id)
8+
);

0 commit comments

Comments
 (0)