Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
589 views
in Technique[技术] by (71.8m points)

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

I'm using the EF 4.0 designer to create a database by clicking on "Generate Database from Model". I wan't to use the sql 2008 column type "filestream". Unfortunately I can't select "filestream" from Type DropDownList of a specific column.

So, how do I use the filestream with EF 4.0 model first?

So far I've googled some SQL scripts to manually add such columns, but adding them via SQL script means that I don't have them in my model. What should I do?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Entity framework doesn't support Filestream. Even if you add it, it will still be used as any other varbinary(max) column. To use Filestream during database generation you must use custom structural annotation and modify generation template.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...