Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
3answers
3k views

POCO's, DTO's, DLL's and Anaemic Domain Models

I was looking at the differences between POCO and DTO (It appears that POCO's are dto's with behaviour (methods?))and came across this article by Martin Fowler on the anaemic domain model. Through ...
8
votes
7answers
958 views

Do you allow the Web Tier to access the DAL directly?

I'm interested in perceived "best practice", tempered with a little dose of reality here. In a web application, do you allow your web tier to directly access the DAL, or should it go through a BLL ...
8
votes
7answers
3k views

What to return from the DAL to BLL

I currently have an application which consists of: User Interface (web page) BLL (Manager & Domain Objects) DAL (DataAccess class for each of my Domain Objects). I use the following in the UI to ...
8
votes
2answers
3k views

How does the MVC pattern differ, if at all, from the DAL / BLL design pattern?

I'm making my way through the early Data Access Tutorials on Microsoft's ASP.NET website and it occurred to me that this all seems awfully similar to what I have read about separating your logic and ...
7
votes
6answers
1k views

What is your favorite Business Logic Layer (BLL) development toolkit for .NET? Are there any at all?

What is your favorite Business Logic Layer (BLL) development toolkit? Are there any at all? BLL toolkit is a set of classes (controls, VS.NET add-ins) handling typical business logic scenarios. E.g. ...
7
votes
2answers
3k views

DAL and BLL in .NET

There is this DAL/BLL design suggestion by Microsoft for ASP.NET (2.0) apps. I know some of the alternatives and I've read related questions here on SO. However I wonder if this proposed solution is ...
6
votes
4answers
1k views

.net, C# Interface between Business Logic and DAL

I'm working on a small application from scratch and using it to try to teach myself architecture and design concepts. It's a .NET 3.5, WPF application, and I'm using Sql Compact Edition as my data ...
4
votes
3answers
79 views

marking BLL classes as static or?

I already have a layered data access design which works well. But i dont know if it is the most suitable implementation or not. i simply want to know that BLL classes or methots should be static or ...
4
votes
2answers
161 views

Working with MVC 2.0 and the Model in a separate assembly

I'm new to MVC and even though there is a lot (and I do mean a lot) of information out there that is very useful - it's proofing very difficult to get a clear understanding on how to achieve my exact ...
4
votes
9answers
2k views

Manual DAL & BLL vs. ORM

Which approach is better: 1) to use a third-party ORM system or 2) manually write DAL and BLL code to work with the database? 1) In one of our projects, we decided using the DevExpress XPO ORM ...
3
votes
2answers
905 views

How to use bll, dal and model?

In my company I must use a Bll, Dal and model layer for creating applications with a database. I've learned at school that every databasetable should be an object in my model. so I create the whole ...
3
votes
5answers
1k views

Linq to SQL & Logical partitioning (DAL, BLL)

We're going to be rebuilding one of our sites in .Net. I've read many articles and really like the idea of separating our project into a data access layer (DAL), Business logic layer (BLL), and ...
3
votes
1answer
491 views

How do you map LINQ-to-SQL to your BLL classes?

I'm considering using LINQ-to-SQL for creating the DAL in my app. I normally create the DAL manually as I'm not a big fan of ORM (too much abstraction IMO) but I'm trying to save some time for an ...
2
votes
2answers
926 views

ASP.NET MVC: BLL and DAL to Repository design

We are moving from ASP.NET Web Forms to MVC 2.0. In most of our projects we have a typical setup to communicate with a database. Common (objects/entities like 'SiteMenu' and 'Users') Business Logic ...
2
votes
4answers
981 views

Communication between BLL and DAL

Solution setup: DAL (class library) BLL (class library) Common (class library (some common functionality - enums, logging, exceptions,...)) Application1 (Windows Application) Application2 (Windows ...
2
votes
2answers
348 views

Designing layered app with NHibernate and context changing database

I'm designing a C# application Presentation ( web site + flex apps ) Business Logical Layer (might be WCF to enable multi client platforms) Data Access Layer ( With NHibernate ) We're going to ...
2
votes
1answer
209 views

DAL/BLL and Client/Server: Should the client use BLL or DAL objects for presentation? Or maybe another layer (data transfer object?)

I'm writing a client/server system. The server has a DAL/BLL design. The client is responsible for presenting the data objects and providing dialogs and wizard to allow the user to update these ...
2
votes
2answers
263 views

Decoupling into DAL and BLL - my concerns

In many posts concerning this topic I come across very simple examples that do not answer my question. Let's say a have a document table and user table. In DAL written in ADO.NET i have a method to ...
2
votes
2answers
1k views

How to pass data between BLL and UI in 3-layer (single tier) application?

I am a fairly rookie programmer who is trying to learn the basics of n-layered architecture (DAL, BLL, UI). The application I am programming is a single tier, 3-layer application written in VB.NET ...
2
votes
4answers
1k views

Sharepoint Web Part Management

I have a rather large project developed on Sharepoint and Project Server, designed as a multi-tier application. I programmatically manage web parts on certain web part pages. According to the choices ...
1
vote
1answer
54 views

Dapper in relation to n-Tier design (BLL/DAL)

I have a basic logical question about Dapper. In attempting to do best design practices does Dapper blur the line between DAL and BLL? Many recommendations are that the DAL should know nothing about ...
1
vote
1answer
108 views

JSON/XML output in GUI, BLL or DTO?

I'm using content-negotiation, so depending on the header of the request I provide JSON/XML output. Now I was wondering what the best location is for providing this functionality. Info: BLL= business ...
1
vote
3answers
51 views

Help with debate on Separation of concerns (Data Access vs Business Logic)

I had a debate with my co-worker on whether certain logic belongs in the data access or business logic layer. The scenario is, the BLL needs some data to work with. That data primarily lives in ...
1
vote
1answer
101 views

ASP.NET Business Layer Code Persists but I'm not sure where it's stored?

I'm royally confused about ASP.NET now. I believed that everytime you retrieved a webpage business model referred to by that page would be created and that after the display had been sent to the user ...
1
vote
2answers
241 views

Best Practice (Keeping it simple) to wrap a method returning List of Products from DAL to BLL

Below is a method from from my console application calling a DAL method. Whats the best way to wrap this in a BLL method so it can be called directly from the presentation? I have worked on projects ...
1
vote
4answers
1k views

How to use DTO's between UI, BLL, DAL

I'm trying to write a small app with very strict boundaries between BLL and DAL and am now wondering what the best way would be to pass the data (Domain Transfer Objects) between the layers. I ...
1
vote
2answers
92 views

How should i implement my Business Logic Layer?

Let's say I have an application that is 80% complex business logic and 20% CRUD, or vice versa. In the past I have used some kind of command pattern and had classes like ComplexFooCMD or ...
1
vote
5answers
362 views

Creating Global Variable For Web Application - ASP.NET

i'm building my web application to connect with db. so far i have managed to deal with it, (although i didn't build BLL & DAL). i have a table which has column "id". i know there is a way to ...
1
vote
2answers
88 views

Creating a repeater using BLL

I'm trying to create a repeater control bound with data of my database. This should be use with a BLL. But I don't know what I have to do. I hope someone can help me with this.. The code I used in ...
1
vote
2answers
173 views

Design Patterns: Need help understand to this concept and how it applies to my project

The past few days I have done a lot of research using the DAL/BLL/UI approach without a very clear understanding of how it will apply to my project. In the past, I have left out the BLL connecting my ...
1
vote
3answers
71 views

Should I try to put asp control events into the BLL?

I have recently been learning about Data Access Layers, Business Logic Layers and Presentation Layers, but I still have a few things that aren't quite clear. I can use the DAL and BLL with the ...
1
vote
1answer
180 views

Should a BLL be stateless?

I'm toying with building a BLL for my application. From what I've seen / read, it seems the BLL should be stateless. Doesn't this mean all BLL methods could be static? Or I'd at least only ever ...
1
vote
1answer
80 views

RIA Services and the BLL

I'm currently looking at RIA services, in order to speed development of Silverlight enterprise applications. It's clever and powerful, but it seems to me that you are invariably going to collapse your ...
1
vote
3answers
727 views

n-layered architecture - BLL, DAL and interfaces. What is best practice?

I have a question regarding n-layer architecture. I thought long and hard before asking this question as there's a lot of similar questions here already... however, after literally a day and a half ...
1
vote
1answer
388 views

Most Commonly used extensions and helper functions in ASP.NET C#

I am an ASP.NET C# web developer. The architecture followed is 3 layer The layers used are 1. UI 2. BLL (Sometimes Communicating with BLL is done using WebServices) 3. DAL Pretty basic stuff. What ...
1
vote
1answer
271 views

BLL errors best practise

What is the best practise for returning an error of a business rule in a BLL? SHould I just raise exceptions and catch them in the presentation layer, shoudl I return some kind of object that holds ...
1
vote
4answers
282 views

Is it worth it to write a bunch of 2 liner functions in BLL object just to re-route to DAL?

It seems pretty silly to me. What don't I get?
0
votes
2answers
95 views

Should I call BLL methods directly into my Asp.Net MVC 3 Controller?

I have a Business Object Layer that I use in a couple of other applications and I want to use it on my MVC application. My concern is more a design concern: Is it correct to have something like the ...
0
votes
0answers
11 views

Simple Data Retrieve from Class

I'm still new to ASP so i'm sure what im trying to achieve is very easy and im going about it the wrong way but i'm pulling my hair out as to how to get round it so any help is greatly appreciated. ...
0
votes
1answer
300 views

C# .NET4.0 TableAdapter.Update() won't insert new record

I have a small application which consists of a DAL, BLL and the Application itself all in different projects under one solution in Visual Studio 2010. My DAL is using an xsd file to query the ...
0
votes
2answers
264 views

ASP.NET 2.0 C# DAL Multiple Variable Parameters

I'm developing a Web App designed to query a large database table based on the users selection of criteria. In some cases they may know and enter the primary key, other times they might want to see ...
0
votes
1answer
296 views

Middle tier - C# class library or WCF?

I am developing a new business application which will require a business layer and a data access layer. Right now, I have both of those as simple C# class libraries which will be consumed by a ...
0
votes
2answers
266 views

How to return multi-table join value from BLL

This question is regarding the ASP.NET webservice that i am creating using the DAL-BLL architecture for my final school project. I have a stored procedure, which is a select query with an inner join ...
0
votes
1answer
129 views

Should I have one dll or multiple for Business Logic?

In my situation, my company services many types of customers. Almost every customer requires their own Business Logic. Of course, there will be a base layer that all business logic should inherit ...
0
votes
3answers
213 views

Functionality in a Data Access Layer formed by a dbml

I got a Data Access Layer that's being formed by one DBML in which i just include all object I need. Is it necessary to write more functionality in this dbml or can I just use the dbml as my DAL? I ...
0
votes
1answer
78 views

Should the DAL be a translation layer between the relational model and the domain model?

Simple question for which I think I have an answer but I am looking for a sounding board. Should the DAL be the one translating whatever comes from the database (be it through straight SQL, stored ...
0
votes
1answer
91 views

How to notify a user (UI) from BLL and get their response?

Using VB 2008 .NET 3.5 I am working on an N-Layer desktop application. Suppose a method in the BLL runs into an situation where the user needs to be notified and the method needs to wait for the ...
0
votes
1answer
850 views

Problem Using AutoMapper To Map DAL Properties To BLL Properties

I have a BLL class which contains properties for the fields in a Country table (CountryCode, CountryName, etc). It also has a property ioDAL, which is a reference to a DAL class (created with ...
0
votes
1answer
116 views

Where is boost::lambda::ll?

I can't seem to find boost::lambda::ll for a nested ll::for_each() invocations in any header file in the boost_1_39_0 distribution. Could someone point me to the right direction? Thanks.
0
votes
1answer
88 views

What interacts with the DotNetNuke UserLogin function found in the AspNetMembershipProvider?

I'm trying to figure out where the login functionality is that interacts with the UserLogin function of the AspNetMembershipProvider section, there's no references to where the login functionality ...

1 2