Take this query as an example:
select * from publisher
where id not in (
select publisher_id from record
where year = 2008 and month = 4
)
Can anyone help me on how I could build and run this query using NHibernate? Assume that I have 2 classes: Publisher
and Record
.
Thanks