Using QueryOver this is a bit of a problem, because we need to use Projections when using SQL functions.
I dropped the abs(...), because it is not neccessary, since x * x == -x * -x
Option 1: Using a SqlProjection (not pretty, but shorter)
int x = 10;
int y = 20;
var result = session.QueryOver<Product>()
.OrderBy(Projections.SqlProjection(
@"power(x - " + x.ToString() + ", 2) + power(y - " + y.ToString() + ", 2) as tmporder",
new string[] { "test" },
new NHibernate.Type.IType[] { NHibernateUtil.Int32 })).Asc
.List();
Option 2: Using SqlFunction - this is longer and requires a look at the link below:
Something like this (you would need to include the OperatorProjection from the link; it's not complete and I didn't test it)
.OrderBy(Projections.SqlFunction("power", NHibernateUtil.Double,
new ArithmeticOperatorProjection("+", NHibernateUtil.Int32,
Projections.Property<Product>(p => p.x), Projections.Constant(x)),
Projections.Constant(2))).Asc
NHibernate and the missing OperatorProjection Part 1