Entity Framework Core support for SQL Spatial Data Types - DBGeography?

后端 未结 2 1905
梦如初夏
梦如初夏 2021-01-18 03:02

I want to make a web application using ASP.NET Core Razor Pages that has some geographic data in SQL Server. Visual Studio gives an error that it doesn\'t support the Geogr

相关标签:
2条回答
  • 2021-01-18 03:33

    I just stumbled across your post and also the first link you mentioned. Only a few days ago, a preview version of EntityFrameworkCore 2.2.0 was published which is supposed to support spatial data types in SQL Server.

    See https://github.com/aspnet/EntityFrameworkCore/issues/1100#issuecomment-417618315 and the following comments.

    I haven't tried it myself yet and it's probably not working 100%, but it's surely worth a try.

    0 讨论(0)
  • 2021-01-18 03:46

    Spatial data support is introduced with the version 2.2 of Entity Framework Core. It uses NetTopologySuite data types and maps them to geography or geometry SQL Server types. You can install NetTopologySuite via NuGet:

    Install-Package NetTopologySuite
    

    And you will also need the following NuGet package for EF Core spatial data support for SQL Server:

    Install-Package Microsoft.EntityFrameworkCore.SqlServer.NetTopologySuite
    

    and to use the UseNetTopologySuite option in your EF context configuration:

    protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
    {
        optionsBuilder.UseSqlServer(
            @"my connection string",
            x => x.UseNetTopologySuite());
    }
    

    Then you can do something like this:

    var nearestCity = db.Cities
        .OrderBy(c => c.Location.Distance(currentLocation))
        .FirstOrDefault();
    

    I wrote about it in my Finding Nearby Users with Entity Framework Core Spatial Data blog post.

    0 讨论(0)
提交回复
热议问题