Tagged Questions
0
votes
2answers
2k views
Service Layer, Repository Layer and Entity Framework
I'm designing a layered architecture (all layers are on same machine) with using Entity Framework (POCO entities), to use same layers with an ASP.Net MVC application, mobile application, etc; also to ...
1
vote
2answers
333 views
Repository pattern without domain object for retreiving scalar values
Recently, I struggled trying to figure out if some methods, functions in my architecture was at the good place; in the correct layer. I want to follow the repository pattern of Martin Fowler to ...
1
vote
1answer
101 views
separation of concern with repository pattern
I have a question regarding location of repository access. Is it acceptable practice to allow or contain Repository access within an Entity that the Repository Maintains?
For example:
class Product
...
3
votes
3answers
166 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 ...
0
votes
2answers
121 views
pass parameter to repository while maitaining separation of concerns
I'm new to mvc and this whole way of programming is pretty unfamiliar for me, so be gentle ...
I have in my article repository:
public IQueryable<Article> GetArticles(int? category, int? ...
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
2k 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 ...
6
votes
1answer
429 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 ...