Entity Platform Type Provider

Is it possible to create a type provider in F # 3.0 for the Entity Framework so that I can get a neat IntelliSense like with SqlDataConnection (included in Microsoft.FSharp.Data.TypeProviders), but with EF under the hood?

+6
source share
1 answer

They already provide two providers of type Entity Framework out of the box. a provider of type EdmxFile for disabled EDMX and SqlEntityConnection files (for those associated with a provider of type SqlDataConnection ).

+7
source

Source: https://habr.com/ru/post/898330/


All Articles