Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
2  
Just create new classes for each anonymous type. – jrummell Jan 14 at 19:54

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.