Forgot Password,

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

You must login to ask a question.

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

databaseanswers.net Latest Questions

  • 0
Clara
Beginner

We are using Entity Framework Core 6 and SQLlite with Spatial data in our tests (xunit). in our .csproj we have <PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="6.0.2" /> <PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite.NetTopologySuite" Version="6.0.2" /> <PackageReference Include="SQLitePCLRaw.provider.sqlite3" Version="2.0.4" /> here is how we setup SQLite: var builder = new DbContextOptionsBuilder<DataContext>(); builder.UseSqlite("Data Source=:memory:", ...