我正在尝试使用NHibernate.Spatial.MySQL(版本4.0.4.4001)创建一个简单的演示解决方案。该解决方案在此处可用:https://github.com/andrerav/NHibernate.Spatial.MySql.Demo

映射似乎至少对插入有效— DemoDataImport项目能够读取GeoJSON文件,并将几何插入数据库中,我可以使用MySQL Workbench验证结果。

但是,如果我查询数据,则几何总是显示为空值。此外,如果我执行这样的查询:

var municipalities = SessionManager.Session.Query<Municipality>()
                        .Where(m => m.Area.Within(county.Area)).ToList();


我收到一个异常消息:“没有持久性:GeoAPI.Geometries.IGeometry”。

任何想法可能有什么问题吗?

要运行该解决方案,请首先使用用户名/密码mysqldemo / mysqldemo创建一个名为mysqldemo的mysql数据库(mysql 5.7或更高版本)。 DemoDataImport项目会将geojson数据转储到数据库中,并且DemoQueryUtil项目可用于执行查询。

对应:

public class Municipality
{
    public virtual int Id { get; set; }
    public virtual County County { get; set; }
    public virtual string Name { get; set; }
    public virtual int MunicipalityNo { get; set; }
    public virtual IGeometry Area { get; set; }
}

public class MunicipalityMap : ClassMap<Municipality>
{
    public MunicipalityMap()
    {
        ImportType<IGeometry>();
        Id(x => x.Id);
        Map(x => x.Name);
        Map(x => x.MunicipalityNo);
        Map(x => x.Area).CustomType<MySQLGeometryType>();
        References(x => x.County).Nullable();
    }
}

public class County
{
    public virtual int Id { get; set; }
    public virtual string Name { get; set; }
    public virtual int CountyNo { get; set; }
    public virtual IGeometry Area { get; set; }
    public virtual List<Municipality> Municipalities { get; set; }

}

public class CountyMap : ClassMap<County>
{
    public CountyMap()
    {
        ImportType<IGeometry>();
        Id(x => x.Id);
        Map(x => x.Name);
        Map(x => x.CountyNo);
        Map(x => x.Area).CustomType<MySQLGeometryType>();
    }
}


组态:

    public static void Configure(bool generateTables = false)
    {
        var cfg = Fluently.Configure()
            .Database(FluentNHibernate.Cfg.Db.MySQLConfiguration.Standard
            .ConnectionString(c => c.FromConnectionStringWithKey("MySQL"))
            .Driver<MySqlDataDriver>()
            .ShowSql()
            .Dialect<MySQLSpatialDialect>())
            .Mappings(x => x.FluentMappings.AddFromAssemblyOf<MunicipalityMap>())
            .BuildConfiguration();

        cfg.AddAuxiliaryDatabaseObject(new SpatialAuxiliaryDatabaseObject(cfg));

        if (generateTables)
        {
            var exporter = new SchemaExport(cfg);
            exporter.Drop(false, true);
            exporter.Create(true, true);
        }

        SessionManager.SessionFactory = cfg.BuildSessionFactory();

    }


查询示例:

var county = SessionManager.Session.Query<County>().First();

最佳答案

此问题是由于NHibernate.Spatial.MySQL中缺少对MySQL 5.7的支持所致。我在MySQL57SpatialDialect的预发行版本中添加了一个新的NHibernate.Spatial.MySQL,它解决了此问题。

10-06 00:34