vote up 7 vote down star
2

I see two main "schools of thoughts" when it comes to creating larger-scale enterprise-wide apps on .NET (Winforms, WPF, ASP.NET).

Some folks use the "repository pattern" which uses a repository that knows how to fetch, insert, update and delete objects. Those objects are rather "dumb" in that they don't necessarily contain a whole lot of logic - e.g. they're more or less data-transfer objects.

The other camp uses what I call "smart" business objects that know how to load themselves, and they typically have a Save(), possibly Update() or even Delete() method. Here you really don't need any repository - the objects themselves know how to load and save themselves.

Big question is: which do you use or prefer? And why?

Do you use the same approach in all your apps, or do you have any particular criteria when to choose one approach over the other? If so - what are those criteria?

I'm not trying to start a flame-war here - just trying to find out what everyone thinks about this and what your opinion is, and why you use one (or both) patterns over the other.

Thanks for any constructive input!

flag
You may want to make this a community wiki. – Marc W May 20 at 16:28

2 Answers

vote up 10 vote down check

I use the repository pattern because of the Single Responsibility Principle. I don't want each individual object to have to know how to save, update, delete itself, when this can be handled by one single generic repository

link|flag
In that case, one generic repository then needs to know how to load all types of objects. – Peter J May 20 at 16:26
and because it's generic it can handle loading all types of objects. Also makes unit testing simpler as well – John Polling May 20 at 16:29
vote up 4 vote down

The repository pattern doesn't necessary lead to dumb objects. If the objects have no logic outside Save/Update, you're probably doing too much outside the object.

Idealy, you should never use properties to get data from your object, compute things, and put data back in the object. This is a break of encapsulation.

So the objects should not be anemic except if you use simple DTO objects with CRUD operations.

Then separing the persistence concerns from your object concerns is a good way to have Single Responsibility.

link|flag
No, sure - my busobj aren't totally "dumb" - I just meant "dumb" in that they don't know about how to load and save themselves - they do have other functionality, obviuosly :-) – marc_s May 20 at 16:59

Your Answer

Get an OpenID
or

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