I want to combine two objects in my MVC application to process data through a LINQ connection.
For this, I am trying to write a query, for example,
from enumeration in db.Enumerations join cust in db.Customers on ( enumeration.Value equals cust.lkpStatus && enumeration.EnumerationTypeID.Contains('Cust')
But I get a problem with this request. So please give me some tips on this.
source share