Alguém implementou isso, ou sabe se seria difícil implementar isso / tem alguma indicação?
public static SpatialRelationCriterion IsWithinDistance(string propertyName, object anotherGeometry, double distance)
{
// TODO: Implement
throw new NotImplementedException();
}
de NHibernate.Spatial.Criterion.SpatialRestrictions
Posso usar "where NHSP.Distance (PROPERTY,: point)" em hql. Mas quero combinar esta consulta com minha consulta de critérios existente.
no momento estou criando um polígono aproximado e usando
criteria.Add(SpatialRestrictions.Intersects("PROPERTY", myPolygon));
EDITAR Tem um protótipo funcionando, sobrecarregando o construtor em SpatialRelationCriterion, adicionando novo SpatialRelation.Distance
public static SpatialRelationCriterion IsWithinDistance(string propertyName, object anotherGeometry, double distance)
{
return new SpatialRelationCriterion(propertyName, SpatialRelation.Distance, anotherGeometry, distance);
}
adicionou um novo campo a SpatialRelationCriterion
private readonly double? distance;
public SpatialRelationCriterion(string propertyName, SpatialRelation relation, object anotherGeometry, double distance)
: this(propertyName, relation, anotherGeometry)
{
this.distance = distance;
}
Editado 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 sobrecarregado
sobrecarga implementada em 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();
}
Não sabe por que AddParameter não está sendo usado?