Criteria SpatialRestrictions.IsWithinDistance NHibernate.Spatial


95

有没有人实现这个,或者知道实现这个困难/是否有任何指针?

public static SpatialRelationCriterion IsWithinDistance(string propertyName, object anotherGeometry, double distance)
{
    // TODO: Implement
    throw new NotImplementedException();
}

来自NHibernate.Spatial.Criterion.SpatialRestrictions

我可以在hql中使用“ where NHSP.Distance(PROPERTY,:point)”。但是要将此查询与我现有的条件查询结合在一起。

目前,我正在创建一个粗糙的多边形,并使用

criteria.Add(SpatialRestrictions.Intersects("PROPERTY", myPolygon));

编辑 通过在SpatialRelationCriterion上重载构造函数,并添加新的SpatialRelation.Distance,获得了一个原型工作。

public static SpatialRelationCriterion IsWithinDistance(string propertyName, object anotherGeometry, double distance)
        {
            return new SpatialRelationCriterion(propertyName, SpatialRelation.Distance, anotherGeometry, distance);
        }

在SpatialRelationCriterion中添加了一个新字段

private readonly double? distance;

public SpatialRelationCriterion(string propertyName, SpatialRelation relation, object anotherGeometry, double distance)
            : this(propertyName, relation, anotherGeometry)
        {
            this.distance = distance;
        }

编辑ToSqlString

object secondGeometry = Parameter.Placeholder;
                if (!(this.anotherGeometry is IGeometry))
                {
                    secondGeometry = columns2[i];
                }

                if (distance.HasValue)
                {
                    builder.Add(spatialDialect.GetSpatialRelationString(columns1[i], this.relation, secondGeometry, distance.Value, true));
                }
                else
                {
                    builder.Add(spatialDialect.GetSpatialRelationString(columns1[i], this.relation, secondGeometry, true));
                }

重载的ISpatialDialect.GetSpatialRelationString

在MsSql2008SpatialDialect中实现了重载

public SqlString GetSpatialRelationString(object geometry, SpatialRelation relation, object anotherGeometry, double distance, bool criterion)
        {
            var x = new SqlStringBuilder(8)
                           .AddObject(geometry)
                           .Add(".ST")
                           .Add(relation.ToString())
                           .Add("(")
                           .AddObject(anotherGeometry)
                           .Add(")");

            if (criterion)
            {
                x.Add(" < ");
                x.AddObject(distance.ToString());
            }

            return x.ToSqlString();
        }

不确定为什么不使用AddParameter吗?


3
我有同样的问题,到目前为止还没有找到任何完整的补丁程序/修复程序/。您解决了这个问题,还是选择了HQL变体?
利德曼

1
Think采取了上述方法,并重新编译了dll才能正常工作,但仍是实验代码。
伊恩

2
@Amresh对OP提出的建议解决方案不满意吗?
Eranga 2012年

重新编译DLL,使其正常工作。
cowboy911

根据Microsoft的Rich Lander的说法,如果您在NHibernate论坛上提出此问题,则可能会有更好的机会。
安妮

Answers:



0

是的,我认为现在重新编译DLL是最好的解决方案。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.