MikaelEliasson / EntityFramework.Utilities

Provides extensions for EntityFramework that doesn't exist out of the box like delete and update by query and bulk inserts
443 stars 176 forks source link

Does this project supports sqlite and mysql or any other sql engines? #131

Closed Sellec closed 4 years ago

Sellec commented 4 years ago

Subj.

RudeySH commented 4 years ago

No, EFUtilities implements most of it's features by utilizing SqlBulkInsert, which is a SQL Server API. Some other features are implemented by rewriting SQL queries, but these queries will most likely not work on anything other than SQL Server. If I remember correctly, the code is set up so you can easily add different implementations for other DB systems, but the implementations themselves aren't there yet.

MikaelEliasson commented 4 years ago

Correct, it's possible to make it support those but not something that will be generally.