https://github.com/alexwiese/EntityFrameworkCore.OpenEdge
You can now use Entity Framework Core with Progress OpenEdge via ODBC.
Install it from Nuget
Install-Package EntityFrameworkCore.OpenEdge -Version 1.0.2
Then wire up the provider with your ODBC Connection string in the DbContext.
public class MyDbContext : DbContext
{
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
{
optionsBuilder.UseOpenEdge("dsn=MyDb;password=mypassword");
}
}
It even works with LINQPad with the Entity Framework Core LINQPad driver
Exactly what I was looking for! Can’t wait to try it out! Is this stable?