基準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バリアントを使用しましたか?
リードマン

1
上記のアプローチで行って、動作するようにdllを再コンパイルしたと思いますが、まだ実験的なコードでした。
Ian

2
@アムレッシュOPが提案したソリューションに満足していませんか?
エランガ

DLLを再コンパイルして機能させます。
cowboy911

MicrosoftのRich Lander氏によれば、NHibernateフォーラムでこの問題を提起した方が良い可能性があるとのことです。
Annie

回答:


1

この問題はGitHubで調査しています。素晴らしい洞察と可能な解決策を提供してくれてありがとう。問題へのリンクは次のとおりです。https//github.com/nhibernate/NHibernate.Spatial/issues/61

これが修正され次第、新しいNuGetパッケージを公開します。


このSOの質問はあまりにも異なるソリューションと同様の問題についてですstackoverflow.com/questions/1833879/...
スーリヤPratap

0

はい、今のところ、DLLを再コンパイルするのが最善の解決策だと思います。

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.