Czy ktoś to zaimplementował lub wie, czy byłoby to trudne / ma jakieś wskazówki?
public static SpatialRelationCriterion IsWithinDistance(string propertyName, object anotherGeometry, double distance)
{
// TODO: Implement
throw new NotImplementedException();
}
z NHibernate.Spatial.Criterion.SpatialRestrictions
Mogę użyć wyrażenia „gdzie NHSP.Distance (PROPERTY,: point)” w hql. Ale chcę połączyć to zapytanie z moim istniejącym zapytaniem Kryteria.
na razie tworzę szorstki wielokąt i używam
criteria.Add(SpatialRestrictions.Intersects("PROPERTY", myPolygon));
EDYCJA Uzyskano prototyp działający przez przeciążenie konstruktora na SpatialRelationCriterion, dodając nowy SpatialRelation.Distance
public static SpatialRelationCriterion IsWithinDistance(string propertyName, object anotherGeometry, double distance)
{
return new SpatialRelationCriterion(propertyName, SpatialRelation.Distance, anotherGeometry, distance);
}
dodano nowe pole do SpatialRelationCriterion
private readonly double? distance;
public SpatialRelationCriterion(string propertyName, SpatialRelation relation, object anotherGeometry, double distance)
: this(propertyName, relation, anotherGeometry)
{
this.distance = distance;
}
Edytowano 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));
}
przeciążony ISpatialDialect.GetSpatialRelationString
zaimplementowano przeciążenie w 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();
}
Nie wiesz, dlaczego AddParameter nie jest używany?
Odpowiedzi:
przyglądamy się temu problemowi na GitHub. Dziękujemy za przekazanie świetnych informacji i możliwego rozwiązania. Oto link do problemu: https://github.com/nhibernate/NHibernate.Spatial/issues/61
Opublikuję nowe pakiety NuGet, gdy tylko zostanie to naprawione.
źródło
Tak, myślę, że na razie Recompile DLL jest najlepszym rozwiązaniem.
źródło