誰かがこれを実装しましたか、またはこれを実装することが困難であるかどうか/ポインタを持っているかどうかを知っていますか?
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バリアントを使用しましたか?
—
リードマン
上記のアプローチで行って、動作するようにdllを再コンパイルしたと思いますが、まだ実験的なコードでした。
—
Ian
@アムレッシュOPが提案したソリューションに満足していませんか?
—
エランガ
DLLを再コンパイルして機能させます。
—
cowboy911
MicrosoftのRich Lander氏によれば、NHibernateフォーラムでこの問題を提起した方が良い可能性があるとのことです。
—
Annie