I recently realized that I'm creating my n-tier applications using the Anemic Model, Which many would argue is not the proper OO way of doing things (and that it is actually an anti pattern).
So I'm now trying to apply the Domain-Driven Design instead.
I'm used to using the objectdatasource to bind controls, such as the grid view, to my business objects. I'm confused as to how i would use the objectdatasource with the domain model. does the objectdatasource require an anemic model?
I was considering removing all objectdatasources, I find it to be a burden at times anyway (especially when it comes to debugging code and exception handling), but I'd like to know what the 'proper' way of doing things is.