I am starting to learn UWP platform. In first steps I want to do simple application (bookshop). Unfortunately, I got stuck on steps: how to use Entity Framework with SQL Server in UWP?
First I was using
Install-Package Microsoft.EntityFrameworkCore.SqlServer
but I got lots of conflicts (ex. System.Threading.Thread 4.3.0
error, or One or more packages are incompatible with UAP,Version=v10.0 (win10-x86).).
After that, I was trying add a classic dll to project (and install ef), but... classic library are incompatible with UWP...
Do you have any idea how to use EF with SQL Server in UWP ? I don't want to use sqlite...