Tagged Questions
The n-layer tag has no wiki summary.
7
votes
4answers
167 views
.NET N-Tier Architecture: What do I do about the Model objects?
I am creating a solution from scratch, using ASP.NET Web forms C#.
I am concerned about the model objects as I don't want to create duplicate sets of model objects in each layer. What is the best ...
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 ...
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 ...
4
votes
4answers
1k views
A modern n-layer asp.net web application sample?
So my asp.net is very very rusty, and i'm trying to get back into best practices and what not. So, I whip out google and start looking for examples and samples and tutorials, but what do I find? Old ...
3
votes
4answers
75 views
N-Layer Architecture
I’m in the situation that I have to design and implement a system from the scratch. I’m having some questions about the architecture that I would like your comments and thoughts on.
Quick Info about ...
2
votes
3answers
60 views
Is there a difference between ASP.NET N-Layered / DDD architecture and a Window service software architecture? [closed]
I am reading a lot of architecture (N-Layered and DDD) yet most of the articles are about web site architecture and develop mostly windows services.
Can the architecture be used the same way?
2
votes
1answer
197 views
Microsoft N-Layer sample
What do you think about http://microsoftnlayerapp.codeplex.com/ ? I am interesting in data access implementation (UnitOfWork, repositories, transactions). Is it the "best" example of implementing this ...
2
votes
2answers
2k views
Using EF POCO classes as MVC 2 models (with data annotations)
I have a 4 layered web application programmed in C#... .Net 4.0:
UI Layer
Business Layer
Data access Layer
Entities layer
My data layer contains an edmx
My entities layer contains my POCO objects ...
1
vote
2answers
67 views
In which layer should Specification Pattern objects be “new'ed up”?
So, I've looked at some posts about the Specification Pattern here, and haven't found an answer to this one yet.
My question is, in an n-layered architecture, where exactly should me Specifications ...
1
vote
1answer
68 views
Can you bypass a layer for a certain operation in a layered architecture?
In an n-layered (5-layer, let's say) application, if there are options available for a certain operation to bypass one of the layers and communicate with the next layer directly, can it still be ...
1
vote
2answers
321 views
Adding System.Web reference to Business Logic Layer in n-layer Architecture
I'm using TableProfileProvider to use ASP.NET profile system in an n-layer architecture.
The UI layer is a web application so I have to expose the profilecommon class to be able to use profiles.
...
1
vote
3answers
728 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
116 views
n-Layered Design Confusion
Can anyone provide me with a web link that shows a correct approach of n-Layered design with example source-code in VS2005 and C#?
I am confused in one point, If I am creating layers like the ...
0
votes
3answers
173 views
MVC or MVP architecture for winform applications using Entity Framework as ORM
I am going to develop a winform project of considerable size. I am planning to use Entity Framework as ORM tool. Now I am searching for an architecture(MVC/MVP/MVVM etc..) to implement all these. ...
0
votes
1answer
37 views
n-layerd application and linqdatasource
Asp.net application in a n-layered architecture (better if is a DDD architecture).
In the presentation layer I have a grid (let's say telerik radgrid or standard gridview) where I need to show a list ...
0
votes
1answer
69 views
n-layared architecture, is it only a 3 layer thing?
I've always heard about the 3 layer approach (Presentation + Business logic + Data access) and that's the way I've always worked (adding a "4" layerif I count the database itself), but I'm wondering ...
0
votes
5answers
192 views
N-Layered ASP.NET Application: One class library for all my layers or one class library for each layer?
I hope I made the question self-explanatory =)
Thanks in advance everybody!
0
votes
4answers
249 views
Dynamic N-Layer with ASP.NET
I'm trying to build a web application that let the administrator talk to the database through C# and add new tables and columns to fit his requirements (sort of a very simple database studio) but I'm ...
0
votes
2answers
397 views
What are the benefits of an N-layered architecture?
What are the benefits of an N-layered architecture? How does that make an application better?
0
votes
2answers
927 views
Entity Framework in n-layered application - Lazy loading vs. Eager loading patterns
This questions doesn't let me sleep as it's since one year I'm trying to find a solution but... still nothing happened in my mind. Probably you can help me, because I think this is a very common ...
0
votes
5answers
154 views
Agile/XP and Layered approach
Can Agile/XP go together with layered approach?
Should Agile/XP go together with layered approach?
Breaking the source code into layers requires extra efforts and thereby increases the ...
-1
votes
1answer
63 views
EF “POCO” Entities with Repository Pattern / 3-Layer Architecture [closed]
EF is awesome; so is MVC. I feel the problem with these technologies is that many blog posts as well as other tutorials/books/documentation demonstrates their features and capabilities using bad ...