You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Carlos Martínez edited this page Mar 23, 2014
·
1 revision
[TestMethod]
public void Buffer2()
{
var session = SessionFactory.GetSession();
var criteria = session.CreateCriteria<Direccion>();
criteria.SetProjection(SpatialProjections.Buffer(Projections.Property<Direccion>(d => d.Referencia), 0.1));
criteria.SetMaxResults(10);
var r = criteria.List();
}