[.net] 기준 SpatialRestrictions.IsWithinDistance NHibernate.Spatial

누구든지 이것을 구현했거나 이것을 구현하는 것이 어렵거나 포인터가 있는지 알고 있습니까?

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 쿼리와 결합하고 싶습니다.

지금은 대략적인 다각형을 만들고

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가 사용되지 않는 이유를 모르십니까?



답변

우리는 GitHub에서이 문제를 조사하고 있습니다. 훌륭한 통찰력과 가능한 솔루션을 제공해 주셔서 감사합니다. 다음은 문제에 대한 링크입니다. https://github.com/nhibernate/NHibernate.Spatial/issues/61

이 문제가 해결되는대로 새 NuGet 패키지를 게시하겠습니다.


답변

예, DLL을 다시 컴파일하는 것이 현재로서는 최상의 솔루션이라고 생각합니다.


답변