N-Tier architecture refers to the architecture of an application that has at least 3 "logical" layers or parts that are separate. Each layer interacts with only the layer directly below, and has specific function that it is responsible for.

learn more… | top users | synonyms

1
vote
1answer
25 views

Is it harmful to inject en EJB into a viewscoped Bean?

In my web application I have a presentation Layer consisting of several jsf-viewscoped and some requestscoped beans. Normally I only want to have presentation logic in these, so whenever there's a ...
0
votes
1answer
31 views

Approach to refactor multi-portal solution asp.net mvc

i am currently refactoring a massive monolithic asp.net mvc solution (which runs as a website/portal) and extracting class libraries with common business logic (that can be used to create a similar ...
0
votes
3answers
74 views

ASP.NET nTier Architecutre

I have a project which require me to set up a web application using the ntier approach. However, as most of the projects that i did was a website using 1 tier, therefore i am foreign to this ...
0
votes
1answer
40 views

Application Services referred as containing Business Logic

I have a question that twisted me over the last months. Some of the writers and persons (I would not say all of them) are associating the Business Logic with Application Services . According to what ...
0
votes
0answers
32 views

Modular Builds with Visual Studio 2010

I've got a fairly standard problem and I'm looking for opinion on the best architecture to handle it. (easiest to set up and maintain, most reliable, etc.) My project is a 3-tier system that has a ...
1
vote
1answer
92 views

Where to set a UTC datetime value in n-tier application: Presentation Layer, Domain, or Database?

This seems like it should be an obvious question, but I have had some issues finding a good answer. I am building an n-tier application that needs to be UTC time sensitive. Values can be updated and ...
1
vote
4answers
87 views

In c#, Is it possible to pass two different classes as return type from one layer to other layer?

My application has n-tier architecture. I have different layers(Business Logic & Data Link & GUI). I am using some common classes to pass data from one layer to the other. I have a class(say ...
1
vote
1answer
57 views

DML reference DAL is a technical issue? (dependency injection in .net book)

in the book dependency injection in .net (a great book thanks mark). in page 41 MISCELLANEOUS OTHER ISSUES : he speaks about one anti pattern, ui that reference DAL and BLL, DAL that defines Domain ...
1
vote
1answer
95 views

EF generic repository to any data provider

I'm trying to make my EF generic repository more "wide" to work with any data provider(ORM) like EF, NHibernate, Amazon Services and so on without any binding to EF context. For now I have(gist ...
1
vote
1answer
69 views

Patterns / Architecture for properly handling wizards in Web App

I've searched for a while on this subject, but found no "satisfactory" answer so far. I'll try to explain myself. We're developing a web app that requires, for some entities, wizards on create/edit ...
1
vote
2answers
64 views

Creational Pattern for simple types whose properties are retrieved from a database?

BACKGROUND For my own understanding, I'm trying to create a layered architecture for a simple scenario.  I have a simple domain class, Car.   public class Car {   public string Make;   public ...
2
votes
1answer
111 views

AsQueryable() in Business logic layer - bad practice? (I think so but…)

Say for example I have (pseudo code): public IEnumerable<User> GetUsers(string name) in my data access layer to Entity Framework, which at the moment does a .ToList() before returning, thus ...
0
votes
0answers
37 views

What Architecture is it?

I would like to know what would this architecture qualify into (i.e Single Tier, 2 Tier, 3 Tier or N-Tier) Visual Studio Solution Structure 0) Solution 1) Class Library 2) Task Service(WCF ...
2
votes
0answers
202 views

EF5 update disconnected graph (n-tier) one-to-many

Problem: insert / update entity related to a parent with a one-to-many relationship in a disconnected graph scenario. UPDATE I found that the problem is just with new UserProfile I add to Brewery, ...
1
vote
2answers
425 views

N-Tier Architecture with MVC4

We are following N-Tier Architecture pattern for our ASP.NET web apps. We are using these layers DAL,BAL, Business Objects and Common. Now we are moving to ASP.NET MVC4. Can we still use these ...
2
votes
2answers
262 views

N-Teir Architecture with ASP.NET Web API

I'm just trying to wrap my head around this concept. I have written a couple different Web APIs but they have always been consumed by a website and interacted via JSON. I have a question about how ...
3
votes
2answers
321 views

Design of a web application with ServiceStack

After getting an advice about using ServiceStack for my asp.net MVC website (Maintaining state in Asp.Net MVC website), I started implementing it in my project - but some stuff is still unclear for ...
0
votes
2answers
95 views

N Tier layer - load details into object

I created a website using the following structure: Class Project - Called DataAccessLayer > Added a Dataset > Add a tableAdapter and Datatable with a query called GetcustomersByID(ID) Class Project ...
1
vote
1answer
1k views

ASP.NET MVC4 n-Tier Architecture: best approach

I developing a 3 tier architecture for an MVC4 webapp + EntityFramwork5. I want to keep separete the layer, so only DAL knows that I'm using EF, for example. Actually I have a lot of classes to ...
0
votes
1answer
235 views

Entity Framework in detached mode with MVC application

I have started working out with Entity Framework (EF) for an MVC n-tier application. It would seem that very obvious that this being a web application (which is stateless), I would have to use ...
2
votes
3answers
115 views

C# Interfaces implementation

I don't know how manage properly the interfaces in C#. My goal is to have an abstract class for my Business Layer Services that have some common methods (like Save(), Dispose()), that call different ...
1
vote
1answer
46 views

Managing session state on site with several servers?

I am currently in the design phase where we have several servers that make up our system and I need to work out what is the best way to store session information so that each of the servers can get ...
4
votes
3answers
263 views

IEnumerable<T> as return value, deferred execution and N-tier applications

First, I do not consider this question be the dup of these SO questions: Should I always return IEnumerable<T> instead of IList<T>? and IEnumerable<T> as return type As we all know ...
4
votes
2answers
232 views

3 tiers nhibernate + wcf + Silverlight

Recently I was asked to develop a project. The architecture looks like: 1 tier: DataAccess base on Nhibernate 2 tier: Business layer based on WCF service and some Core classes 3 tier: View based on ...
1
vote
0answers
51 views

Best way to provide a secure external webpage for importing to an internal database and Django. (Best way for the tiers to comunicate).

I have an Django application at my work, only available on the internal network. Currently we import data using Excel, but this is a terrible error prone process and I want to replace it. I would ...
2
votes
1answer
112 views

How can I model and structure this workflow engine?

I'm trying to come up with (what I hoped to be) a somewhat simple workflow engine. Basically I have an object of a class with a Status property. In order for it to advance to a different status it ...
0
votes
0answers
189 views

Software architecture for web based desktop like business application - API + Client?

I have been developing small/medium business applications for some time now. I've started with Delphi almost 10 years ago, then switched to web development and have been using PHP/js. My applications ...
0
votes
0answers
195 views

C# code examples of architectures for WPF, Web API and Entity Framework [closed]

Where can I find tutorials or examples about architecture? I would like to learn more about architectures used for WPF and Entity Framework. Are there any examples or tutorials out there which ...
1
vote
0answers
205 views

Implementing a generic Utility class in Business Logic Layer to communicate with DAL

The following is a fragment of my Database tables: Account --------------------------      Account_Id      Account_Types      ...
4
votes
4answers
358 views

Mapping Entities to Models and Performing Business Logic in ASP.NET MVC

What is the best practise in mapping your database entities to your models and performing business logic? I've seen considerably different implementations of both. I have noticed a number of ...
1
vote
2answers
260 views

Data Objects in Business Logic Layer when using Entity Framework

Do I need to write classes that represent database tables when I am using Entity Framework? For example, I have the following tables: Account, Customer, Order,... Entity Framework will provide me with ...
0
votes
1answer
66 views

What is an acceptable way to implement “UpdateDomainObject” method in an Assembler dealing with Data Transfer Objects, & Entities in C# ASP.NET 4.5?

I am writing a "Domain Object" --> "Assembler" --> "Data Transfer Object" (DTO) pattern into my shared library to allow the presentation tier and the service layer to communicate through DTO's. I ...
2
votes
1answer
182 views

Using Ninject on the DbContext of a multi-tier application

I am trying to get to grips with Ninject and can't seem to find any articles on here that help solve my issue. I have created a simple n-tier solution that contains Web, Business Logic and Data Access ...
0
votes
1answer
172 views

Entity Framework and N-Tier

Having an architecture problem. I am trying to split out logical tiers into physical tiers and having a little trouble. Here is the way I would like things set up: Entities - A DLL. My POCO classes. ...
-1
votes
2answers
162 views

N Tier Development standards [closed]

Am new user of the n-tier development, and am wondering how can i determine the number of layers to use? i know the structure and divisions DAL and BLL, but some user may divide their projects into ...
0
votes
1answer
42 views

Which services are considered Infrastructure Services?

From: An Infrastructure Service would be something like our IEmailSender, that communicates directly with external resources, such as the file system, registry, SMTP, database, etc. Something ...
0
votes
0answers
43 views

What are the issues with having logic in Forms classes? Supports multiple UIs [closed]

I have a GAME which contains the logic in the Forms class developed in Winform VB.NET. What are the potential issues with having logic in the Forms class? and why? Also, how should it be architect to ...
1
vote
1answer
56 views

In MVP can the model be shared by the BLL

I read the following really good and informative article on MVP: MVP Building from scratch. Referring to the below architecture diagram (taken from the post): i wanted to know if the model classes ...
0
votes
2answers
244 views

Javascript PHP N-Tier Architecture [closed]

I'm confused how to classify the project I'm doing if it is 3-tier or 2-tier. Basically it's a medical service system and it's using PHP and JS(with Jquery and Ajax); both are used for the business ...
1
vote
2answers
190 views

Where to define the interfaces for a repository in an layered architecture?

Background I'm trying to create a simple application to really understand the whole stack of DDD+TDD+etc. My goal is to dynamically inject the DAL repository classes at runtime. This keeps my ...
0
votes
2answers
731 views

MVVM WPF application in 3-tier architecture

I'm currently working on a Enterprise WPF LOB Desktop application using the MVVM design pattern. My current Solution structure in my development machine is the following: Main Project - WPF ...
0
votes
0answers
77 views

How do I write pluggable Modules in asp.net and EF?

My solution has a tired architecture: DTO : Simple DataTransferObjects. It's shared between tiers DAL: It's just the only project that knows about EF Business: It has core business ...
0
votes
0answers
109 views

RESTful Business Logic Layer

I found this similar question, but it didn't help me much: Can you build a RESTful Business Logic Layer? I am developing an N-Tier application where I have a UI, RESTful web services, BLL, and DAL. ...
0
votes
0answers
64 views

Windows Communication Service

Okay, I'm building an N-Tier style application. So the goal is to obviously create multiple entry points. The Client & Business. So, I appear to feel like a dolt. As this particular service ...
2
votes
1answer
105 views

Can/Should Data-Transfer-Objects implement Interfaces?

I was wondering if someone could help me with this "architectural dilemma", I'm retrieving some objects from different types (classes) say like: posts, docs and pictures turns out that in the ...
2
votes
1answer
184 views

Web portal taking data from web service or database - architecture pattern

I'm working on the project that is currently built upon the following architecture: 1) First solution Project that has all the database logic (DAL) based on Entity Framework 5 WebAPI project ...
5
votes
1answer
1k views

ASP.NET MVC - Service Layer - Business Layer - Data Layer (EF) - SQL DB :: Data Transfer?

I am planning to create 3 tier application using ASP.NET MVC as UI tier, WCF as Business tier and SQL DB as the database. My Business tier would split as Service Layer (WCF), Business Layer (Business ...
0
votes
4answers
146 views

.NET - divorcing layers

I am trying to create a structure for a large .NET application I am developing. I am planning to create three projects: DataAccessLayer BusinessLogicLayer UserInterfaceLayer I have two questions. ...
0
votes
0answers
551 views

Example of implementing a multi-tier architecture in java project [closed]

I'm trying to implement a multi-tier architecture in Java SE project. I know the concept and I understand the 3 tier architecture of Data Access , Logic and Presentation. But I'm still confused about ...
4
votes
2answers
2k views

ASP.NET 3-Tier / 3-Layer architecture - how to separate UI and BLL

I am currently studying towards my final year of a Computer Science degree, and working on my final project and dissertation. I will be using ASP.NET Web Forms and C# to create a 3-Layer project - I ...

1 2 3 4 5