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

0
votes
0answers
16 views

Using Entity Framework in a clustered enviroment (accessed remotely)

I'm defining a 3-tier architecture for a web application. Due to high availibility requirements, i have defined to deploy the business layer (BL) and the data access layer (DAL) in a cluster of two ...
1
vote
0answers
34 views

EF 5 Connection String

I'm working on a .Net 4.5 web application project which has multiple DAL projects to interact with several back-end systems. Our DAL projects maintain connection strings in the project settings. We ...
1
vote
1answer
60 views

Using DTO to transfer data between service layer and UI layer

I've been trying to figure this out for days but there seems to be very little info on this particular subject with ASP.NET MVC. I've been Googling around for days and haven't really been able to ...
1
vote
0answers
32 views

How do I use Entity Framework for a complex business calculation?

I have written a bunch of complex business rules and calculations that take a whole bunch of data and process on it in memory. I would like to know how I can synchronize the results to the database, ...
0
votes
1answer
54 views

Modelling large scale web-application infrastructure?

I am looking for an industry standardised notation and methodology for showing these connections and a little bit of detail as to what data is being transferred at each step. Here is my ad-hoc ...
1
vote
1answer
36 views

Combining MVVM and N-Tier Architecture

It looks like VM = Business Logic Layer and that the Model = Entities/DTO. In my business logic I am doing the validating of business rules like if FirstName is empty, etc. and it looks like this can ...
0
votes
2answers
156 views

Best Structure for ASP.NET MVC Solution

I tried to structure my last sizeable MVC project following a best practice approach, but didn't quite understand what I was doing. It has a Data, Business and Web (MVC) project, but the controllers ...
0
votes
1answer
129 views

Skinny Controller For ASP.NET MVC File Upload

I am gradually converting a Classic ASP website to ASP.Net MVC. Within my Models folder I have further subdivided it into Business Objects (BO), Business Logic (BLL) and Data Access Layer (DAL) for ...
0
votes
1answer
101 views

N-tier application configurations retrive/store

When developing my site using ASP.NET MVC (C#) I've used Domain Driven Design (N-Tier) as the architecture. I'm wondering how can I create a settings/configurations for my app (without using database ...
0
votes
0answers
68 views

N-tier application and SQL Server Compact 4.0

I am currently developing some application in C# and I am using a n-tier architecture and embedded database SQL Server Compact. SQL Server Compact is pretty new to me, and I have some problem with ...
1
vote
1answer
45 views

Why should we separate DataSet code from DataAccess code?

I've been converting my WinForm application using a tiered approach following this article: http://msdn.microsoft.com/en-us/library/vstudio/bb384570.aspx In the article, it recommends creating two ...
1
vote
1answer
103 views

The N-layers paradigm - is this concept wrong?

I just saw the lecture: Breaking apart conceptions He keeps saying that the 3 layers paradigm started because of the problem with connection pooling. And NOT because of architectural ...
0
votes
0answers
92 views

Return DTO with data from data layer instead of entity with data

DATA LAYER Data is returned with Entity in data layer as below. public List<Products> GetAllProducts() { using(var context = AdventureworksFactory.CreateContext()) { var products = (from ...
1
vote
2answers
127 views

Multi-Tier Architecture - Responibility questioins

I'm developing an application which implements multi-tier pattern where MySQL is used for persistence. There is a WCF service which provides access to data and provides DTOs. Further, I plan to ...
7
votes
4answers
741 views

Circular reference issue in 3-tier architecture C#

I want to build a web application with 3-tier architecture in ASP.NET. But I am getting a problem of circular referencing. I have 3 layer: Application layer containing UI. Business layer ...
1
vote
2answers
45 views

Winform:client maintenance mode?

In asp.net, there is app_offline.htm which let you shutdown website gracefully.I want to implemet similar function in client. There is a flag to set to maintenance mode,if flag is on: When user ...
0
votes
0answers
37 views

Application tiers/layers standard model (like OSI/TCP models)?

Is there any standard model that covers the entire architecture of an application, in the way that TCP and OSI models do for network programming? Perhaps it's too "simple" to be worth standardizing. ...
1
vote
4answers
96 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 ...
0
votes
0answers
280 views

Using EntityFramework 4.0 in 3-Layer application and CRUD by DataGridView

we have 3-layer DAL contains EntityFramework Contex object with CRUD functionality ; BLL with some mapper and DTO class ; and UI with a simple DataGridView . BLL : ----------- public ...
-1
votes
2answers
118 views

why make n-tier over n-layer applications? [closed]

Why use n-tier over n-layer applications? I've found only 1 answer: you don't trust all your developers alike. Is n-tier more secure? No, because if I hack front-end can call crud methods from ...
0
votes
2answers
116 views

N tier within MVC

I'm moving from web forms to MVC and I'm a little lost. My question was almost answered by MVC Vs n-tier architecture but not quite. In web forms, I would typically build my site with 3 projects ...
0
votes
3answers
149 views

Best practice for exception logging in tiered application to avoid duplicate error log messages

In a classic 3 tiered application with a presentation tier, service tier and dao tier what is most appropriate way to ensure concise and unduplicated exception reporting log messages. Imagine your dao ...
0
votes
2answers
103 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
427 views

Three tier app in C# - where to put data and business models

I am building a standard three tier application in C# 1 Console app for front end/but I might change this to a ASP.NET MVC web page 2 Business logic layer 3 Data layer using Entity Framework ...
0
votes
1answer
145 views

Ninject in a three tier application

I am building a standard three tier app. 1 Console app for front end 2 Business logic layer 3 Data layer The main purpose is to display some customer data from a database table. I'm trying to ...
0
votes
2answers
73 views

Organize n-tier Application Branches for Azure / GitHub Publishing

I'm planning to develop a multi-tier .NET application, with at least three separate layers hosted on Azure: Web frontend Backend / worker role Database I would like to use Azure Git Publishing ...
3
votes
2answers
145 views

Where do I place a custom membership provider in my project architecture?

I started learning how to build N-Tier web applications 4 months ago and I still don’t fully understand where to place everything. My architecture is based on the book “Professional ASP.NET Design ...
-1
votes
2answers
176 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 ...
1
vote
0answers
93 views

Repository, Service layer and Query objects

I'm trying to implement an N-tier architecture using repositories and service layer in asp.net mvc application. A Service object can own multiple repositories to collect all data it needs using the ...
0
votes
0answers
98 views

how can i detect changes and set proper state of an POCO object on client side in a N-Tier solution?

I'm using code first method with POCOs in an 2-Tier architecture, for tracking changes on my pocos i add a BaseEntity class to my Models Project as: public class BaseEntity { public States State ...
1
vote
0answers
68 views

UI in n-tier c#

Good day, I am having trouble with using n-tier architecture. here's my problem I want to create a simple n-tier web based application i already added the DAL which comes from our previous project ...
0
votes
0answers
116 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
1answer
146 views

ASP.NET n-tier application validation / business logic

I have a few quick questions about the use of the business logic layer in the average N-Tier architecture application. I am developing my final year university project, and using a web forms ...
0
votes
1answer
39 views

Handling non-deleting entities in an N-Tier Architecture

What is the best practice approach to handling non-deleting entities in an N-Tier Architecture. The architecture in question has a service layer and a repository layer. The repository is the only ...
2
votes
1answer
482 views

SignalR in an N-Tier WCF application

I have an n-tier application, which has a WCF service exposing all my business logic, hosted as a windows service, with a MVC application as the client, consuming the services. Most of the examples ...
0
votes
0answers
76 views

Applying SSL to custom hosted Wcf dataservice

Iam currently developing a custom service hosting environment. For that i need to expose a wcf dataservice which is accessed through an ssl connection. Here is how iam currently hosting the service. ...
3
votes
2answers
350 views

Exception Handling and Logging in WCF N-Tier app

The layout of our application is as follows WCF - Business Layer class library dll - Data Access Layer class library dll - SQL Server. Generally the class libraries do not access external resources ...
0
votes
3answers
312 views

Business Layer Facade vs Mingled Business Components

I'm currently designing the foundation for a large application. We are going with the traditional 3 tier system using EF in the data layer, plain jane c# classes in the business layer and MVC / WCF ...
0
votes
1answer
126 views

My first NHibernate business app: how/when/where to use transactions?

I'm new to NHibernate but familar with EF4. In a new business app with a new company, we've been instructed to use ASP.NET webforms and NHibernate, and I'm looking to get started. I had planned to ...
1
vote
1answer
72 views

Where can I find articles on folder structures for websites?

I'm creating an n-tier website with a number of projects. I'd like to follow best practice rules in terms of structure. Are there any articles relating to folder structures available or does anyone ...
0
votes
0answers
24 views

Where do put class library functions in n-tier website?

There are lots of articles out there on n-tier websites, but I'm looking for some practical advice on an area they don't seem to cover. I have a set up a typical n-tier website. website BLL DAL I ...
1
vote
2answers
271 views

Implimenting MVC.Net N-Tier with Ninject Architecture

First of all I appreciate there is no one size fits all in terms of project layout, however as I am moving over to mvc, I want to try and start with solid foundations. Currently I am really ...
4
votes
2answers
200 views

How to keep track of the last user that made changes to an object in DDD?

I'm trying to implement DDD and feel I get the hang of it, but I have some problems too. In 90 % of my domain objects I want to know the last user that made changes to it. I do not need a full audit ...
3
votes
2answers
141 views

Dependency Injection - Does it violate Separation of Concerns?

Does Dependency Injection violate the Separation of Concerns as it pertains to an n-tier architecture? Suppose you have the following projects: MyApp.Data MyApp.Business MyApp.Web If I were to use ...
0
votes
1answer
210 views

Failed to convert parameter value from string to guid

I have a tiered application. The datalayer makes a call to the database by using a dataset which contains a tableadapter. In the database table there is a field called ID of type UniqueIdentifier. I ...
0
votes
1answer
97 views

Design guidance on Business Layer Paging [closed]

WCF/C# N-Tier app. We have implemented Paging in our business Layer using this snippet as a basic guideline. I'm just wondering- in an effort to make the paging functionality testable, should I make ...
1
vote
2answers
115 views

Dynamically determining if application is Winform based or ASP.NET based

I have a data access layer that is compiled as a class library and compiles to a dll. Historically, the dll provided data access to my database for my web application. It works just fine, but what its ...
3
votes
4answers
140 views

Creating objects vs. SELECTing directly from database

I'm currently working on an integration project to connect two disparate systems. My plan is to setup an HTTP-API to allow System A to issue commands through HTTP-POST to System B. The commands will ...
0
votes
0answers
43 views

AppHarbor deployment issue for a n-tier Web Application with Services tier

I am deploying an asp .net 4.0 application to appharbor. I have a web tier, then a services tier. Typically in iis 7.5 i have a website that points to the parent directory of these two tiers. ...
0
votes
3answers
244 views

c# n-tier data layer design issue [closed]

I have a 3-tier c# application, with presentation layer business layer and data layer accessing the database, I have a connection object from the data layer representing a database connection. I ...

1 2 3 4 5 8