I have a parent object containing a collection of children:
class Parent {
int Id {get;set;}
....
IList<Child> Children {get;set;}
}
class Child {
int Id {get;set;}
int Value {get;set;}
...
Parent Parent {get;set;}
}
The mapping whith FluentNHibernate is
ParentMap:
Id(x => x.Id, "id").GeneratedBy.Assigned();
...
HasMany<Child>(x => x.Children).AsBag().KeyColumn("parentid").Inverse()
.Fetch.Join().Cascade.AllDeleteOrphan();
ChildMap:
Id(x => x.Id).GeneratedBy.Assigned();
....
Map(x => x.Value, "value");
References<Parent>(x => x.Parent, "parentid").NotFound.Ignore();
I have to map whith NHibernate a SQL query like this:
select p.id, sum(c.value)
from parent p, child c
where p.id = c.parentid
Is it possible to translate this query whith QueryOver?
Thanks