Criterios SpatialRestrictions.IsWithinDistance NHibernate.Spatial


95

¿Alguien ha implementado esto, o sabe si sería difícil implementar esto / tiene alguna sugerencia?

public static SpatialRelationCriterion IsWithinDistance(string propertyName, object anotherGeometry, double distance)
{
    // TODO: Implement
    throw new NotImplementedException();
}

de NHibernate.Spatial.Criterion.SpatialRestrictions

Puedo usar "donde NHSP.Distance (PROPIEDAD,: punto)" en hql. Pero quiero combinar esta consulta con mi consulta Criteria existente.

por el momento, estoy creando un polígono aproximado y usando

criteria.Add(SpatialRestrictions.Intersects("PROPERTY", myPolygon));

EDITAR Obtuve un prototipo funcionando al sobrecargar el constructor en SpatialRelationCriterion, agregando nuevo SpatialRelation.Distance

public static SpatialRelationCriterion IsWithinDistance(string propertyName, object anotherGeometry, double distance)
        {
            return new SpatialRelationCriterion(propertyName, SpatialRelation.Distance, anotherGeometry, distance);
        }

agregó un nuevo campo a SpatialRelationCriterion

private readonly double? distance;

public SpatialRelationCriterion(string propertyName, SpatialRelation relation, object anotherGeometry, double distance)
            : this(propertyName, relation, anotherGeometry)
        {
            this.distance = distance;
        }

ToSqlString editado

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 sobrecargado

sobrecarga implementada en 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();
        }

¿No está seguro de por qué no se utiliza AddParameter?


3
Tengo el mismo problema y no he encontrado ningún parche / solución completa hasta ahora. ¿Lo resolviste o te decantaste por la variante HQL?
Liedman

1
Think fue con el enfoque anterior y recompilló dll para que funcionara, pero aún era código experimental.
Ian

2
@Amresh, ¿no está satisfecho con la solución propuesta que OP dio?
Eranga

Vuelva a compilar la DLL para que funcione.
cowboy911

Según Rich Lander de Microsoft , es posible que tenga más posibilidades de plantear este problema en los foros de NHibernate .
Annie

Respuestas:



0

Sí, creo que Recompile the DLL es la mejor solución por ahora.

Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.