Supposing I have the following hql: select cast(coalesce(sum(c.Valoare), 0) as decimal) from Comision as c
I\'m working on a CQRS-style system with commands processed with NSericeBus and queries provided through a read-only OData feed.
i am using latest nhibernate 3, my query: iqt = rps.Terminals.GetQuery().Where(x => x.NetProtocol.Id == 4);
We are trying to upgrade to NHibernate 3.0 and now i am having problem with the following Linq query. It returns \"Only one expression can be specified in the select list when the subquery is not intr
I\'m trying to do the following with NHibernate 3.0\'s LINQ interface. I want to query for an object (using some Where clause), and load some children and grandchildren. Cu开发者_C百科rrently I\'m doi
I\'m new to nhibernate 3.0: I got 3 objects (not code just description) class a{ prop b; } class b{ prop c
I\'m using LINQ to NHibernate, and have a model that looks something like this (simplified): public class Person {
I have a legacy app with a nullable DateTime column in the database -- a NULL value is used to represent +Infinity. My app uses a fairly standard NHibernate + DDD setup, including Fluent-NHibernate an
I want to do paging开发者_运维百科 with NHibernate when writing a Linq query. It\'s easy to do something like this:
I have a security schema where certain entities are secured by having a SecureEntity reference. A SecureEntity has a collection of RolePermissions, each of which has an Allow flag and a Priority. The