vote up 0 vote down star

is there any tool or utility(mapper assembly) to construct business objects from entities(which are obtained from DB using linq -> sql , entity framework or whatever..)

in the absence of one , can anyone suggest the best way that can be accomplished rather can copy pasting the properties(what i'm doing right now) from the entity classes.?

thanks.

vijay

flag

45% accept rate
Besides LINQ, what else do you need? – Craig Stuntz Aug 27 at 12:55
linq -> sql gives me data objects. how to map them to customized bussiness object.? – vijaysylvester Aug 27 at 13:45

3 Answers

vote up 3 vote down check

You map to business objects by projecting. This works even if your POCO business objects have a different shape than your entities.

var q = from dataObject in Context.DataObjects
        select new BusinessObject
        {
            Name = dataObject.Name,
            RelatedObjectName = dataObject.RelatedObject.Name, // works even if RelatedObject is null
            DirectChildren = from c in dataObject.Children
                             select new ChildBusinessObject
                             {
                                 Name = c.Name
                                 // etc.
                             }
            GrandChildren = from c in dataObject.Children
                            from gc in c.Children
                            select new ChildBusinessObject
                            {
                                Name = c.Name
                                // etc.
                            },
            // etc.
        };
link|flag
that was great craig . can u suggest any tools.? to automate the same. its really tedious manually doing this for each entity. – vijaysylvester Aug 27 at 14:31
I find LINQpad incredibly valuable for this, and it supports LINQ to Entities. It doesn't do it automatically, though. VS IntelliSense is generally enough for me, though; you end up typing very little of the actual query. I wouldn't want to do it entirely automatically because performance can be substantially better if you only select the related objects that you actually need for your business methods, rather than every property of the entity. – Craig Stuntz Aug 27 at 14:35
vote up 3 vote down

Automapper

link|flag
Automapper FTW for this. – mxmissile Aug 27 at 14:40
AutoMapper won't load related entities in a single query. LINQ will. – Craig Stuntz Aug 27 at 15:45
vote up 0 vote down

This is not directly answering your questions - but for less complicated projects I use this product http://www.devexpress.com/Products/NET/ORM/ (.NET Object-Relational Mapper Tool from DevExpress)

link|flag
What u have said is ORM tool . to get the data objects. i now need the business objects , to be constructed from data objects. – vijaysylvester Aug 27 at 15:50

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.