Tagged Questions

36
votes
5answers
6k views

Advantage of creating a generic repository vs. specific repository for each object?

We are developing an ASP.NET MVC application, and are now building the repository/service classes. I'm wondering if there are any major advantages to creating a generic IRepository interface that all ...
24
votes
8answers
23k views

ASP.NET MVC & Web Services

Does adding a Web Service to my ASP.NET MVC project break the whole concept of MVC? That Web Service (WCF) depends on the Model layer from my MVC project to communicate with the back-end (so it looks ...
19
votes
13answers
1k views

Why should a web architecture be loosely coupled?

When I look at ASP.NET MVC projects I everytime see loose coupled architecture. For what do I need a loose coupling in a web architecture (if I do not make unit tests)? What are advantages and ...
16
votes
8answers
1k views

How to structure an enterprise MVC app, and where does Business Logic go?

I am an MVC newbie. As far as I can tell: Controller: deals with routing requests View: deals with presentation of data Model: looks a whole lot like a Data Access layer Where does the Business ...
16
votes
5answers
3k views

How to implement ASP.NET membership provider in my domain model

In a website, I need to integrate membership and authentication. So I want to use the functionality of ASP.NET Membership, but I have other custom stuff, that a "user" has to do. So I am sitting ...
14
votes
7answers
3k views

When should a web service not be used?

Using a web service is often an excellent architectural approach. And, with the advent of WCF in .Net, it's getting even better. But, in my experience, some people seem to think that web services ...
13
votes
4answers
1k views

I just discovered why all ASP.Net websites are slow, and I am trying to work out what to do about it

I just discovered that every request in an ASP.Net web application gets a Session lock at the begging of a request, and then releases it at the end of the request!!! I mean, WTF Microsoft! In case ...
13
votes
4answers
854 views

What are some common things to consider when developing a web-based application to be sold

I'm developing an application for an internal customer. One of the requirements is that it be developed in such a way that it could potentially be sold to other organizations. The application is a ...
12
votes
5answers
481 views

Repository, Pipeline, business logic and domain model - how do I fit these together?

I'm designing N-tier application and I came across a difficulty which you might have a solution to. Presentation layer is MVC. My ORM is carried out using LinqToSQL - it's a seperate project which ...
12
votes
4answers
247 views

How to determine distributed architecture?

I'm trying to get my head around the thought process when designing a large scale application. Let's say I have a client who needs a new customer website and he is estimating 40,000 orders per day ...
10
votes
2answers
6k views

ASP.NET Web Site + Windows Forms App + WCF Service: Client Credentials

Let's say that I'm considering designing a WCF service whose primary purpose is to provide broad services that can be used by three disparate applications: a public-facing Web site, an internal ...
9
votes
1answer
370 views

Architecture of an ASP.NET MVC application

I'm in the process of doing the analysis of a potentially big web site, and I have a number of questions. The web site is going to be written in ASP.NET MVC 3 with razor view engine. In most examples ...
9
votes
7answers
2k views

.NET Entity framework project layout (architecture)

I'm trying to determine how best to architect a .NET Entity Framework project to achieve a nice layered approach. So far I've tried it out in a browse-based game where the players own and operate ...
9
votes
4answers
2k views

How should I structure a simple ASP.NET MVC app?

I've been reading a few things about ASP.NET MVC, SOLID and so on, and I am trying to figure out a simple "recipe" for small-to-medium ASP.NET MVC apps that would put these concepts together; the ...
8
votes
4answers
1k views

Enterprise ASP.NET MVC 3 architecture outline

I've gotten lucky enough to work on a completely new enterprise MVC 3 project. And by new, I mean source control is literally empty at this point. We're trying to figure out how to lay out out the ...
8
votes
1answer
244 views

Enterprise Library validation blocks

I've just started using the ms validation blocks which i think are awesome. but have a couple of questions regarding data validation between layers. Currently I'm using the repository pattern as a ...
8
votes
8answers
7k views

3 Tier Architecture - In need of an example

Presently I am working using single tier architecture. Now I am wanting to learn how to write code using 3 tier architecture. Please can you provide me with a simple example?
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
12answers
8k views

Using Silverlight for an entire website?

We need to build an administration portal website to support our client/server application. Since we're a .Net shop the obvious traditional way would be to do that in ASP.Net. But Silverlight 2 will ...
7
votes
4answers
78 views

Should UI components ever be passed to a Business Logic assembly for binding

I've recently been handed a code base which does a few things I'm a little different to how I usually do them. The main difference is that it seems to pass elements (say for example a drop down list ...
7
votes
5answers
122 views

Should I make my object properties nullable or use the CLR default values for each type?

I have been trying to figure out the best way to handle default values. Setting a ID value to 0 makes sense, but if it is a money value or other that is not initially set, when you encounter it later ...
7
votes
3answers
1k views

Best implementation for an RSS feed in C# (ASP.net)

The thing I have a web app (asp.net) which needs to have a feed. So I used the System.ServiceModel.Syndication namespace to create the function that creates the 'news'. The thing is it executes ...
7
votes
5answers
3k views

Evaluating Sharepoint vs ASP.NET as a development platform

I am evaluating Sharepoint (not MOSS) vs ASP.NET as a development platform for an upcoming solution for our team. We will be developing a solution for broad (we hope) deployment across a variety of ...
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
3answers
597 views

When and why should I consider asp.net MVC?

I've noticed a lot of talk about asp.net MVC lately, but I haven't come across a clear or compelling description of when, where or why I would want to use it over WebForms. Let's say I wanted to ...
6
votes
6answers
82 views

Should the UI layer be able to pass lambda expressions into the service layer instead of calling a specific method?

The ASP.NET project I am working on has 3 layers; UI, BLL, and DAL. I wanted to know if it was acceptable for the UI to pass a lambda expression to the BLL, or if the UI should pass parameters and ...
6
votes
3answers
857 views

Models, ViewModels, DTOs in MVC 3 application

I have a web solution (in VS2010) with two sub-projects: Domain which holds the Model classes (mapped to database tables via Entity Framework) and Services which (besides other stuff) are ...
6
votes
6answers
2k views

Should we build our next generation web application on the DotNetNuke platform?

We are currently considering using DotNetNuke as a base for our future portal-based and client-customizable web application that is going to be hosted centrally. The idea is to make the dynamic parts ...
6
votes
5answers
39k views

import csv file/excel into sql database asp.net

I am starting a project with asp.net visual studio 2008 / SQL 2000 (2005 in future) using c#. The tricky part for me is that the existing DB schema changes often and the import files columns will all ...
6
votes
5answers
361 views

What is the best way to implement background services for an ASP.NET application?

My ASP.NET application needs a number of supporting services to run periodically in the background. For example: I need to query the database (or cache) every 1-5 minutes, identify overdue work ...
5
votes
3answers
134 views

What's the difference between declarative and imperative programming?

I read the following paragraphs about architecture from Microsoft .Net: Architecting Applications for the Enterprise, by Dino Esposito and Andrea Saltarello: Whenever you take a declarative ...
5
votes
3answers
227 views

Decision about web application architecture

I am facing a decision about the web application architecture I am going to work on. We are a small team and actually I will work on it alone (everybody work on something else). This application will ...
5
votes
5answers
359 views

What is the difference between domain objects, POCOs and entities?

I was under the impression they are all basically the same. Are model objects also the same? Right now, in my architecture, I have: class Person { public string PersonId; public ...
5
votes
2answers
258 views

How to put ASP.NET site offline if critical services are not available

How would you go about placing the site off-line if the database is down or the database adapter is missing / failed to load / etc.? I am asking in the context of ASP.NET MVC 3 but this can apply for ...
5
votes
4answers
161 views

ASP.NET Web-Application Architectures / Patterns

Does anybody knows good, short and slim tutorials, which describe actual/modern web-application architectures / patterns (especially for ASP.NET based (classic and MVC) applications (maybe also with ...
5
votes
4answers
739 views

Examples of architecturally well-designed ASP.NET WebForms sites

What's an example of a reasonably modern, well-designed, fairly complex ASP.NET webforms site, with source code available? Particularly that use MVP or MVC patterns. Note: I'm not looking for sites ...
5
votes
5answers
1k views

Linq to SQL or the Entity Framework for Enterprise ASP.NET MVC application architecture?

I am still trying to figure out the right architecture for a complex ASP.NET MVC web application. I looked in a lot of example code and everywhere it's done differently. I would really appreciate ...
5
votes
4answers
233 views

Confusion between view logic and domain logic in a ASP.NET MVC Web Application

I am getting confused between domain/application logic and User Interface logic. To illustrate what I am trying to nail down, I will describe an imaginary program below for illustration purposes: ...
5
votes
5answers
275 views

How to save a half-completed form

I am working on a project where we would like to give the user the ability to save their half-completed form so they can come back later and complete it. I'm struggling with figuring out exactly how ...
5
votes
3answers
742 views

What is the advantages and disadvantages of using services over components?

From past few months I am working on projects in latest dot net frameworks. I feel that in latest dot net versions "services" are encouraged over components. Is that correct? I have seen in silver ...
5
votes
6answers
752 views

Addressing scalability ,performance in a .net web application

I'm working on a .net portal which would be having lots of concurrent users. so scalability,performance need to be addressed in the design and architecture. We plan to use load balancing in the ...
5
votes
1answer
392 views

Is WCSF for me?

I have a 3-man .NET web shop. Over the years we've developed a number of tools for content management, blogging, e-commerce, social network, and so on. We've never really modularized the software, ...
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
5answers
2k views

What to use for membership in ASP.NET

I'm not very experienced at using ASP.NET, but I've used built in membership providers for simple WebForms application, and I found them PITA when trying to extend the way they work (add/remove few ...
4
votes
2answers
39 views

MVC architecture - re-using the same viewmodel for reads and edits

Say we have the following (overly simple) scenario: We have a screen to view person details and a screen to edit person details. The screen display person details has the following fields (as ...
4
votes
1answer
70 views

What is proper abstraction using Entity Framework in webforms

I am trying to figure out a good way to architect my solution. I know that I am going to be using the following technologies, Asp.Net Webforms, and Entity Framework 4.1. My EF model is based on an ...
4
votes
1answer
69 views

Which tier of my ASP.NET MVC application should I be checking Membership information?

I have an MVC application which has the (simplified) structure as below (left-to-right) UI -> CONTROLLERS -> SERVICES -> REPOSITORIES -> DATABASE We've attempted to keep each layer decoupled from ...
4
votes
4answers
126 views

Alternatives to NTier architecture for web apps

I was recently discussing with colleagues a push toward disciplined n-tier structure for our web application. It struck me that I couldn't think of any alternative. Is it always the case that one ...
4
votes
2answers
177 views

ASP.net/C# books to create realtime applications [closed]

I want to create realtime applications using ASP.Net C# Is there any .Net books you recommend which have topics on architecting and implementing event based/message based realtime systems? Editted: ...
4
votes
1answer
123 views

ASP.NET Site architecture issue

Due to the nature of the way the website I am working on was designed I have an issue I now must resolve. I will try to write this question as language-independent but the site is done in ASP.Net with ...

1 2 3 4 5 8