Hibernate version: 1.2.1 GA
Hi
I have just downloaded NHibernate source code and compiled it, but when i want to use Expressions, like Expression.Eq() is doesn't show me any summery of what that function does.. however, I can see that the source code contains that information..
Code:
/// <summary>
/// Apply an "equal" constraint to the named property
/// </summary>
/// <param name="propertyName">The name of the Property in the class.</param>
/// <param name="value">The value for the Property.</param>
/// <returns>An <see cref="EqExpression" />.</returns>
public static SimpleExpression Eq(string propertyName, object value)
{
return new EqExpression(propertyName, value);
}
What am I missing?
best regards,
Mark