How to access FileTables from Entity Framework?

SQL Server 2012 "Denali" introduced a nice new FileTables feature!
I plan to use EF 4.3 Code First.
How to create poco class for FileTable table?
How to access FileTables from Entity Framework except ObjectContext.ExecuteStoreCommand ?

+6
source share
1 answer

Entity Framework does not support FileStream in Sql server 2008 and FileTables on Sql server 2012.

How to add a filestream column in the first Entity Framework 4.0 model designer?

+1
source

Source: https://habr.com/ru/post/909032/


All Articles