Ejemplo n.º 1
0
 public void IsNotEmpty(string propertyName)
 {
     Criterion = HqlRestrictions.IsNotEmpty(propertyName);
 }
Ejemplo n.º 2
0
 public void IsNull(string propertyName)
 {
     Criterion = HqlRestrictions.IsNull(propertyName);
 }
Ejemplo n.º 3
0
 public void LeProperty(string propertyName, string otherPropertyName)
 {
     Criterion = HqlRestrictions.LeProperty(propertyName, otherPropertyName);
 }
Ejemplo n.º 4
0
 public void In(string propertyName, object[] values)
 {
     Criterion = HqlRestrictions.In(propertyName, values);
 }
Ejemplo n.º 5
0
 public void InG <T>(string propertyName, ICollection <T> values)
 {
     Criterion = HqlRestrictions.InG(propertyName, values);
 }
Ejemplo n.º 6
0
 public void Between(string propertyName, object lo, object hi)
 {
     Criterion = HqlRestrictions.Between(propertyName, lo, hi);
 }
Ejemplo n.º 7
0
 public void Ge(string propertyName, object value)
 {
     Criterion = HqlRestrictions.Ge(propertyName, value);
 }
Ejemplo n.º 8
0
 public void InsensitiveLike(string propertyName, string value, HqlMatchMode matchMode)
 {
     Criterion = HqlRestrictions.InsensitiveLike(propertyName, value, matchMode);
 }
 public void NaturalId()
 {
     Criterion = HqlRestrictions.NaturalId();
 }
 public void AllEq(IDictionary propertyNameValues)
 {
     Criterion = HqlRestrictions.AllEq(propertyNameValues);
 }