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

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

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 변형을 사용하셨습니까?
Liedman 2011

1
위의 접근 방식을 사용하고 dll을 다시 압축하여 작동했지만 여전히 실험적인 코드였습니다.
Ian

2
@Amresh OP가 제안한 솔루션에 만족하지 않습니까?
Eranga

작동하도록 DLL을 다시 컴파일하십시오.
cowboy911

Microsoft의 Rich Lander에 따르면 NHibernate 포럼 에서이 문제를 제기하면 더 나은 기회를 가질 수 있습니다 .
Annie

답변:



0

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

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.