我有这个班级
public class Bill : EntityBase
{
public virtual decimal Value { get; set; }
}
在下面的映射中,我使用Formula()
public class MapBill : ClassMap<Bill>
{
public MapBill()
{
Table("cabrec");
Map(m => m.Value)
.Formula(
"(select t.VALOR_IND from ret_vlorind(1,1,cast('02/06/1993' as Date)) as t)")
.CustomType(typeof(decimal));
}
}
但它在执行时返回错误:
{"Dynamic SQL Error\r\nSQL error code = -104\r\nToken unknown - line 1, column 279\r\n."}
有没有办法在流利的nhibernate中使用程序?
答案 0 :(得分:5)
公式映射表达式稍后由NHibernate转换为类似
的语句// source in code
(select t.VALOR_IND from ret_vlorind(1,1,cast('02/06/1993' as Date)) as t)
// sent SQL statement
(select t.VALOR_IND from ret_vlorind(1,1,cast('02/06/1993' as Date)) as this_.t)
this _。前缀是在NHibernate认为应该正确使用MAIN表别名的地方注入的。
这不是我们想要的......我找到的唯一方法是介绍我们自己的Dialect(我正在使用SQL Server)并定义一些&#34; CONSTANTS&#34;被视为 - 我不需要前缀
public class CustomMsSql2012Dialect : MsSql2012Dialect
{
public CustomMsSql2012Dialect()
{
RegisterKeyword("my_table_alias");
...
这必须用于配置
<property name="dialect">MyNamespace.CustomMsSql2012Dialect,MyLib</property>
最后,我们必须调整我们的陈述
// wrong t is not known keyword.. would be prefixed
(select t.VALOR_IND from ret_vlorind(1,1,cast('02/06/1993' as Date)) as t)
// into this
(select my_table_alias.VALOR_IND from ret_vlorind(1,1,cast('02/06/1993' as Date)) as my_table_alias)
注意:关键字,我的经验,必须只是小写