NetTopologySuite and EFCore migration error

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
<code>// Model
public class Location : BaseEntity
{
public Guid UserId { get; set; } // FK
public Guid? HometownCityId { get; set; } // FK
public Guid? CurrentCityId { get; set; } // FK
public NetTopologySuite.Geometries.Point Point { get; set; }
public User User { get; set; } // Navigation Property
public City HometownCity { get; set; } // Navigation Property
public City CurrentCity { get; set; } // Navigation Property
}
// Model Configuration
public class LocationConfiguration : IEntityTypeConfiguration<Location>
{
public void Configure(EntityTypeBuilder<Location> builder)
{
builder.ToTable("locations").HasKey(u => u.Id);
builder.Property(i => i.Id).HasColumnName("id").IsRequired();
builder.Property(i => i.UserId).HasColumnName("user_id").IsRequired(); // FK
builder.Property(i => i.HometownCityId).HasColumnName("hometown_city_id"); // FK
builder.Property(i => i.CurrentCityId).HasColumnName("current_city_id"); // FK
builder.Property(i => i.Point)
.HasColumnType("geography (point)");
builder.Property(i => i.CreatedDate).HasColumnName("created_date").IsRequired();
builder.Property(i => i.UpdatedDate).HasColumnName("updated_date");
builder.Property(i => i.DeletedDate).HasColumnName("deleted_date");
builder.HasQueryFilter(i => !i.DeletedDate.HasValue);
builder.HasOne(i => i.User)
.WithOne(i => i.Location)
.HasForeignKey<Location>(i => i.UserId);
builder.HasOne(i => i.HometownCity)
.WithMany(i => i.HometownLocations)
.HasForeignKey(i => i.HometownCityId);
builder.HasOne(i => i.CurrentCity)
.WithMany(i => i.CurrentLocations)
.HasForeignKey(i => i.CurrentCityId);
}
}
// ModelCreating
protected override void OnModelCreating(ModelBuilder modelBuilder)
{
modelBuilder.HasPostgresExtension("postgis");
modelBuilder.ApplyConfigurationsFromAssembly(Assembly.GetExecutingAssembly());
}
// AddContext
services.AddDbContext<BaseDbContext>(options =>
{
options.UseNpgsql(configuration.GetConnectionString("Default"),
o => o.UseNetTopologySuite());
});
//Packages
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.2" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="8.0.2" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer.NetTopologySuite" Version="8.0.2" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="8.0.2">
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="8.0.2" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL.NetTopologySuite" Version="8.0.2" />
</code>
<code>// Model public class Location : BaseEntity { public Guid UserId { get; set; } // FK public Guid? HometownCityId { get; set; } // FK public Guid? CurrentCityId { get; set; } // FK public NetTopologySuite.Geometries.Point Point { get; set; } public User User { get; set; } // Navigation Property public City HometownCity { get; set; } // Navigation Property public City CurrentCity { get; set; } // Navigation Property } // Model Configuration public class LocationConfiguration : IEntityTypeConfiguration<Location> { public void Configure(EntityTypeBuilder<Location> builder) { builder.ToTable("locations").HasKey(u => u.Id); builder.Property(i => i.Id).HasColumnName("id").IsRequired(); builder.Property(i => i.UserId).HasColumnName("user_id").IsRequired(); // FK builder.Property(i => i.HometownCityId).HasColumnName("hometown_city_id"); // FK builder.Property(i => i.CurrentCityId).HasColumnName("current_city_id"); // FK builder.Property(i => i.Point) .HasColumnType("geography (point)"); builder.Property(i => i.CreatedDate).HasColumnName("created_date").IsRequired(); builder.Property(i => i.UpdatedDate).HasColumnName("updated_date"); builder.Property(i => i.DeletedDate).HasColumnName("deleted_date"); builder.HasQueryFilter(i => !i.DeletedDate.HasValue); builder.HasOne(i => i.User) .WithOne(i => i.Location) .HasForeignKey<Location>(i => i.UserId); builder.HasOne(i => i.HometownCity) .WithMany(i => i.HometownLocations) .HasForeignKey(i => i.HometownCityId); builder.HasOne(i => i.CurrentCity) .WithMany(i => i.CurrentLocations) .HasForeignKey(i => i.CurrentCityId); } } // ModelCreating protected override void OnModelCreating(ModelBuilder modelBuilder) { modelBuilder.HasPostgresExtension("postgis"); modelBuilder.ApplyConfigurationsFromAssembly(Assembly.GetExecutingAssembly()); } // AddContext services.AddDbContext<BaseDbContext>(options => { options.UseNpgsql(configuration.GetConnectionString("Default"), o => o.UseNetTopologySuite()); }); //Packages <PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.2" /> <PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="8.0.2" /> <PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer.NetTopologySuite" Version="8.0.2" /> <PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="8.0.2"> <PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="8.0.2" /> <PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL.NetTopologySuite" Version="8.0.2" /> </code>
// Model
public class Location : BaseEntity
{
    public Guid UserId { get; set; } // FK
    public Guid? HometownCityId { get; set; } // FK
    public Guid? CurrentCityId { get; set; } // FK

    public NetTopologySuite.Geometries.Point Point { get; set; } 
    public User User { get; set; }  // Navigation Property
    public City HometownCity { get; set; }  // Navigation Property
    public City CurrentCity { get; set; }  // Navigation Property
}

// Model Configuration
public class LocationConfiguration : IEntityTypeConfiguration<Location>
{
    public void Configure(EntityTypeBuilder<Location> builder)
    {
        builder.ToTable("locations").HasKey(u => u.Id);

        builder.Property(i => i.Id).HasColumnName("id").IsRequired();
        builder.Property(i => i.UserId).HasColumnName("user_id").IsRequired(); // FK
        builder.Property(i => i.HometownCityId).HasColumnName("hometown_city_id"); // FK
        builder.Property(i => i.CurrentCityId).HasColumnName("current_city_id"); // FK
        builder.Property(i => i.Point)
           .HasColumnType("geography (point)");

        builder.Property(i => i.CreatedDate).HasColumnName("created_date").IsRequired();
        builder.Property(i => i.UpdatedDate).HasColumnName("updated_date");
        builder.Property(i => i.DeletedDate).HasColumnName("deleted_date");
        builder.HasQueryFilter(i => !i.DeletedDate.HasValue);
       

        builder.HasOne(i => i.User)
            .WithOne(i => i.Location)
            .HasForeignKey<Location>(i => i.UserId);
        
        builder.HasOne(i => i.HometownCity)
            .WithMany(i => i.HometownLocations)
            .HasForeignKey(i => i.HometownCityId);
        
        builder.HasOne(i => i.CurrentCity)
            .WithMany(i => i.CurrentLocations)
            .HasForeignKey(i => i.CurrentCityId);
    }
}

 // ModelCreating
 protected override void OnModelCreating(ModelBuilder modelBuilder)
 {
     modelBuilder.HasPostgresExtension("postgis");
     modelBuilder.ApplyConfigurationsFromAssembly(Assembly.GetExecutingAssembly());
 }

// AddContext
services.AddDbContext<BaseDbContext>(options =>
{
    options.UseNpgsql(configuration.GetConnectionString("Default"), 
        o => o.UseNetTopologySuite());
});

//Packages
 <PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.2" />
 <PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="8.0.2" />
 <PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer.NetTopologySuite" Version="8.0.2" />
 <PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="8.0.2">
      <PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="8.0.2" />
      <PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL.NetTopologySuite" Version="8.0.2" />

The error that comes when I get migrate:

Unable to create a ‘DbContext’ of type ”. The exception ‘The ‘Point’ property ‘Location.Point’ could not be mapped to the database type ‘geography (point)’ because the database provider does not support mapping ‘Point’ properties to ‘geography (point)’ columns. Consider mapping to a different database type or converting the property value to a type supported by the database using a value converter. See https://aka.ms/efcore-docs-value-converters for more information. Alternately, exclude the property from the model using the ‘[NotMapped]’ attribute or by using ‘EntityTypeBuilder.Ignore’ in ‘OnModelCreating’.’ was thrown while attempting to create an instance. For the different patterns supported at design time, see https://go.microsoft.com/fwlink/?linkid=851728

Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa Dịch vụ tổ chức sự kiện 5 sao Thông tin về chúng tôi Dịch vụ sinh nhật bé trai Dịch vụ sinh nhật bé gái Sự kiện trọn gói Các tiết mục giải trí Dịch vụ bổ trợ Tiệc cưới sang trọng Dịch vụ khai trương Tư vấn tổ chức sự kiện Hình ảnh sự kiện Cập nhật tin tức Liên hệ ngay Thuê chú hề chuyên nghiệp Tiệc tất niên cho công ty Trang trí tiệc cuối năm Tiệc tất niên độc đáo Sinh nhật bé Hải Đăng Sinh nhật đáng yêu bé Khánh Vân Sinh nhật sang trọng Bích Ngân Tiệc sinh nhật bé Thanh Trang Dịch vụ ông già Noel Xiếc thú vui nhộn Biểu diễn xiếc quay đĩa Dịch vụ tổ chức tiệc uy tín Khám phá dịch vụ của chúng tôi Tiệc sinh nhật cho bé trai Trang trí tiệc cho bé gái Gói sự kiện chuyên nghiệp Chương trình giải trí hấp dẫn Dịch vụ hỗ trợ sự kiện Trang trí tiệc cưới đẹp Khởi đầu thành công với khai trương Chuyên gia tư vấn sự kiện Xem ảnh các sự kiện đẹp Tin mới về sự kiện Kết nối với đội ngũ chuyên gia Chú hề vui nhộn cho tiệc sinh nhật Ý tưởng tiệc cuối năm Tất niên độc đáo Trang trí tiệc hiện đại Tổ chức sinh nhật cho Hải Đăng Sinh nhật độc quyền Khánh Vân Phong cách tiệc Bích Ngân Trang trí tiệc bé Thanh Trang Thuê dịch vụ ông già Noel chuyên nghiệp Xem xiếc khỉ đặc sắc Xiếc quay đĩa thú vị
Trang chủ Giới thiệu Sinh nhật bé trai Sinh nhật bé gái Tổ chức sự kiện Biểu diễn giải trí Dịch vụ khác Trang trí tiệc cưới Tổ chức khai trương Tư vấn dịch vụ Thư viện ảnh Tin tức - sự kiện Liên hệ Chú hề sinh nhật Trang trí YEAR END PARTY công ty Trang trí tất niên cuối năm Trang trí tất niên xu hướng mới nhất Trang trí sinh nhật bé trai Hải Đăng Trang trí sinh nhật bé Khánh Vân Trang trí sinh nhật Bích Ngân Trang trí sinh nhật bé Thanh Trang Thuê ông già Noel phát quà Biểu diễn xiếc khỉ Xiếc quay đĩa
Thiết kế website Thiết kế website Thiết kế website Cách kháng tài khoản quảng cáo Mua bán Fanpage Facebook Dịch vụ SEO Tổ chức sinh nhật