I have project based on Prism, it contains 3 modules : DataAccessLayer (DAL), DataPresenterModule, CommonModule. My DAL contains EntityFrameWork 4.1 item and I have some issue: I want move anonymous types from my DAL to DataPresenterModule. I wrote the next query:
public IQueryable GetCategories()
{
try
{
return DB_Context.MapsMainCategoriesDsc.Select(p => new
{
MainCategory = new { p.Category, p.MainCatID },
SubCategries = new { p.MapsSubCategoriesDsc }
});
}
catch
{
//some other operations
}
}
This query returns anonymous type which contain list of nested collections - MainCategory with 2 properties and SubCategory Collection which contains all SubCategories under this MainCategory.
In my DAL I can use this object (intellisense works) but if I am passing this object to my DataPresenterModule I cannot use it - The object is unknown for this module.
How can I create "Custom Objects" and move them to other modules in my system.