Nhibernate: using Expression
- by VoodooChild
Hello,
Using nHibernate, I would like to query on an integer datatype, but its always returning the exact match.
How could I write an expression that returns a list starting with the number entered?
right now I am using it as:
(clientNum is a long)
crit.Add(Expression.Like("ClientNumber", clientNum)); //this always gives me exact matches only
…