vote up 2 vote down star
1

Hi

Up until now i've been using Active records in all my c# database driven applications. But now my application requires my persistance code being split from my business objects. I have read a lot of posts regarding Martin Fowler's data mapping pattern, but my knowledge of this pattern is still very limited.

Let's use the following example :

If I have 2 tables - Customer and CustomerParameters. The CustomerParameters table contains default Customer values for creating a new Customer.

I will then have to create a CustomersMapper class to handle all of the Customer persistance. My Customer and CustomersList class will then collaborate with this mapper class in order to persist customer data.

I have the following questions :

  1. How would I transfer raw data TO & FROM my Customer class to the mapper without breaking certain business rules? DTO's ?

  2. Is it acceptable to have a SaveAll and LoadAll method in my Mapper class for updating and loading multiple customers' data? If so, in case of SaveAll, how will the mapper know when to update or insert data?

  3. Will the Customer mapper class be responsible for retrieving the default values from the CustomerParameters table as well, or will it be better to create a CustomerParameters mapper ?

A O/R mapper tool is not really here. The database im using is Transactional and requires that I write my own Mapper Pattern.

Any ideas and comments will be greatly appreciated.

flag

60% accept rate
Could you expand on your meaning of "Transactional", especially contrasting it to traditionally transactional RDBMS like MS-SQL or MySQL? Otherwise I'd support Petter's answer quite unequivocally. – David Schmitt Oct 16 '08 at 13:21
Im using Btrieve(based on Indexed Sequential Access Method (ISAM)) which is not SQL based. All the O/R Mapping tools that i'm familiar with don't support Btrieve. – Russel Oct 16 '08 at 14:20

3 Answers

vote up 0 vote down

I would suggest that you take a look at an O/R-mapper tool before you try to implement the Data Mapper pattern yourself. It will save you a lot of time. A popular choice of O/R-mapper is NHibernate.

link|flag
A O/R mapper tool is not really a option for me. The database im using is Transactional and requires that I write my own Mapper Pattern. – Russel Oct 16 '08 at 8:43
vote up 2 vote down

Shaun I would answer your questions this way:

ad 1) Mapper is responsible for creating Customer object. Your Mapper object will have something like RetrieveById method (for example). It will accept an ID and somehow (that't he responsibility of the Mapper object) construct the valid Customer object. The same is true the other way. When you call Mapper.Update method with a valid Customer object, the Mapper object is responsible for making sure that all the relevant data are persisted (wherever appropriate - db, memory, file, etc.)

ad 2) As I noted above retrieve/persist are methods on Mapper object. It is its responsibility to provide such a functionality. Therefore LoadAll, SaveAll (probably passing an array of value objects) are valid Mapper methods.

ad 3) I would say yes. But you can separate various aspects of Mapper objects into separate classes (if you want to/need to): default values, rule validation, etc.

I hope it helps. I really suggest/recommend you to read Martin Fowler's book Patterns of Enterprise Application Architecture.

link|flag
vote up 0 vote down

You could check out iBATIS.NET as an alternative to NHibernate. It's also an O/R tool, but I've found it to be a little easier to use than NHibernate.

http://ibatis.apache.org/dotnetdownloads.cgi

link|flag

Your Answer

Get an OpenID
or

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