Tagged Questions
The separation-of-concerns tag has no wiki summary.
26
votes
3answers
3k views
How to map View Model back to Domain Model in a POST action?
Every article found in the Internet on using ViewModels and utilizing Automapper gives the guidelines of the "Controller -> View" direction mapping. You take a domain model along with all Select ...
20
votes
7answers
2k views
MVC: Data Models and View Models
I've read some MVC advice in the past regarding models stating that you should not reuse the same model objects for the domain and the view; but I haven't been able to find anyone willing to discuss ...
18
votes
6answers
994 views
How strictly do you follow the n-tier architecture and separation of concerns between the layers in your projects?
I suppose most of the developers have an idea of multi-layer architecture. We have DAL (Data access layer), we have BLL (business logic layer) and somewhere near the end of the road we have our UI. If ...
16
votes
19answers
1k views
When can a design pattern make your software worse?
When can a design pattern make your software worse?
I have seen a program where they used the facade pattern between the GUI and logic. They considered that no objects may be transported over this, ...
11
votes
2answers
343 views
Does validation in CQRS have to occur separately once in the UI, and once in the business domain?
I've recently read the article CQRS à la Greg Young and am still trying to get my head around CQRS.
I'm not sure about where input validation should happen, and if it possibly has to happen in two ...
10
votes
2answers
2k views
What to put in your ViewModel
And what do you put in your View?
A recent blog from Scott Hanselman about using a special model binder for easier testing led me to think about the following:
What do you put in your controller ...
9
votes
2answers
377 views
How do you keep application logic separate from UI when UI components have built-in functionality?
I know it's important to keep user interface code separated from domain code--the application is easier to understand, maintain, change, and (sometimes) isolate bugs. But here's my mental block ...
...
8
votes
8answers
935 views
Preferred way to combine PHP and HTML?
I learned PHP by hacking away at phpBB2, even submitting a few mods to their database, which others downloaded and used. (I don't believe phpBB2 is supported any more with phpBB3 out so long now, so ...
7
votes
4answers
441 views
Approaching refactoring
I have a very data-centric application, written in Python / PyQt. I'm planning
to do some refactoring to really separate the UI from the core, mainly because
there aren't any real tests in place yet, ...
6
votes
1answer
202 views
How to tell Ninject to bind to an implementation it doesn't have a reference to
I'm using NinjectMVC3 in my ASP.NET MVC3 project.
I have 3 layers
Foo.Web
Foo.Services
Foo.Data
Foo.Web references Foo.Services but not Foo.Data. One of my services looks like this
public class ...
6
votes
3answers
267 views
Does Queryability and Lazy Loading in C# blur the lines of Data Access vs Business Logic?
I am experiencing a mid-career philosophical architectural crisis. I see the very clear lines between what is considered client code (UI, Web Services, MVC, MVP, etc) and the Service Layer. The ...
6
votes
1answer
181 views
How much directory separation should my framework have?
Hey guys, just a small question here.. (hopefully!)
I've been trying a bunch of different directory structures for my PHP MVC framework. While doing this, I thought of a few reasons to separate ...
6
votes
5answers
1k views
ASP.NET MVC - separating large app
I've been puzzled by what I consider a contradiction in terms: ASP.NET MVC claims to be furthering and supporting the "separation of concern" motto, which I find a great idea.
However, it seems ...
6
votes
1answer
1k views
Separation of Concerns the Repository Pattern & Entity Framework 3.5
I'm trying to be a better developer...
What I'm working with:
.Net MVC Framework 1.0
Entity Framework 3.5
I've been doing some reading and I think what i want to do is:
Create a repository for ...
6
votes
5answers
745 views
Difference between Single Responsibility Principle and Separation of Concerns
What is the difference between Single Responsibility Principle and Separation of Concerns?
6
votes
6answers
224 views
Where to put functions that help me execute controller tasks?
I'm currently working on an ASP.net MVC web site project.
I've put all database related stuff in my model, such as queries and update/delete/save functions.
I also created a couple of controllers ...
6
votes
3answers
368 views
Domain Driven Design, SOC, and entity identification
I've been trying to wrap my mind around DDD and how it can relate to MVC, but I'm having trouble with regards to entity identification.
In particular, I'm trying to maintain strict separation between ...
5
votes
2answers
195 views
MVC and NOSQL: Saving View Models directly to MongoDB?
I understand that the "proper" structure for separation-of-concerns in MVC is to have view-models for your structuring your views and separate data-models for persisting in your chosen repository. I ...
5
votes
4answers
191 views
Where does my CRUD LINQ Code Go? ASP.NET MVC
I am currently using the ASP.NET MVC framework on a project (pretty much my first time)
I am using Linq2SQL as my data model..
Where should i have this kind of code:
var entries = from e in ...
5
votes
1answer
105 views
Separation of Concerns when adding new types
I have a system I've been working on this week where I'm having a hard time balancing separation of concerns with easy extensibility. I'm adding new types to the system, and it feels like shotgun ...
5
votes
6answers
559 views
ASP.NET: Code behind or no code behind?
Why would anyone want to not use a code behind file so that server sided code is separated from markup? Wasn't that supposed to be one of the advantages of .NET over classic ASP?
Personally, I think ...
5
votes
2answers
280 views
ViewModels and rendering
In several sample projects, I've seen ViewModels being used to convert data objects into strings, for use in the View.
The ViewModel will typically have a constructor that receives one parameter - a ...
5
votes
5answers
842 views
Ruby on Rails with Repository Pattern?
After working with ASP.Net MVC, it has me thinking about Rails. I worked with Rails prior, but am a little rusty. ASP.Net MVC tutorials recomment hiding data layer implementation with the repository ...
5
votes
4answers
180 views
What's the best way to separate concerns for this code?
In a previous question one of the comments from Dr. Herbie on the accepted answer was that my method was performing two responsibilities..that of changing data and saving data.
What I'm trying to ...
5
votes
3answers
736 views
ASP.NET MVC - Solution Layout Suggestions
I have been working with ASP.NET MVC for a couple of months now and I'm still not happy with the layout of my project's solution. I am trying to construct a mid-sized website CMS that is as portable ...
5
votes
1answer
311 views
Repository Pattern and layering. Where do I apply security?
I am doing my best to design my web app with good separation between the layers. I am using the repository pattern and as such have a SQLObjectRepository which is called by my ObjectService which is ...
4
votes
3answers
207 views
What does N-tier Architecture means nowaday?
In a traditional sense, N-tier means separating the application into "tiers" and putting each "tier" on different servers. This was done for at least 3 reasons:
Maintenance:
a) Code Maintenance: ...
4
votes
2answers
109 views
Domain Driven Design - where does data parsing belong
In this application I'm developing, the domain revolves around, say, electrical appliances. There are several specialized versions of this entity. Appliances can be submitted to the application, and ...
4
votes
1answer
763 views
How does Clojure aproach Separation of Concerns?
How does Clojure aproach Separation of Concerns ? Since code is data, functions can be passed as parameters and used as returns...
And, since there is that principle "Better 1000 functions that work ...
4
votes
3answers
180 views
How to avoid declaring database fields twice, once in database, once in a repository/model?
I recently began reading Pro ASP.NET MVC Framework.
The author talks about creating repositories, and using interfaces to set up quick automated tests, which sounds awesome.
But it carries the ...
4
votes
3answers
397 views
MVVM what part of pattern responsible for grouping of datagrid
I've been tinkering around with the MVVM pattern and now I'm trying to implement a little application based on it.
This application has a datagrid in which, surprisingly enough, some data is ...
4
votes
2answers
434 views
ASP.NET MVC Web Controls - good or bad
What are your opinions on using web controls in an MVC context?
I came across a good discussion here http://odetocode.com/Blogs/scott/archive/2009/04/09/asp-net-mvc-controls-and-good-versus-evil.aspx ...
4
votes
8answers
452 views
Where to put restrictions on entities when separating Business layer from Data Layer
I am attempting to create the the business and data layers for my big ASP.NET MVC application. As this is the first time for me attempting a project of this scale I am reading some books and trying ...
4
votes
2answers
314 views
How do you keep your Domain Logic seperate from DB/Persistence Logic with Linq-2-Sql?
I'm trying to get at the best way to seperate the concerns of my domain logic and my persistence logic. I'm using Linq-2-Sql for the data access and I've been following the NerdDinner tutorial. If you ...
4
votes
4answers
766 views
Most Correct way to redirect page with Model-View-Presenter Pattern
What is the best way to call a Response.Redirect in the Model-View-Presenter pattern while adhering to correct tier separation?
4
votes
2answers
147 views
Who's responsibility is it to encode a string?
Who's responsibility is it to encode a string, the model or the view?
I've a string from a database, it's come from the user - I want to keep as a much information as possible in the database, so I'm ...
4
votes
4answers
1k views
Asp.Net MVC Actions - Separation of Concerns/Single Responsibility Principle
In computer science we've been taught that each method should do one thing and one thing only. I'm a little confused then that we see MVC actions like the following given as examples of good practice:
...
4
votes
1answer
251 views
Displaying polymorphic classes
I have an existing app with a command-line interface that I'm adding a GUI to. One situation that often comes up is that I have a list of objects that inherit from one class, and need to be displayed ...
3
votes
3answers
272 views
Place client-side JavaScript templates in HTML or JavaScript?
Should client-side templates like the following (using underscore's templating engine):
<p class="foo"><%= bar %></p>
be placed in an separate HTML file, or a separate JavaScript ...
3
votes
2answers
71 views
Is there a neat way to get attribution for a background image in the presentation layer?
I have a CC-BY image that I'm using as a background, brought in by CSS. This image is purely there for its looks, and definitely not content. I need to put attribution on this image somewhere, and ...
3
votes
2answers
168 views
What's the intent of the Rollback method in the Unit of Work pattern?
As I understand it, a UnitOfWork class is meant to represent the concept of a business transaction in the domain. It's not directly supposed to represent a database transaction, which is a detail of ...
3
votes
3answers
121 views
Proper Repository Design, Attaching one Object to Another
In my attempt to keep with a good Repository/IoC Design, I am trying to figure out the best approach the current problem.
There are two objects, Member, and Character.
Basically, one Member can have ...
3
votes
3answers
154 views
Does this Rails 3 Controller method make me look fat?
This is a new application, and I have an index method on a Search controller. This also serves as the home page for the application, and I'm trying to decide if I am headed down the wrong path from a ...
3
votes
3answers
303 views
Where should 'CreateMap' statements go?
I frequently use AutoMapper to map Model (Domain) objects to ViewModel objects, which are then consumed by my Views, in a Model/View/View-Model pattern.
This involves many 'Mapper.CreateMap' ...
3
votes
3answers
524 views
Rhino Mocks, Dependency Injection, and Separation of Concerns
I am new to mocking and dependency injection and need some guidance.
My application is using a typical N-Tier architecture where the BLL references the DAL, and the UI references the BLL but not the ...
3
votes
3answers
200 views
How to explain to someone that a data structure should not draw itself, explaining separation of concerns?
I have another programmer who I'm trying to explain why it is that a UI component should not also be a data-structure.
For instance say that you get a data-structure that contains a record-set from ...
3
votes
2answers
140 views
Object Construction at Client or Business Layer?
Something I've noticed from looking at multiple .NET starter kits is that business object construction is often handled at the client level. Then, the business object is passed to the business layer ...
3
votes
5answers
207 views
Performance implications with 'clean code'
At my workplace we're planning a major refactor on our core product, a web application with several 'modules'. I quoted that because that's one of our main concerns: modules are not really modules, ...
3
votes
2answers
387 views
Refactoring a legacy WebForms app to better separation of concerns
i.e. Is MVP still the next best choice when MVC is not an option?
I thought I'd ask this here as I'm sure there are others like me who don't have the luxury of being on a green-field project and want ...
3
votes
4answers
432 views
MVC - is it just a 3 tier model?
Just began researching mvc, and am not sure I grasp it yet. From what I gather it seems like an implementation of a 3 tier solution ie Model corresponds to DAL, Controller to business logic layer, ...