EntityFrameworkCore.Jet
EntityFrameworkCore.Jet copied to clipboard
Entity Framework Core provider for Access database
After a lot of work recently, this seems to be stable enough to merge to the main branch It has been updated to .Net/EF Core 6 with all the latest...
Created to continue discussion on EF core 6 support that was [started here](https://github.com/bubibubi/EntityFrameworkCore.Jet/issues/98#issuecomment-991045740)
We will use this issue to track the progress on supporting EF Core 5.
> Microsoft Access database engine could not find "MSysAccessStorage" Is this means that my database file has something wrong? What can I do then? Why is it trying to find...
When executing ~~`Migrate` or `MigrateAsync`~~ `EnsureCreated` and `EnsureCreatedAsync`, it doesn't matter which connection string we use, the provider will always use ODBC. In my case, I'm working with OLEDB and...
@lauxjpn @bubibubi Do you think a "Compatibility Matrix" like this would be helpful on the main README.md page? It seems like the largest share of questions arise from people wanting...
I am currently running in an issue on Windows 10 x64 machines which have seemingly no DAO drivers on them. If I try to create the database via the IMigrator...
Connection string: "Provider=Microsoft.ACE.OLEDB.12.0;Jet OLEDB:Engine Type=4;Data Source=c:\Temp\Access97EF\test.mdb;" "Jet OLEDB:Engine Type=4;" parameter are ignored, database version not as expected (Access2003 (jet4) vs. Access97 (jet3))  maybe the issue located hier? https://github.com/bubibubi/EntityFrameworkCore.Jet/blob/c09660785d7d4088c1f90f17d31b03650798d9d9/src/EFCore.Jet.Data/DaoDatabaseCreator.cs#L27
Let's say that you have an autonumber column. You add an annotation to change it into a number: `[DatabaseGenerated(DatabaseGeneratedOption.None)]` Would you expect the code change to generate a migration that...