I have a big fight with linq I have a webpage and a zonecontent entity
in my webpage repository i have a method called: GetPageByTitle
here i want to select the page by title and return it. i try to do this like this:
public WebPage GetPageByTitle(string title,string cultureName)
{
try
{
var entity =
(from p in GetAll().Include(x => x.Site).Include(x => x.Menu)
from c in p.ZoneContents
where c.Language.CultureName == cultureName && c.PageTitle == title
select new
{
page = p,
zone = c
}).SingleOrDefault();
}
catch (InvalidOperationException)
{
throw new ArgumentException("There are no visiblepages with the provided title and language");
}
catch (Exception ex)
{
throw new ArgumentException(ex.Message);
}
}
now i have a type{Webpage, ZoneContent} and cannot be returned into Webpage How can i go a step further to combine them into Webpage?
Anyone an idea??
Thanks a lot