/// <summary>
 /// Apply a "between" constraint to the named property
 /// Note: throws an exception outside of a QueryOver expression
 /// </summary>
 public static RestrictionBetweenBuilder IsBetween(this object projection, object lo)
 {
     throw QueryOver.GetDirectUsageException();
 }
 /// <summary>
 /// Apply a "like" restriction in a QueryOver expression
 /// Note: throws an exception outside of a QueryOver expression
 /// </summary>
 public static bool IsInsensitiveLike(this string projection, string comparison, MatchMode matchMode)
 {
     throw QueryOver.GetDirectUsageException();
 }
 /// <summary>
 /// Apply an "in" constraint to the named property
 /// Note: throws an exception outside of a QueryOver expression
 /// </summary>
 public static bool IsIn(this object projection, ICollection values)
 {
     throw QueryOver.GetDirectUsageException();
 }
 /// <summary>
 /// Apply a "like" restriction in a QueryOver expression
 /// Note: throws an exception outside of a QueryOver expression
 /// </summary>
 public static bool IsLike(this string projection, string comparison)
 {
     throw QueryOver.GetDirectUsageException();
 }
 /// <summary>
 /// Apply a "like" restriction in a QueryOver expression
 /// Note: throws an exception outside of a QueryOver expression
 /// </summary>
 public static bool IsLike(this string projection, string comparison, MatchMode matchMode, char?escapeChar)
 {
     throw QueryOver.GetDirectUsageException();
 }
Exemplo n.º 6
0
 /// <summary>
 /// Project SQL function abs()
 /// Note: throws an exception outside of a QueryOver expression
 /// </summary>
 public static double Abs(this double numericProperty)
 {
     throw QueryOver.GetDirectUsageException();
 }
Exemplo n.º 7
0
 /// <summary>
 /// Project SQL function sqrt()
 /// Note: throws an exception outside of a QueryOver expression
 /// </summary>
 public static double Sqrt(this int numericProperty)
 {
     throw QueryOver.GetDirectUsageException();
 }
Exemplo n.º 8
0
 /// <summary>
 /// Project SQL function coalesce()
 /// Note: throws an exception outside of a QueryOver expression
 /// </summary>
 public static T?Coalesce <T>(this T?objectProperty, T replaceValueIfIsNull) where T : struct
 {
     throw QueryOver.GetDirectUsageException();
 }
Exemplo n.º 9
0
 /// <summary>
 /// Project SQL function mod()
 /// Note: throws an exception outside of a QueryOver expression
 /// </summary>
 public static int Mod(this int numericProperty, int divisor)
 {
     throw QueryOver.GetDirectUsageException();
 }
Exemplo n.º 10
0
 /// <summary>
 /// Project SQL function locate()
 /// Note: throws an exception outside of a QueryOver expression
 /// </summary>
 public static int CharIndex(this string stringProperty, string theChar, int startLocation)
 {
     throw QueryOver.GetDirectUsageException();
 }
Exemplo n.º 11
0
 /// <summary>
 /// Project SQL function coalesce()
 /// Note: throws an exception outside of a QueryOver expression
 /// </summary>
 public static T Coalesce <T>(this T objectProperty, T replaceValueIfIsNull)
 {
     throw QueryOver.GetDirectUsageException();
 }
Exemplo n.º 12
0
 /// <summary>
 /// Project SQL function substring()
 /// Note: throws an exception outside of a QueryOver expression
 /// </summary>
 public static string Substr(this string stringProperty, int startIndex, int length)
 {
     throw QueryOver.GetDirectUsageException();
 }
Exemplo n.º 13
0
 /// <summary>
 /// Project SQL function bit_length()
 /// Note: throws an exception outside of a QueryOver expression
 /// </summary>
 public static int BitLength(this string stringProperty)
 {
     throw QueryOver.GetDirectUsageException();
 }
Exemplo n.º 14
0
 /// <summary>
 /// Project SQL function trim()
 /// Note: throws an exception outside of a QueryOver expression
 /// </summary>
 public static string TrimStr(this string stringProperty)
 {
     throw QueryOver.GetDirectUsageException();
 }
 public bool And(object hi)
 {
     throw QueryOver.GetDirectUsageException();
 }
Exemplo n.º 16
0
 /// <summary>
 /// Project Entity
 /// </summary>
 public static T AsEntity <T>(this T alias) where T : class
 {
     throw QueryOver.GetDirectUsageException();
 }
Exemplo n.º 17
0
 /// <summary>
 /// Project SQL function concat()
 /// Note: throws an exception outside of a QueryOver expression
 /// </summary>
 public static string Concat(params string[] strings)
 {
     throw QueryOver.GetDirectUsageException();
 }
Exemplo n.º 18
0
 /// <summary>
 /// Project SQL function abs()
 /// Note: throws an exception outside of a QueryOver expression
 /// </summary>
 public static Int64 Abs(this Int64 numericProperty)
 {
     throw QueryOver.GetDirectUsageException();
 }