I want to ask you is any way to generate or updating access database from entity framework, I have a serious problem I have a database using ms-access and it is expensive for me if I want to change to sql server ?
I need to 开发者_运维知识库use entity framework functionality. could you give me a solution ?
If you want to use MSAccess don't use EF. If you want use EF, don't use MSAccess. Entity Framework does not support Access. But you can migrate to SQL Express (at no cost) and use EF for your applications. SQL Express is free and enought for small databases.
Alternatively, if you want a desktop database, you can use SQLite. NET driver for sqlite supports EF.
精彩评论