Hi,
I am using Fluent NHibernate,
I have writen following code to select Customer Name and CustProdId.
when i execute code, i got error, "Method Join is not implimented."
How to write inner join for this query?
var data = (from cp in session.Linq<CustomerProduct>()
join cu in session.Linq<Customer>()
on cp.customerId equals cu.customerID
select new
{
cp.CUSTPRODID,
cu.CUSTOMERNAME
}).Distinct();