I have a MVC project and I want to use SQL FileTable
for storing photos and attachments.
But it seems to me that Entity Framework code first does not support FileTable
.
All I could think of was to use script in Up method of migration to alter database and create FileTable
.
Is there any better approach?