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

后端 未结 2 484
一向
一向 2021-01-24 05:48

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

2条回答
  •  挽巷
    挽巷 (楼主)
    2021-01-24 06:30

    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.

提交回复
热议问题