เกณฑ์ SpatialRestrictions IsWithinDistance NHibernate.Spatial


95

มีใครนำสิ่งนี้ไปใช้หรือรู้ว่ามันยากที่จะนำไปใช้ / มีคำแนะนำใด ๆ

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);
        }

เพิ่มฟิลด์ใหม่ใน 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?
Liedman

1
Think เป็นไปตามแนวทางข้างต้นและทำการคอมไพล์ใหม่ให้ใช้งานได้ แต่ยังคงเป็นโค้ดทดลอง
เอียน

2
@Amresh คุณไม่พอใจกับโซลูชันที่ OP เสนอให้หรือไม่?
Eranga

คอมไพล์ DLL ใหม่เพื่อให้ใช้งานได้
cowboy911

ตามที่อุดมไปด้วยแลนเดอร์ของไมโครซอฟท์คุณอาจยืนโอกาสที่ดีคุณควรจะยกปัญหานี้ในฟอรั่ม NHibernate
Annie

คำตอบ:


1

เรากำลังตรวจสอบปัญหานี้ที่ GitHub ขอขอบคุณที่ให้ข้อมูลเชิงลึกที่ยอดเยี่ยมและวิธีแก้ปัญหาที่เป็นไปได้ นี่คือลิงค์ไปยังปัญหา: https://github.com/nhibernate/NHibernate.Spatial/issues/61

ฉันจะเผยแพร่แพ็คเกจ NuGet ใหม่ทันทีที่ได้รับการแก้ไข


คำถาม SO นี้ก็เช่นกันเกี่ยวกับปัญหาที่คล้ายกันกับโซลูชันอื่นstackoverflow.com/questions/1833879/…
Surya Pratap

0

ใช่ฉันคิดว่าการคอมไพล์ DLL ใหม่เป็นทางออกที่ดีที่สุดสำหรับตอนนี้

โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.