Tagged Questions

17
votes
11answers
800 views

What are some good open source c# examples of quality domain models.

I'm a pretty young developer, and still in the emulation phase of my career. I have read a lot about some topics like concurrency, and using unit of work to allow your business layer to control …
7
votes
2answers
410 views

Repository pattern vs. “smart” business objects

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 …
7
votes
21answers
2k views

Business Objects, Validation And Exceptions

I’ve been reading a few questions and answers regarding exceptions and their use. Seems to be a strong opinion that exceptions should be raised only for exception, unhandled cases. So that lead me to …
6
votes
3answers
511 views

Techniques for dealing with anemic domain model

I've read some of the questions regarding anemic domain models and separation of concerns. What are the best techniques for performing/attaching domain logic on anemic domain objects? At my job, we …
5
votes
6answers
2k views

Architecture for a business objects / database access layer

For various reasons, we are writing a new business objects/data storage library. One of the requirements of this layer is to separate the logic of the business rules, and the actual data storage …
4
votes
2answers
292 views

Validation and in Service Layer or Business Objects?

Martin Fowler suggests using a service layer as a boundary between the domain model and and "Data Loaders". However, Rockford Lhotka suggests building validation into the business object itself and …
4
votes
7answers
573 views

Any suggestions for separating data access, business logic and GUI in Delphi

I want to separate data layer from business logic and business logic from GUI. Diving into web I stumbled upon a few resources but still unable to make my mind clear. Some people talk about patterns …
4
votes
6answers
705 views

Business Object DAL design

When designing business objects I have tried several different methods of writing the data access layer. Some have worked out better than others but I have always felt there must be a "better" way. …
3
votes
5answers
82 views

Business Objects - Containers or functional?

Where I work, we've gone back and forth on this subject a number of times and are looking for a sanity check. Here's the question: Should Business Objects be data containers (more like DTOs) or …
3
votes
5answers
410 views

UI, Business Logic Layer, Data Layer and where to put web services

We are developing a web application. We want to possibly reuse the work we do here for a different application that will use the same database, and use the same business rules for reading and writing …
3
votes
3answers
427 views

Are there any worthy CSLA alternatives available?

My company is interested in porting a large business application to .NET. We plan on developing a desktop version and a silverlight version. I mostly researched the CSLA framework (got rocky's book, …
3
votes
4answers
292 views

How Can I Keep The ‘GUI’ Layer Out Of The ‘Business Logic’ Layer?

I currently have a project that is a 'Business Object' project, and our goal is to have a clear separation between the GUI and the Business Objects. However, my project has a reference to …
3
votes
5answers
466 views

Loading Business Object Hierarchy with One Database Call

Hi, I would like to know what the best practice for populating a business object hierarchy (parent/child/grandchild) structure is from a single database call. I can think of a couple ways to …
3
votes
6answers
330 views

Should I have one class for every database I use?

First, let me explain what I am doing. I need to take an order, which is split up into different databases, and print out this very large order. What I need from the orders is about 100 or so columns …
3
votes
3answers
748 views

How to track changes to business objects?

I get the concept of creating a business object or entity to represent something like a Person. I can then serialize the Person using a DTO and send it down to the client. If the client changes the …

1 2 3 4 5 next
15 30 50 per page