The repository pattern provides a way to provide isolation between the data access layer of your application with the business layer

learn more… | top users | synonyms

4
votes
2answers
49 views

Async/Await in multi-layer C# applications

I have a multi-layered C# MVC4 web application in a high-traffic scenario that uses dependency injection for various repositories. This is very useful because it is easily testable, and in production ...
1
vote
1answer
27 views

Domain driven design child entities change tracking

Im having some difficulty figuring out how will the Aggregate root track changes on child entities let say I have an aggregate: Order (root) OrderLineItem with the Order class being the aggregate ...
0
votes
1answer
38 views

How to avoid parallel trees

In many applications I use the repository pattern and a bunch of classes representing my model. The repository accomplishes reading and writing (CRUD) to a database leveraging my own model objects. ...
2
votes
1answer
53 views
+50

custom membership provider and unity dependency injection

I have found a few questions similar to the one I'm posting but I'm not getting from them what I really need. I'm still struggling to implement my CustomMembershipProvider using Microsoft Unity DI. ...
1
vote
2answers
63 views

Implementing Generic Repository using Entity framework code first

I'm experiencing my first try on implementing Generic Repository Pattern and Unit of framework. I'm not using MVC on the project in hand. Please take a look at this method included in Generic ...
0
votes
1answer
21 views

Simple.Data and unit testing the business layer

I'm thinking of using the Simple.Data package (https://github.com/markrendle/Simple.Data) and thought of an interesting issue in terms of implementation. Simple.Data appears to be designed abstract ...
1
vote
4answers
46 views

How do I populate my domain model from my repository if my properties have private setters?

In the domain core of my application, I have an Order object. It has private setters, since those properties should not be modified willy-nilly, but only within the context of performing one of the ...
1
vote
1answer
27 views

Getting list of heavy aggregates

Suppose we have such an aggregate in our domain that it is stored in table hierarchy three levels deep. Let's denote domain objects as Order-OrderItems-ItemAttributes. Let's also assume that we use ...
1
vote
1answer
35 views

DependencyInjection with a Cache and a Repository that both implement the same interface

So I've encountered a minor conundrum while using Dependency Injection today (using Unity) - I have both a repository and a cache that is backed by that repository. Here is a very basic ...
0
votes
2answers
85 views

Unit of Work, Entity Framework and Core Services

I know similar questions have been discussed several times, but my problem is slightly different, I guess. I'm experimenting with application architecture based on Domain Driven Design, using ...
0
votes
2answers
118 views

using UnitOfWork and Repository Pattern with Entity Framework

I'm gonna to use repository and UnitOfwork in my data access layer to do this take a look at one contact aggregateroot public interface IAggregateRoot { } this is my Generic repository ...
0
votes
2answers
57 views

Does my View Model have my Model and my Repository instance?

Hopefully I am being clear here. I have a ViewModel called A. I have a Model called M. I have a Repository for Model M and the DB stuff it maps to called RM. Would my ViewModel, A, have a Property ...
0
votes
0answers
31 views

Do I still need dynamic proxies if the objects returned never change?

I was trying to create a repository based on Entity Framework 5.0, using TDD. I have created a first test and then added a very simple implementation: using System.Collections.Generic; using ...
0
votes
1answer
51 views

Creating a Data Access Layer with dynamic query building capabilities

I am using Entity Framework in my Data Access Layer and I need to support building dynamic queries through a UI (e.g. (Name == "John" AND Age > 25).TOP(100).ORDERBY(LastName)). I am planning to ...
0
votes
0answers
52 views

EF5 Code First, Repository Pattern using Generic Templates | POCOS using Generic Templates?

I am creating a library that uses EF5 code first (TPH), repository pattern and unit of work. Every example I've see so far that maps out the interfaces for the repository, and codes the POCOs without ...
4
votes
2answers
125 views

Configuring Ninject with Asp.Net MVC & Web Api

i have setup my project with Ninject IoC. My project has regular Asp.Net MVC controllers and Web Api controllers. Now, Ninject works with Web Api but Ninject doesn't work with regular Asp.MVC ...
-1
votes
0answers
48 views

using Linq to return total number of Rows in ASP.NET MVC Controller

I have a class, an interface, and a controller. I am getting Screen entities from a database. I am keeping the persistence logic separate from the domain model entity by using the repository pattern. ...
0
votes
1answer
37 views

How do I get a specific child entity from the parent agg in JPA where there could be many children

I have a 2 part question: I have a root agg that has children entities and there could be a large number of them. I was looking for an efficient way to get a specific one. Right now the only way is ...
0
votes
1answer
89 views

Implement Repository Pattern in Asp.Net MVC with SOA architecture

We have starting new project in our company. We finalize the architecture as follows There are 5 different project as follows 1) BusinessEntities(Class Library) which contains DataContract as ...
0
votes
1answer
40 views

Need help on layering

I am trying to layer my WP app & following MVVM pattern. I have a VM with an ICommand which runs when a button is clicked on View. A click on button now runs a method as pointed by ICommand which ...
0
votes
2answers
90 views

MVC Repository with Unit Of Work, Automapper and Generic Repository

I've been looking at a few blog posts to try and create an appropriate solution for the following requirements but I can't seem to piece them together. Hope fully someone can help. I've been using ...
4
votes
1answer
75 views

Repository Pattern with Caching and SqlMethods

I have a repository interface as below: public interface IDataContext<TId> : IDisposable { IQueryable<T> Repository<T>() where T : class, IEntity<TId>; T ...
-3
votes
1answer
53 views

EF - Repository Unit of Work

Referring to this post IRepository - Entity implementation I've still some doubt. My entities doesn't implement any primary key, neither anything about property to detect some concurrency exception. ...
0
votes
3answers
105 views

MVC Repository pattern with services - how to get errors on DAL?

So I have a method in my service, which I will call from a controller: public void SendMessage(Message message) { message.Property = "Random"; try { // try some insert ...
0
votes
1answer
110 views

How to pass class instance to base class constructor

I am having issues with my Transactions in that they are being escalated to a distributed transaction, which I don't want. From what I read, this is caused by opening multiple connections during the ...
5
votes
5answers
595 views

Proper Repository Pattern Design in PHP?

Preface: I'm attemping to use the repository pattern in a MVC architecture with relational databases. I've recently started learning TDD in PHP, and I'm realizing that my database is coupled much too ...
0
votes
1answer
28 views

Should a unit of work consist of multiple dbcontext

is it a good practice or common scenario that an unit of work implementation contain multiple dbcontext ? if it does, how the commit and rollback can be managed?
0
votes
1answer
85 views

Repository pattern with EF Code First

I am not grasping something when creating my repository pattern with EF Code First. If I want to abstract out EF I would have to make my repository be of type IObjectContextAdapter, no? That is what ...
0
votes
1answer
86 views

Domain driven design, mapper/repository value is hifher/lower than

In a project I am working on we use domain driven design. With this we also use the mapper and repository pattern. Where the mapper are just the crud action, and the repository are look like the ...
0
votes
1answer
23 views

is this generic/non-generic combo repository example mockable?

I read that one of the main reasons for using the unit of work/repository pattern is so that your data access layer can be mocked during unit testing. If that is true then making a repository like ...
0
votes
1answer
49 views

IRepository - Entity implementation

I'm using Repository and UnitOfWork pattern in order to mantain decoupled code and to achieve a simple way to test my application. The inner implementation use EntityFramerowk with DB first and all ...
2
votes
1answer
26 views

How to do branching approach for multiple sites?

I'm new to git and would want to know if this branching approach would be okay for what we intended to do. We'll have three sites prod.websitename.com - live site sandbox.websitename.com - testing ...
0
votes
1answer
48 views

Business Logic Architecture with Entity Framework

I`m using Entity Framework and I have entities like this: public class User : IEntity { [Key] [DatabaseGeneratedAttribute(DatabaseGeneratedOption.Identity)] public int ...
0
votes
1answer
38 views

How to Include objects in entityframework using a repository?

Im fetching a "Paste" from a Repository with the function bellow, but i cant access objects that should be included when i fetch the Paste. (Paste.FilterGroup.Ads). My Repository function: ...
0
votes
0answers
70 views

Implementing the Repository pattern in test environment

I was trying to learn/understand the Repository Pattern and have done the following. Created my Data Layer, adding a Linq to SQL class and dragging a couple of tables. Then created a couple of ...
0
votes
1answer
60 views

Unit of Work, Repositories and IDisposable

I've been looking at implementing these patterns in a project I am working on. The UoW has the database context and then instantiates a number of repositories with that context. My question is to do ...
0
votes
1answer
75 views

Correct (Best) way to register and retrieve Repositories in C#

The project I'm working on has a lot of boilerplate code for passing Repository objects around. The parent object creates a repository, passes it to any utility / helper methods to do some specific ...
-1
votes
1answer
195 views

Sample source for MVC, EF, WCF ,Repository and UOW pattern [closed]

I want to start a MVC project, can you please guide me if you have any sample source available which could be suitable for medium scale application? I want something with MVC with EF,WCF,Repository ...
0
votes
2answers
74 views

In a repository with c#, poco's and ado.net what is best, one class for entire repository or several classes per entity?

I'm creating a repository for my project, actually a subset of it, with c#, poco's and old ado.net (no ORM's). I've several entities and my repository will CRUD those through a DAL. My DAL is ...
3
votes
3answers
1k views

Is repository pattern only to be used with Entity Framework?

I have been using Entity Framework and the repository pattern for some time now. I was asked the other day to write a data layer without using Entity Framework, just plain old ADO.NET. I was ...
0
votes
0answers
44 views

Two model classes in one repository, is it good solution?

I have two model classes: public class Event { public int eventId {get; set;} .... } public class Tickets { public int ticket {get;set;} ..... public int eventId {get; set;} ...
0
votes
1answer
100 views

Unable to Update Many to Many Relationship. Entity Framework Code First

I am trying to update a many to many relationship that I have setup in Entity Framework using Code First. I've created the following Models. [Serializable] public class ClientFormField : FormField { ...
0
votes
0answers
124 views

Entity Framework, WPF, validation of single entity

I am new to entity framework and WPF. Having read quite a bit I am trying to implement the MVVM pattern along with the Repository pattern. The problem I have is around validation. On my types ...
0
votes
1answer
44 views

How to pull in data from another table in repository or in automapper?

I am essentially am trying to find a clean way to pull in data from another table. Below is a simplified version of my model. My goal is to put the platform name in the userplatform. I would like ...
0
votes
1answer
37 views

Saving Model is cascading update when I only want the main model updated

I am using C# Web API and I am using the repository standard to save to the database. Below is a shortened example I am using to update the database. So I use automapper to flatten between user to ...
2
votes
1answer
117 views

translate this into a generic repository pattern

I have started translating a project into a generic repository and unit of work pattern. So far I have been able to reverse engineer all direct context references in the controllers to a generic ...
1
vote
2answers
69 views

what should CRUD (Insert and Update) functions return ?

I could return nothing .. I could return true/false to show if there are any problems.. I could return an int being the primary key of what was inserted or updated.. I could create a custom object to ...
0
votes
3answers
122 views

Projections from Repository in classic and DDD perspective

I would an opinion about how you see the Repository pattern. In the "old" Domain conception (for example from P of EAAA) the repository should be like an "in memory collection", so it should returns ...
0
votes
1answer
106 views

Repository pattern's answer to complex / non-model specific queries (i.e. reporting / aggregate data)

I've been reading up on the Repository Pattern and struggling to find a solid answer on how people approach situations where the data returned isn't just your standard models (i.e. NOT Customer 1..* ...
0
votes
1answer
240 views

How to unit test a repository pattern that uses Entity Framework?

I'm currently trying to unit test a repository I made through Entity Framework: What I want to happen is that test the repository without actually sending/connecting to the actual database, I want to ...

1 2 3 4 5 26