what’s the difference between service layer and domain model layer

The Domain Model contains information and functionality related to what it means to be a User. It should map conceptually onto something that exists physically in the real world or a clearly defined concept in the problem space. The Service contains information and functionality related to performing atomic units of work. It should map conceptually … Read more

What are some good open source c# examples of quality domain models [closed]

I liked lot the architecture of oxite cms at http://www.codeplex.com/oxite. I learned lot from that project. I use nhibernate for data access instead of linq2sql and it works good for me. Of course its not a large scale project but its a perfect start. CSLA does not follow the DDD paradigm. The above book “.NET … Read more