I have 3 entities
I'd like to flatten the tblCondition and BusinessAreas into one object. What I want is
Category.ID, Category.Category, BusinessArea.ID, BusinessArea AreaName
.
I know this can be done by creating an Anonymous type with Lambda but I'm relatively unskilled with Lampda or LINQ.
Forgot to mention that I need to get to the two tables through the first one.
My original call looks like this.
myConditionTemplate = EE.ConditionTemplates.Where(c => c.TemplateCode == TextBoxSearchConditionCode.Text).FirstOrDefault();