Reputation: 45285
I have a project which was written using SQL Data Provider. As I see it depends on System.Data.Linq.
Now I need to port this application to NET Core, but it looks like that NET Core doesn't support System.Data.Linq (https://github.com/dotnet/standard/issues/30).
Is there any way to use SQL Data Provider in NET Core or do I need to rewrite all the database layer ?
Upvotes: 4
Views: 1713
Reputation: 6324
There are other issues besides lacking System.Data
with netcore and typeproviders, having to do with reflection. Also, what you are referencing is one of the original F#3 type providers, which is a bit old.
You have some workarounds:
There is also Rezoom, which lets you write SQL, but I don't think it supports .netcore (I might be wrong).
Upvotes: 2