Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

21
votes
11answers
2k views

What Alternatives Are There to Model-View-Controller?

While going through university and from following the development of SO, I've heard a lot about the Model-View-Controller architectural design pattern. I inadvertently used the MVC pattern even before ...
11
votes
8answers
4k views

Is MVC a Design Pattern or Architectural pattern

According to Sun and Msdn it is a design pattern. According to Wikipedia it is an architectural pattern In comparison to design patterns, architectural patterns are larger in scale. (Wikipedia ...
11
votes
5answers
3k views

Transactions in the Repository Pattern

How do I encapsulate the saving of more than one entity in a transactional manner using the repository pattern? For example, what if I wanted to add an order and update the customer status based on ...
5
votes
1answer
110 views

How robust is the Project Silk type architecture for data heavy LOB apps?

Project Silk looks good for social networking applications where there are streams of frequently updated data that need to appear in a dashboard style presentation. I would like to ask if such an ...
5
votes
3answers
113 views

Pattern/Library for sending objects over network, keeping pointers

Let's say you have a Client and a Server that wants to share/synchronize the same Models/Objects. The models point to each other, and you want them to keep pointing at the same object after being ...
4
votes
6answers
614 views

OOPS (Design Patterns)

hey, hi i want put limit on object creation means a class can have at most suppose 4 objects not more than that how to achieve this?
3
votes
2answers
62 views

Time delays and Model View Controller

I am implementing a turn based game, there are two sides and each side has several units, at each specific moment only one unit can move across the board. Since only one unit can move at a time, ...
3
votes
4answers
219 views

What is the difference between an Abstraction and a Facade?

What is the difference between an 'Abstraction' and a 'Facade'? Is there a difference at all? Or are the terms interchangeable?
3
votes
3answers
2k views

Query object implementation examples

Can anyone recommend good tutorial, implementation or sample code on Query object pattern usage, in C#(Java...)? I haven't found much with google.
2
votes
1answer
338 views

MVCS - Model View Controller Service

I've been using MVC for a long time and heard about the "Service" layer (for example in Java web project) and I've been wondering if that is a real architectural pattern given I can't find a lot of ...
2
votes
1answer
151 views

How to evade writing a lot of repetitive code when mapping?

I have a data access layer (DAL) using Entity Framework, and I want to use Automapper to communicate with upper layers. I will have to map data transfer objects (DTOs) to entities as the first ...
2
votes
4answers
161 views

What design-pattern do you use, and what is it good for?

I know about the Gang of Four and some of their patterns such as the Façade, the Factory, the Singleton and some others. Besides, it happened that I see multiple patterns which I don't know of, ...
1
vote
7answers
109 views

What design pattern to use when I want only some derived classes to have access to a method in base class?

I have a unique problem/situation here. Trying to make it as simple as possible. I have a base class (say Parent) and a whole bunch of derived classes (say Child1, Child2 ..ChildN) directly deriving ...
1
vote
2answers
134 views

Active Records vs. Repository - pros and cons?

Using ActiveRecord you might define a class like this: class Contact { private String _name; public String Name { get { return _name; } set { if (value == ...
1
vote
5answers
75 views

location of interfaces dilemma

Given a code project which is supposed to adhere to the SoC principle by implementing loosely coupled layers, having an IoC container, etc., for example, a simple ASP.NET MVC solution which is ...
1
vote
2answers
157 views

Web Applications: Allowing super users to impersonate other users - Is there a design pattern for this?

In my web application, I'd like to allow super users to impersonate other users. My Question: Is there a generally accepted design pattern that I could use to make this happen? Generally ...
0
votes
1answer
13 views

Pipe and Filter, clarification needed

Few questions on Pipe and Filter. In this example, as illustrated on the image above, when implemented: Should each Pipe be running in a separate thread? Should each Filter be running in a ...
0
votes
1answer
32 views

Amazon SQS: how to find end of job?

Let's say I have a lot of jobs and every job consists from a big number of some elementary operations that many worker applications work upon. I send a message for every operation to workers, so they ...
0
votes
0answers
183 views

What is the different between MVC 1 and MVC 2? [closed]

Can you briefly explain the different between MVC 1 and MVC 2 architecture?. I don't want very simple or cut and paste answer. I need very in-depth. i.e the core different and also the supporting ...
0
votes
2answers
194 views

Design Pattern(S) Command or Factory Which is Better to implement?

We can solve some Design Problems By implementing Factory as well as Command Pattern also. so, according to performance which is the better one?
0
votes
1answer
150 views

Naming conventions for a project containg only WCF ServiceReferences?

Let's say we have a back-end that needs to talk to N external systems using some kind of Web Services. What I do is: Create a separate project and generate there the proxy classes (using the ...