We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11bb5aa commit ee6a9f9Copy full SHA for ee6a9f9
ReversePoco.sql
@@ -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