queryover and (x like 'a' or y like 'a')
问题 Hi Is there any elegant way of combining 'like' and 'or' when i'm using queryover API? for 'like' there is something like: query.WhereRestrictionOn(x=>x.Code).IsLike(codePart) for 'or' i can do something like: query.Where( x=>x.Code == codePart || x.Description== codePart) but how can I create a query like this: select * from n where code like '%abc%' or description like '%abc%' 回答1: query.Where(Restrictions.On<Type>(x => x.Code).IsLike(codePart) || Restrictions.On<Type>(x => x.Description)