create table Table1(attributeName varchar(100), attributevalue varchar(100), attributeLookupMethod varchar(50))
create table Table2(attributeName varchar(100), CSVAllowableValues varchar(1000)
Based on the above 2 tables, using nHibernate, is it possible to only retrieve details from Table2 when Table1.attributeLookupMethod = 'Lookup'?
Thanks.