Translate query to NHibernate
- by Rob Walker
I am trying to learn NHibernate, and am having difficulty translating a SQL query into one using the criteria API.
The data model has tables: Part (Id, Name, ...), Order (Id, PartId, Qty), Shipment (Id, PartId, Qty)
For all the parts I want to find the total quantity ordered and the total quantity shipped. In SQL I have:
select…