我想得到结果:
select * from Cate where LEN(code)=2
我的代码:
var filter1 = Restrictions.Eq(
Projections.SqlFunction("LEN", NHibernateUtil.Int32,
Projections.Property("code")), 2);
var query =
repository.Session.QueryOver<Cate>().Where(filter1).List();
Assert.IsTrue(query.Count > 0);
然而,出现了错误:
NHibernate.HibernateException:当前方言 NHibernate.Dialect.MsSql2008Dialect不支持该功能:LEN
如何在Nhibernate中使用Len函数的SQLServer2008?
答案 0 :(得分:5)
使用length
代替len
。这就是它在方言中的注册方式。
答案 1 :(得分:-2)
您应该在Configuration类
中注册您的函数config.AddSqlFunction("len", new StandardSafeSQLFunction("len", NHibernateUtil.Int32, 1));
或创建自定义方言
public class MyDialect : MsSql2008Dialect
{
public MyDialect()
{
RegisterFunction("len", new StandardSafeSQLFunction("len", NHibernateUtil.Int32, 1));
}
}