@@ -801,7 +801,7 @@ public static LambdaRestrictionBuilder On(Expression<Func<object>> expression)
801
801
/// <summary>
802
802
/// Apply a constraint expressed in SQL, with the given SQL parameters
803
803
/// The string {alias} will be replaced by the alias of the root entity.
804
- /// Criteria aliases can also be used: "{a}.Value + {bc}.Value". Such aliases need to be registered via call to AddCriteriaAliases ("a", "bc")
804
+ /// Criteria aliases can also be used: "{a}.Value + {bc}.Value". Such aliases need to be registered via call to AddAliases ("a", "bc")
805
805
/// </summary>
806
806
/// <param name="sql"></param>
807
807
/// <param name="values"></param>
@@ -815,7 +815,7 @@ public static SQLCriterion Sql(SqlString sql, object[] values, IType[] types)
815
815
/// <summary>
816
816
/// Apply a constraint expressed in SQL, with the given SQL parameter
817
817
/// The string {alias} will be replaced by the alias of the root entity.
818
- /// Criteria aliases can also be used: "{a}.Value + {bc}.Value". Such aliases need to be registered via call to AddCriteriaAliases ("a", "bc")
818
+ /// Criteria aliases can also be used: "{a}.Value + {bc}.Value". Such aliases need to be registered via call to AddAliases ("a", "bc")
819
819
/// </summary>
820
820
/// <param name="sql"></param>
821
821
/// <param name="value"></param>
@@ -829,7 +829,7 @@ public static SQLCriterion Sql(SqlString sql, object value, IType type)
829
829
/// <summary>
830
830
/// Apply a constraint expressed in SQL, with the given SQL parameter
831
831
/// The string {alias} will be replaced by the alias of the root entity.
832
- /// Criteria aliases can also be used: "{a}.Value + {bc}.Value". Such aliases need to be registered via call to AddCriteriaAliases ("a", "bc")
832
+ /// Criteria aliases can also be used: "{a}.Value + {bc}.Value". Such aliases need to be registered via call to AddAliases ("a", "bc")
833
833
/// </summary>
834
834
public static SQLCriterion Sql ( string sql , object value , IType type )
835
835
{
@@ -839,7 +839,7 @@ public static SQLCriterion Sql(string sql, object value, IType type)
839
839
/// <summary>
840
840
/// Apply a constraint expressed in SQL, with the given SQL parameter
841
841
/// The string {alias} will be replaced by the alias of the root entity.
842
- /// Criteria aliases can also be used: "{a}.Value + {bc}.Value". Such aliases need to be registered via call to AddCriteriaAliases ("a", "bc")
842
+ /// Criteria aliases can also be used: "{a}.Value + {bc}.Value". Such aliases need to be registered via call to AddAliases ("a", "bc")
843
843
/// </summary>
844
844
public static SQLCriterion Sql ( string sql , object [ ] values , IType [ ] types )
845
845
{
@@ -849,7 +849,7 @@ public static SQLCriterion Sql(string sql, object[] values, IType[] types)
849
849
/// <summary>
850
850
/// Apply a constraint expressed in SQL
851
851
/// The string {alias} will be replaced by the alias of the root entity.
852
- /// Criteria aliases can also be used: "{a}.Value + {bc}.Value". Such aliases need to be registered via call to AddCriteriaAliases ("a", "bc")
852
+ /// Criteria aliases can also be used: "{a}.Value + {bc}.Value". Such aliases need to be registered via call to AddAliases ("a", "bc")
853
853
/// </summary>
854
854
/// <param name="sql"></param>
855
855
/// <returns></returns>
@@ -861,7 +861,7 @@ public static SQLCriterion Sql(SqlString sql)
861
861
/// <summary>
862
862
/// Apply a constraint expressed in SQL
863
863
/// The string {alias} will be replaced by the alias of the root entity.
864
- /// Criteria aliases can also be used: "{a}.Value + {bc}.Value". Such aliases need to be registered via call to AddCriteriaAliases ("a", "bc")
864
+ /// Criteria aliases can also be used: "{a}.Value + {bc}.Value". Such aliases need to be registered via call to AddAliases ("a", "bc")
865
865
/// </summary>
866
866
/// <param name="sql"></param>
867
867
/// <returns></returns>
0 commit comments