I am using Entity Framework 6 to manage an MS Access database (mdb file). I am now using this project (bubibubi / EntityFrameworkCore.Jet) But in their example, it uses a * .accdb file while I'm using a * .mdb file. When i execute:
Scaffold-DbContext -Connection "Provider=Microsoft.ACE.OLEDB.12.0;Data Source='C:\database.mdb';Database Password=mypass" -Provider EntityFrameworkCore.Jet
I get this message: Could not find installable ISAM.
I don't know and don't find what i need to do.
I'm use C#, Console App, .Net Framework 4.6.1
Edit: If i use the new Access database files (.accdb) that work fine. But this is a legacy project and i need manage a old access files (.mdb)