Tagged Questions
Business Objects is a data warehousing suite from SAP
26
votes
11answers
2k 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 ...
26
votes
4answers
2k 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 ...
21
votes
21answers
7k 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 ...
15
votes
7answers
511 views
How to Design a generic business entity and still be OO?
I am working on a packaged product that is supposed to cater to multiple clients with varying requirements (to a certain degree) and as such should be built in a manner to be flexible enough to be ...
15
votes
3answers
10k views
Force validation on bound controls in WPF
I have a WPF dialog with a couple of textboxes on it.
Textboxes are bound to my business object and have WPF validation rules attached.
The problem is that user can perfectly click 'OK' button and ...
12
votes
2answers
247 views
Standard business logic data classes for .NET
There are a lot of "primitive" boiler plate types of data classes that could appear in many different programs.
However, I have never seen a class or library set that recognizes the need to combine ...
11
votes
4answers
2k 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 ...
10
votes
6answers
4k 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 ...
8
votes
5answers
2k views
Entity Framework And Business Objects
I have never used the entity framework before and i would like to try some personal projects implementing it to get my feet wet.
I see that entities can be exposed to the presentation layer.
But i ...
8
votes
3answers
1k 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, ...
6
votes
2answers
520 views
Business Logic Classes Naming
I have a business layer that has some business objects/POCOs/entities/whatever. I also have some repositories for the data access. Up until this point, I've been accessing the repositories directly ...
6
votes
4answers
1k views
Using Entity Framework generated classes in Business Logic Layer
I have a ASP.net (C#) project that is using a three layer architecture. I started to use Entity Framework in my DAL and the question is to what extent classes generated by Entity Framework can be ...
6
votes
8answers
560 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 ...
6
votes
2answers
1k 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 ...
6
votes
7answers
4k 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 ...
6
votes
3answers
4k 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 ...
5
votes
3answers
105 views
PHP OO - how to initialize your business objects?
By business model, or business objects, I mean plain old objects like a "User" with all their properties name, adress, ...; in addition to all the user properties let's say each user would have an ...
5
votes
2answers
168 views
Domain object changes - refresh on cached lists needed
Problem
We have a complex domain model. To avoid performance issues, most of the list (generated from domain objects) are cached. Everything works well until the first domain object changes. All ...
5
votes
3answers
125 views
Overly accessible and incredibly resource hungry relationships between business objects. How can I fix this?
Firstly, This might seem like a long question. I don't think it is... The code is just an overview of what I'm currently doing. It doesn't feel right, so I am looking for constructive criticism and ...
5
votes
7answers
2k 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
4answers
105 views
Do inheritance right
I have class:
internal class Stage
{
public long StageId { get; set; }
public string StageName { get; set; }
public int? Order { get; set; }
public Stage()
{
Order = 0;
...
4
votes
4answers
165 views
Business Object “Warnings”: Good Examples/Ideas?
I'm trying to come up with a reusable warning piece for the business objects in a project I'm working on. Before saving one of our business objects, sometimes we need to warn the user of what the ...
4
votes
2answers
387 views
Mark a Business Object as dirty?
I have checkbox list bind to a Business Object Collection of List<>. When an item is checked in my checkbox list, I want to mark the selected business object as dirty.
How can I fetch the current ...
4
votes
4answers
220 views
Are these synonymous, a subset of each other or completely different?
Are the notions mentionned in the question title synonymous to a certain degree? Where do the main differences lie (context, structure, ...) and can one be considered a subset of another? Here's some ...
4
votes
2answers
291 views
Succinct But Complete Example of WPF App?
Is there a succinct but complete example project or tutorial that brings together the pieces of the Microsoft stack for a complete application?
WPF
MVVM
Business Objects
EF
Database
I find plenty ...
4
votes
5answers
276 views
What defines a Business Object
From the title, I believe it to be a straight forward question, but looking into the "world of Business Objects" I can't seem to put my finger on anything solid as to what a Business Object should be. ...
4
votes
4answers
178 views
What functionality to build into business objects?
What functionality do you think should be built into a persistable business object at bare minimum?
For example:
validation
a way to compare to another object of the same type
undo capability (the ...
4
votes
3answers
428 views
C# business objects and collections
I'm having difficulty wrapping my head around business objects or more specifically, business object collections.
Here's a quick example of what I'm trying to do.
If I have an Incident Object, this ...
4
votes
4answers
657 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 ...
4
votes
5answers
1k views
Loading Business Object Hierarchy with One Database Call
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 accomplish ...
4
votes
6answers
378 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 ...
4
votes
6answers
1k 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
2answers
134 views
Is this a Domain Object Class?
If Domain Object = Business Object, then I was expecting to see things like findTaxValues(); or searchBooksByAuthor(); methods, instead, I see generally getters and setters.
1)
Is this a Domain ...
3
votes
2answers
332 views
Why should I use view models?
I'm new to developing web apps using ASP.NET MVC. In fact, I'm rather new to developing web apps, regardless of technology.
Currently, I'm working on a project just to get to know the ASP.NET MVC ...
3
votes
2answers
268 views
BusinessObjects XI COM Support
I have an application that uses the Crystal Report COM SDK to create and manipulate reports against a Crystal Enterprise 10 repository. I would like to upgrade from Crystal Enterprise 10 to ...
3
votes
3answers
2k views
Separation of concerns - DAO, DTO, and BO
So I have a DAO, DTO, and BO. The following code is the result:
// Instantiate a new user repository.
UserRepository rep = new UserRepository();
// Retrieve user by ID (returns DTO) and convert to ...
3
votes
2answers
140 views
Object Construction at Client or Business Layer?
Something I've noticed from looking at multiple .NET starter kits is that business object construction is often handled at the client level. Then, the business object is passed to the business layer ...
3
votes
4answers
233 views
Save Me on a Business Object
I've commonly seen examples like this on business objects:
public void Save()
{
if(this.id > 0)
{
ThingyRepository.UpdateThingy(this);
}
else
{
int id ...
2
votes
1answer
89 views
Is this a correct approach to design N-layers?
I am planning to create different layers, so in my Visual Studio Project, I will have:
BusinessLayer:
Contains Business objects (entities)
i.e User, Employee, Products etc
DataAccessLayer:
Entity ...
2
votes
2answers
43 views
shall I do calculations in the Business Layer?
Right now I am trying to apply the n-tier architecture to our web application, and I get the basic concept of every layer's functionality and relationships between these layers.
So the question is:
In ...
2
votes
1answer
111 views
Using Generics with a Parent/Child entities
I have a entity A and a entity B. B Inherits from A and is a superset of A. I have a method on the .ascx that currently loads control properties and binds the data from the A entity. I would like to ...
2
votes
4answers
87 views
Tips and guideline for designing custom class
A method on my asp.net page accepts 10 parameters[yeah that's huge]. Method inserts the data into DB and returns dataset dumped with all records. I wanted to optimize(or whatever it is actually ...
2
votes
3answers
62 views
Business Entity - should lists be exposed only as ReadOnlyCollections?
In trying to centralize how items are added, or removed from my business entity classes, I have moved to the model where all lists are only exposed as ReadOnlyCollections and I provide Add and Remove ...
2
votes
2answers
365 views
How to easly convert linq result to Buisness Object Collection <T>
I have Business Object Collection
I'd like to filter rows using linq, but noticed it returns IEnumerable what can not be cast then to my BOC
Eg I cannot do that
BOC <Client> bocCLients = ...
2
votes
1answer
2k views
show only in the first row in crystal reports details section
i have a crystal report and there is a field in details section which currently showing for each row. what's the way to set this field to show only once on the very first row?
2
votes
1answer
170 views
Using business object in presentation layer
In a 3-Layer application, from better design/architecture point of view, can/should i instantiate a business class (which resides in Business Layer) in Presentation Layer? I mean, is that a bad ...
2
votes
3answers
241 views
How to define difference between business model and a data model?
I see the term often used as if there is a concrete distinction between the two when discussing MVC for OO languages. From what I get from context it is that business models perform an action to ...
2
votes
3answers
365 views
How can I efficiently and easily import/export large business data in .NET?
What would be the best data format (XML, Database, etc.) for large business data when we want to efficiently and easily load all of it (import) into business objects in .NET ?
I want to load all the ...
2
votes
2answers
329 views
Business Layer structure, how do you build yours?
I am a big fan of NTiers for my development choices, of course it doesnt fit every scenario.
I am currently working on a new project and I am trying to have a play with the way I normally work, and ...
2
votes
1answer
279 views
Creating my own SAP dashboard/reporting tool for mobile
Is it possible to create my own mobile dashboard, reporting tool for SAP? I understand the standard components to be used for this purpose are:
Business Objects Enterprise Server XI - this provides ...