0

I found that most of the dotConnect versions (Oracle, PostgreSQL, MySQL) are compatible with EFCore. However, seems that it does not work with SQL Server. Is there something I missed? I have been using Devart with EF Core on other project for a while and it's super fancy. May I know if there a way to use dotConnect with EF Core? Thank in advance.

mannok
  • 1,712
  • 1
  • 20
  • 30

1 Answers1

1

Try using Devart Entity Developer for Entity Framework to generate EF Core Model for SQL Server via standard System.Data.SqlClient.

Devart
  • 119,203
  • 23
  • 166
  • 186
  • Thank you @Devart . btw, may I know if dotConnect support in-memory efcore as well? – mannok Jan 18 '21 at 14:12
  • The EF Core template includes the !optionsBuilder.IsConfigured check for setting optionsBuilder.Use... in the generated OnConfiguring method. So, if you pass optionsBuilder.Options configured for using in-memory to your context constructor, you can work with in-memory. – Devart Jan 19 '21 at 17:39