开发者

CreateSqlQuery on entity with formula property

开发者 https://www.devze.com 2023-01-04 00:13 出处:网络
When I try to query a table using CreateSqlQueryand convert it to an entity containing formula property, I get the below Adoexception.

When I try to query a table using CreateSqlQuery and convert it to an entity containing formula property, I get the below Adoexception.

"Value cannot be null. Parameter name: fieldName"

In the first place is it possible to use开发者_开发技巧 the createsqlquery on entity that has formula mapping ?


It's possible to use CreateSQLQuery with formulas.

Here's a proof of concept. Mapping (class is not hard to guess):

<class name="Foo">
  <id name="Id">
    <generator class="hilo"/>
  </id>
  <property name="Data"/>
  <property name="DataX2" formula="Data * 2"/>
</class>

And here's a query:

var foos = session.CreateSQLQuery(
                   @"
                   select Id          as {foo.Id},
                          Data        as {foo.Data},
                          Data + Data as {foo.Data2}
                   from   Foo
                   ")
                  .AddEntity("foo", typeof(Foo))
                  .List<Foo>();

If you look closely, you'll see that I'm using a different formula than the one declared in the mapping. NHibernate allows anything as long as all the properties are in the query.

I suggest that you read 17.1.2. Entity queries and the following points.


After much searching, I found the following

https://issues.jboss.org/browse/JBPAPP-6571

Seems this is a real bug in hibernate that they've decided not to fix. There are some workarounds. I think the best is to use aliases for property names. Aliases must be used as documented here:

http://nhibernate.info/doc/nh/en/index.html#querysql-aliasreferences

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号