的方式,通過QueryOver
基礎設施的支持將是使用明確MatchMode
:
sesion
.QueryOver<Company>()
.Where
(
Restrictions.On<Company>(x => x.CompanyName).IsLike(keyword, MatchMode.Start) ||
Restrictions.On<Company>(x => x.Id ).IsLike(keyword, MatchMode.Start)
)
.List<Company>();
但有極少數代碼(在Restrictions.On
風格的自定義擴展)我們甚至可以做到這一點語法:
...
.Where
(
Restrict.On<Contact>(x => x.CompanyName).StartsWith(keyword) ||
Restrict.On<Contact>(x => x.Id ).StartsWith(keyword)
)
而且Restrict
的定義:
public static class Restrict
{
public static StringRestrictionBuilder<T> On<T>(Expression<Func<T, object>> expr)
{
return new StringRestrictionBuilder<T>(expr);
}
public class StringRestrictionBuilder<T>
{
readonly Expression<Func<T, object>> _expression;
public StringRestrictionBuilder(Expression<Func<T, object>> expression)
{
_expression = expression;
}
public AbstractCriterion StartsWith(string value)
{
return Restrictions.On(_expression).IsLike(value, MatchMode.Start);
}
public AbstractCriterion Contains(string value)
{
return Restrictions.On(_expression).IsLike(value, MatchMode.Anywhere);
}
public AbstractCriterion EndsWith(string value)
{
return Restrictions.On(_expression).IsLike(value, MatchMode.End);
}
}
}
你的意思是除了刪除IsLike限制中的前導%嗎? – jbl