কেউ কি এটি বাস্তবায়ন করেছেন, বা জানেন যে এটি বাস্তবায়ন করা কঠিন / কোন পয়েন্টার রয়েছে কিনা?
public static SpatialRelationCriterion IsWithinDistance(string propertyName, object anotherGeometry, double distance)
{
// TODO: Implement
throw new NotImplementedException();
}
NHibernate.Spatial.Criterion.SpatialRestrictions থেকে
আমি "যেখানে NHSP.Distance (PROPERTY,: point)" hql তে ব্যবহার করতে পারি। তবে এই ক্যোয়ারীটি আমার বিদ্যমান মানদণ্ডের প্রশ্নের সাথে একত্রিত করতে চাই।
এই মুহুর্তে আমি মোটামুটি বহুভুজ তৈরি করছি এবং ব্যবহার করছি
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);
}
স্প্যাটিয়ালিলিয়েশনক্রিটায়নে একটি নতুন ক্ষেত্র যুক্ত হয়েছে
private readonly double? distance;
public SpatialRelationCriterion(string propertyName, SpatialRelation relation, object anotherGeometry, double distance)
: this(propertyName, relation, anotherGeometry)
{
this.distance = distance;
}
ToSQL স্ট্রিং সম্পাদিত
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
এমএসএসএকএলসিএলএস 800 স্পেশিয়ালডায়ালেক্টে ওভারলোড প্রয়োগ করা হয়েছে
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();
}
অ্যাডপ্যারামিটার কেন ব্যবহার হচ্ছে না তা নিশ্চিত নন?