Tagged Questions

Multi-tier architecture (often referred to as n-tier architecture) is a client–server architecture in which the presentation, the application processing, and the data management are logically separate processes.

learn more… | top users | synonyms

34
votes
12answers
20k views

MVC Vs n-tier architecture

I was wondering what exactly is the difference between MVC(which is an architectural pattern) and an n-tier architecture for an application. I searched for it but couldn't find a simple explanation. ...
20
votes
13answers
3k views

Business Logic in Database versus Code?

As a software engineer, I have a strong bias towards writing business logic in the application layer, while typically relying on the database for little more than CRUD (Create Retrieve Update and ...
18
votes
6answers
994 views

How strictly do you follow the n-tier architecture and separation of concerns between the layers in your projects?

I suppose most of the developers have an idea of multi-layer architecture. We have DAL (Data access layer), we have BLL (business logic layer) and somewhere near the end of the road we have our UI. If ...
15
votes
5answers
1k views

How much logic should be in your domain model objects

Just finished read this post by Greg Young, where he is talking about Microsoft recommending patterns with dumb data transfer objects. He implied that in the Java community, things are trending the ...
14
votes
1answer
549 views

What is difference of developing a website in MVC and 3-Tier or N-tier architecture?

What is difference of developing a website in MVC and 3-Tier or N-tier architecture? Which one is better? What are pros and cons?
13
votes
4answers
11k views

What is N-Tier architecture?

I've seen quite a few developer job postings recently that include a sentence that reads more or less like this: "Must have experience with N-Tier architecture", or "Must be able to develop N-Tier ...
13
votes
8answers
960 views

I've never encountered a well written business layer. Any advice?

I look around and see some great snippets of code for defining rules, validation, business objects (entities) and the like, but I have to admit to having never seen a great and well-written business ...
12
votes
4answers
3k views

Arguments of using WCF/OData as access layer instead of EF/L2S/nHibernate directly

We develop mostly low traffic but highly specialized web applications. Normally we use L2S, EF or nHibernate as access layer and then throws Asp.Net MVC to it and in which for normal crud operations ...
11
votes
2answers
2k views

LINQ to SQL Web Application Best Practices

In my experience building web applications, I've always used a n-tier approach. A DAL that gets data from the db and populates the objects, and BLL that gets objects from the DAL and performs any ...
11
votes
9answers
274 views

polymorphism and n-tier applications

I have this doubt for a long time... hope anyone can enlight me. Suppose I have 3 classes in my model. abstract class Document {} class Letter extends Document {} class Email extends Document {} ...
11
votes
7answers
3k views

How to use LINQ To SQL in an N-Tier Solution?

Now that LINQ to SQL is a little more mature, I'd like to know of any techniques people are using to create an n-tiered solution using the technology, because it does not seem that obvious to me.
10
votes
3answers
414 views

Architectural question for tier .Net Development

Hi everyone i'm pretty new to the tiered development process. I'm currently developing an app and i have some basic questions regarding the best practices / architectural questions with todays ...
10
votes
5answers
1k views

Where should my models live? Web tier or Data tier? (MVC + NHibernate)

I am setting up an n-tier application with MVC, Ninject, and NHibernate (my first using these technologies). For clarity's sake, the tiers are a "Data" tier, a "Services" tier, and a "Web" tier (all ...
9
votes
2answers
705 views

Unit testing with Data Access Layer

what is a good way to write unit tests with a LINQ to SQL DAL? Currently I am doing some database testing and need to create helper methods that access the database, but I don't want those methods in ...
9
votes
3answers
490 views

Does MVC replace traditional manually created BLL?

I'm used to creating the UI, BLL, DAL by hand (some times I've used LINQ-to-SQL or SubSonic for the DAL). I've done several small projects using MVC since its release. On these projects I've still ...
9
votes
1answer
896 views

Onion archicecture dependencies in the same layer: Infrastructure and Web communicating

I am designing an ASP.NET MVC application using the Onion Architecture described by Jeffrey Palermo. It is an ASP.NET MVC 2.0 project, where I am requiring that all views be strongly typed using ...
9
votes
5answers
3k views

Entity Framework, WCF & updates

I have created an n-tier solution where I am retrieving related data from a WCF service, updating it within a Windows Forms application, and then returning the updated data via WCF to be persisted to ...
8
votes
1answer
403 views

Advice For A Newbie About N-Tier Applications

Okay people, here's another one for ya'll: I'm starting in the n-tier apps world. I've done some reading on the topic and general advice is that n-tier apps' objective is to abstract functionality ...
8
votes
5answers
1k views

Exception handling in n-tier applications?

What is the suggested approach or best practice for handling exceptions in tiered applications? Where should you place try/catch blocks? Where should you implement logging? Is there a suggested ...
8
votes
2answers
632 views

How to pass Current User Information to all Layers in DDD

Similar questions have been asked before but not quite the same (unless I missed it) I want to pass IUserInfo class instance through my Service, Domain , Domain Events, Domain Event Handlers... ...
8
votes
8answers
793 views

.Net Membership in nTier App

Lets say I have an ASP.Net MVC App and this app (UI) references a Business Logic Layer (BLL) and the BLL references my Data Access Layer (DAL). I am utilizing a Custom Membership and Role provider ...
8
votes
8answers
9k views

Difference between three tier vs. n-tier

I just came across the following sentence: As the industry has moved from a three tier model to n-tier models, the object relational impedance mismatch has become more prevalent. But I can't ...
8
votes
8answers
2k views

Data Layer Best Practices

I am in the middle of a "discussion" with a colleague about the best way to implement the data layer in a new application. One viewpoint is that the data layer should be aware of business objects ...
7
votes
1answer
731 views

Where to put sql when using dapper?

I'm using dapper for a mvc3 project at work, and I like it. However, how are you supposed to layer the application when using dapper? Currently I just have all my sql stuffed directly in the ...
7
votes
2answers
605 views

what is the difference between Data Abstraction Layer & Data Acess Layer?

I am actually stuck in 3-tier structure? I surfed the internet and found two terminology "Data Abstraction Layer" & "Data Access Layer". What are the differences among them?
7
votes
5answers
2k views

Advice on moving to a multi tier Delphi architecture

We have a relatively large application that is strongly tied into Firebird (stored procedures, views etc). We are now getting a lot of requests to support additional databases and we would also like ...
7
votes
3answers
1k views

What objects should you return from the data access layer to the business layer an n-tier system

If you have, for example, a database table called Person (ID,Name etc) what kind of object should the data access tier return to the business tier? I'm thinking something like this: //data access ...
7
votes
4answers
620 views

Strategies to Avoid Transaction Escalation in System.Transactions

So, based on the answer to my previous question, transactions do get elevated from the LTM to the DTC if multiple connections are opened during a transaction, even if the connections all have the same ...
6
votes
3answers
1k views

What are the main advantages of MVC pattern over the old fashioned 3-layer pattern

I am contemplating about using an MVC pattern in my new project and I can clearly see the main advantage of being able to put the data layer (the model) a little closer to the presentation layer (the ...
6
votes
6answers
445 views

How many layers is too many?

As I have been learning about software development the last 2 years the more I learn, it seems the more gray areas I am running into. One gray area I have issues with right now is trying to decide ...
6
votes
3answers
2k views

N-Tier Architecture - Structure with multiple projects in VB.NET

I would like some advice on the best approach to use in the following situation... I will have a Windows Application and a Web Application (presentation layers), these will both access a common ...
6
votes
4answers
1k views

Should service layer classes be singletons?

I am using Java EE with Spring framework. Should my service classes be created as singletons? Can someone please explain why or why not? Thanks!
6
votes
8answers
1k views

What does n-tier mean to you?

I have noticed over the years that different developers have different criteria for what constitutes a tier in the development of an n-tier system so I was curious about what the consensus is here at ...
6
votes
5answers
2k views

What is the best Delphi n-tier low bandwidth technology?

I need to deploy a Delphi app in an environment that needs centralized data and file storage system (for document imaging) but has multiple branch offices with relatively poor inter connectivity. I ...
6
votes
11answers
470 views

What strategy would you use for tracking user recent activity?

Our customer would like to know who is online and currently using the custom application we wrote for them. I discussed it with them and this doesn't need to be exact, more of a guestimate will work. ...
6
votes
5answers
2k views

How Do You Communicate Service Layer Messages/Errors to Higher Layers Using MVP?

I'm currently writing an ASP.Net app from the UI down. I'm implementing an MVP architecture because I'm sick of Winforms and wanted something that had a better separation of concerns. So with MVP, ...
5
votes
3answers
213 views

Is the MVC-pattern a pure presentation-tier pattern?

Kind of a special question today :) I just had a test at my technical university where I was told that I am wrong. So I like to know from you folks(I believe you more than my teachers): Is the ...
5
votes
1answer
199 views

Practical Usage of N-Tier Architecture

I'm a .NET web developer for a small organization. We have some skilled developers here, but what we don't have is anyone who's worked for larger, more organized, software shops. We do all right, but ...
5
votes
2answers
214 views

Where should data validation occur?

I've read conflicting philosophies on where data validation should happen and it's just confusing me more. Some say it should only be in the database. Others say that the validation rules should be ...
5
votes
4answers
430 views

Why should I use an N-Tier Approach When using an SqlDatasource is A LOT EASIER?

When it comes to web development I have always tried to work SMART not HARD. So for along time My Aproach to interacting with databases in my AspNet projects has been this : 1) Create my stored ...
5
votes
1answer
1k views

DDD Concepts in N-Layer Development

After spending a couple months studying DDD methodology, I've now began to apply these concepts into actual products at my company. In fact, I've been tasked with creating a suitable and maintainable ...
5
votes
3answers
608 views

Should mvc web applications be 3 tier?

I will designing a couple of web applications shortly. They will probably be done in asp.net mvc. In my existing web apps, done in delphi, the data access layer is seperated out into a completely ...
5
votes
4answers
478 views

Steps to take to slowly integrate unit-testing into a project

I'm currently on a co-op term working on a project nearing completion with one other co-op student. Since this project has been passed down from co-op to co-op, poor practices have been taken along ...
5
votes
7answers
338 views

OO Design vs Database Design

Suppose I am developing an application for a product distributor in C#. The distributor does the following 3 types of transactions: (1) Indent (2) Sell (3) Stock I am designing my classes as ...
5
votes
2answers
5k views

Entity Framework - layered design - Where to put connectionstring?

I am using a layered architecture with the Entity Framework as my datalayer with a bunch of repositories on top which contain the Linq-To-Entities queries. The data layer is one project, next to that ...
5
votes
6answers
2k views

Error Handling in 3 layered architecture

How do I implement error handling elegantly? For example, my data access layer can potentially throw 2 types of errors: 1) not authorized access, in which case the page should hide everything and just ...
5
votes
5answers
1k views

Is it worth using 3-tier architecture for small(ish) applications

I'm working on a relatively small asp.net web application and am wondering if there is really a need to employ full n-tier architecture. For an idea of size; there are about 20 database tables. In ...
5
votes
1answer
485 views

Dependency Injection in an n-tier application?

I have a 3-tier .NET service app, which follows the standard approach: Frontend -> Object Model / Business Logic -> Data Access I'm trying to learn about dependency injection along the way, ...
4
votes
3answers
200 views

What does N-tier Architecture means nowaday?

In a traditional sense, N-tier means separating the application into "tiers" and putting each "tier" on different servers. This was done for at least 3 reasons: Maintenance: a) Code Maintenance: ...
4
votes
8answers
392 views

3-tiers pattern and large amounts of data

Here is my situation: I am trying to follow as hard as I can the 3-tier pattern (i.e. Presentation, Business and Data layer). When I need data from the DB, the Business layer calls the Data layer ...

1 2 3 4 5 6