vote up 0 vote down star
1

I have been utilizing the Fowler patterns for domain models with a Data Mapper and have run into some confusion on how to implement the creation portion of CRUD. I can't utilize existing ORM technologies as the underlying data sources are custom systems. The area that’s troubling me is how to call the underling ORM when I need to create a new object. My Domain Layer has no visibility of my ORM, with the exception of my finders.

I’m not sure if I’m on the right track but the following are the only options I can see:

  1. Handle the create functions the same way the Fowler finders are done. Create an interface in the Domain Model layer for the creation methods on the ORM classes. Then have the Domain Model call a DI container and instantiate an instance of the ORM class based on the interface.

  2. During hydration of object A in the ORM attach a delegate pointing to the creation method on the ORM for object B. Requiring domain object A is hydrated you could call the delegate on object A which would invoke the create method on object B's mapper.

  3. ???

I must be missing something, as this can’t be that complex. Any help would be much appreciated.

Thanks

flag

60% accept rate

2 Answers

vote up 0 vote down

How about looking at how ORMs solve this problem? In languages that support dynamic creation of objects "mapping" of how the data relates to domain objects is provided as separate configuration. The classes are created through reflection or a bytecode library. I guess it depends on how general you would like to make the Data Mapper. From what I can gather from the original pattern data-mappers can exist per domain object.

Perhaps you are attempting a general solution. Otherwise it may be about configuring a general-mapper with information about how to build up the objects using reflection.

That is to day the ORM layer can deal with Strings that represent the CanonicalClass name + a list of methods to expect on those classes.

Passing an object to be persisted the Object can be inspected using this information. Creating an object can be done using reflection using the data from the database. Some ORM solution may not create the object tree in a deep way but instead create proxies for lazy fetching.

link|flag
vote up 0 vote down

If your problem is just mapping from Type A to Type B you might want to consider AutoMapper.

link|flag

Your Answer

Get an OpenID
or

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