I need to create a table and use FileStream
in that table. In the SQL Server table, I need to use this column:
CREATE TABLE TestTable
(
FileID UNIQUEIDENTIFIER NOT NULL ROWGUIDCOL UNIQUE DEFAULT(NEWID()),
Pic VARBINARY(MAX) FILESTREAM NULL
)
Now in EF Core code-first how can I create this column?