Entity framework joins ms-access

I want to ask that in any way you generate or update an access database from an entity structure, I have a serious problem. I have a database using ms access, and is it expensive for me if I want to switch to sql server?

I need to use the functionality of the entity. could you give me a solution?

+3
source share
1 answer

If you want to use MSAccess, do not use EF. If you want to use EF, do not use MSAccess. Entity Framework does not support Access. But you can upgrade to SQL Express (for free) and use EF for your applications. SQL Express is free and sufficient for small databases.

Alternatively, if you want a desktop database, you can use SQLite.NET for sqlite supports EF.

0
source

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


All Articles