Hi Guys,
I am doing MVC Coding and using LLBLGEN Pro 3.5 version with it. I am using repository pattern and kind of need some guidance:
I have this code which returns me an IEnumerable(of T)
_repositoryExtMailCost.FindByCondition(Function(x) x.EndDate Is Nothing Or x.EndDate >= DateTime.Now)
The result contains a foreign key that i need to use to filter the results on the other table like this
_repositoryExtMailItem.FindByCondition(Function(x) x.ID ----)
this findbycondition is a custom function and takes a func(of t, boolean). now i want to use the result (foreign key) returned in the first statement and then apply that in the last statement but i am not sure how can i do that? Can you guys help?
I know of other way to do this. Using a SQL View and do the join there and then just pass the values to the view and display the results but i would prefer going the above way if possible at all? Can anyone please help?
Thanks Guys.