EntityFrameworkCore.Jet icon indicating copy to clipboard operation
EntityFrameworkCore.Jet copied to clipboard

Entity Framework Core provider for Access database

Results 42 EntityFrameworkCore.Jet issues
Sort by recently updated
recently updated
newest added

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.

enhancement

It would be nice to enlist to scoped transactions.

enhancement

> 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...

feedback required

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...

investigation

@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...

enhancement

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...

question

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)) ![Unbenannt](https://user-images.githubusercontent.com/8851893/140613572-d72dec8a-7733-45b9-90b0-54188773c4ca.PNG) maybe the issue located hier? https://github.com/bubibubi/EntityFrameworkCore.Jet/blob/c09660785d7d4088c1f90f17d31b03650798d9d9/src/EFCore.Jet.Data/DaoDatabaseCreator.cs#L27

enhancement

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...

bug