Bunu uygulayan var mı veya bunu uygulamanın zor olup olmayacağını bilen / herhangi bir ipucu var mı?
public static SpatialRelationCriterion IsWithinDistance(string propertyName, object anotherGeometry, double distance)
{
// TODO: Implement
throw new NotImplementedException();
}
NHibernate.Spatial.Criterion.SpaceRestrictions'dan
Hql'de "where NHSP.Distance (PROPERTY,: point)" kullanabilirim. Ancak bu sorguyu mevcut Ölçüt sorgumla birleştirmek istiyorum.
şimdilik kaba bir çokgen oluşturuyorum ve kullanıyorum
criteria.Add(SpatialRestrictions.Intersects("PROPERTY", myPolygon));
EDIT Yeni SpatialRelation.Distance ekleyerek SpatialRelationCriterion üzerinde yapıcıyı aşırı yükleyerek çalışan bir prototip elde etti
public static SpatialRelationCriterion IsWithinDistance(string propertyName, object anotherGeometry, double distance)
{
return new SpatialRelationCriterion(propertyName, SpatialRelation.Distance, anotherGeometry, distance);
}
SpatialRelationCriterion'a yeni bir alan eklendi
private readonly double? distance;
public SpatialRelationCriterion(string propertyName, SpatialRelation relation, object anotherGeometry, double distance)
: this(propertyName, relation, anotherGeometry)
{
this.distance = distance;
}
ToSqlString Düzenlendi
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));
}
aşırı yüklenmiş ISpatialDialect.GetSpatialRelationString
MsSql2008SpatialDialect'te aşırı yük uygulandı
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'in neden kullanılmadığından emin değil misiniz?