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

1
vote
3answers
16 views

Return single entity selected by ID from a Service using Repository pattern

I'm working on ASP.NET MVC3 application. I want to make a method in my service that will return only the entity with the id that I provide from the place I call the method. In my service which is ...
0
votes
0answers
28 views

Change return type of ADD and UPDATE in repository pattern

We have implemented repository patter with unit of work in our project to communicate with our data store which is currently SQL server. Now we want to change the return types of the ADD and UPDATE ...
0
votes
0answers
8 views

Sorting a collectin of objects based on date and retrieving the last 10 items

I have just started working with collections and have a repository of videos: public List myVideos = new Repository(dbcontext); These videos have an uploaded date so I want to display the last 10 ...
0
votes
1answer
30 views

DDD/CQRS confusion regarding ReadModels and the Domain

So after much reading I've now come to the realization that complex reporting functions do not belong in your typical Repository and that there needs to be some kind of dedicated "Finder" which ...
1
vote
2answers
38 views

DDD: Confusion about repository/domain boundaries

My domain consists of Products, Departments, Classes, Manufacturers, DailySales, HourlySales. I have a ProductRepository which facilitates storing/retrieving products from storage. I have a ...
0
votes
1answer
36 views

Domain Models - Designing the model

Regarding domain driven design: I have domain models, repositories and services. My questions is regarding the modelling of the domains. For instance, I have a database table with Employee, ...
0
votes
1answer
32 views

RX: How to concat a Snapshot stream and an Update stream?

I've been trying to create an observable which streams a state-of-the-world (snapshot) from a repository cache, followed by live updates from a separate feed. The catch is that the snapshot call is ...
0
votes
0answers
18 views

IXRepository and test problems

Recently had a doubt about how and where to test repository methods. Let the following situation: I have an interface IRepository like this: public interface IRepository<T> where T: class, ...
1
vote
0answers
34 views

EF Include method doesn.t result

I create Asp.Net Mvc4 application with Code First EF. I create my model, and now I want get relational info from Database. I write get method for this info as follow: public ...
0
votes
2answers
54 views

Domain driven design: overriding virtual methods in Domain classes

My application is broken down into several assemblies. The MyProject.Infrastructure assembly contains all of the Domain objects such as Person and Sale as well as interfaces repositories such as ...
0
votes
1answer
37 views

Changing entity framework default connection strings used by DbContext at runtime

I have a program using entity framework, and depending on which computer it is run on, it will either connect to a remote database over the network or a local database on the local filesystem. With ...
1
vote
1answer
55 views

Onion Architecture - Can model service refer another model Service?

I am developing a ASP.NET MVC application following the Onion Architecture. I would like to know the ModelServices in the Core can refer another ModelService? The ModelServices are concrete ...
0
votes
1answer
48 views

Entity Framework, Repository Pattern, Update in Detached Scenario

I'm trying to update an object graph that contains ICollection of modified/added/deleted entities in a detached scenario (short lived context), using EF 5.0? I have something like this: Visit ...
0
votes
1answer
41 views

Entity framework not getting data (Maybe Unit of Work doesn't work)

I have One to Many connection between message thread and messages. And I noticed smth. strange when I try to display messages for message thread. For example there are 5 messages in thread (I've ...
0
votes
1answer
44 views

Unity and Repository pattern

Hi I am using a UOW and Repository pattern in my project and I have created the following code: // Interfaces public interface IUnitOfWork : IDisposable { IGenericRepository<Company> ...
0
votes
2answers
71 views

What are alternatives to using IQueryable<T> in Repository Pattern?

I am ASP.NET MVC newbie (but .NET experienced dev) and I am trying to learn how to properly set web application infrastructure. Repository pattern is what I am copping these days and after reading ...
0
votes
0answers
39 views

Proxy on data agnostic models

I am at the very beginning of a project (MVC and maybe SPA). I use Dapper and i have implemented my own Repositories and Unit of Work. *Some of us don't really like a full featured ORM (EF, ...
1
vote
2answers
59 views

Entity Framework Unity of Work and Repository pattern

I'm trying to implement UoW and Repository pattern, but I get error An entity object cannot be referenced by multiple instances of IEntityChangeTracker. I know that I get that error because I have ...
0
votes
0answers
29 views

Calling a Service layer from a base class with no access to a repository

Not sure if this should be posted here or on the Programmers sister site MVC4 solution using AutoFac for ORM. I have a series of controllers which inherit from a basecontroller class. We have a DB ...
1
vote
3answers
70 views

Repository pattern and service layer implementation

I'm using the generic repository and unit of work pattern for my mvc4 website. Now I have the situation, that I want to delete a user of my system. In the delete code I must delete some more entries ...
2
votes
3answers
93 views

Generic Repository Pattern have repetition of code so what will be benefit?

I am understanding repository pattern in c#. I am confused when i study about generic repository pattern. There is lot of repetition in it. i have some question about this pattern. I am using Entity ...
0
votes
1answer
87 views

StructureMap select multiple constructor on GenericRepository

I'm using GenericRepository pattern from https://github.com/huyrua/efprs. I just want to select constructor with DbContext as parameter. I know there's duplicate question, but solution from this ...
0
votes
1answer
36 views

Proper way to dependency inject authenticated user to my repository class

I am using a service layer with repository pattern. The controller has a dependency on the service layer, and the service layer has a dependency on the repository. I have to pass logged in user ...
2
votes
1answer
106 views

Best approach to designing DAL with ADO.NET for MVC 3 application?

I see a ton of examples for MVC DAL with entity framework, but nothing for ADO.NET and stored procedures? There seems to be a trend on the "Repository" pattern and "UnitofWork" for creating a DAL, ...
0
votes
2answers
49 views

What is the correct way to unit test this simple function (using EF 5.0) or does it make sense to unit test?

I have spent some time trying to understand the topic of unit testing as it relates to using EF 5.0/DbContext. The function below is the one to unit test. From my basic understanding it seems I have ...
0
votes
2answers
76 views

How to make a repository for class with <T> in EF

I have a simple class: public class TestClass<T> { public int ID { get; set; } public T Value { get; set; } } Is is possible to use EF Code First and Repository pattern to save this ...
0
votes
0answers
64 views

Insert Record in Many to Many relationship using generic repository

I have many to many relationship between doctor and clinic entities and also i am using unit of work generic Repository pattern. When i try to insert new doctor record i need to select multiple or ...
5
votes
2answers
119 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
57 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
45 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. ...
4
votes
1answer
140 views

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. ...
2
votes
2answers
260 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
29 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
75 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
38 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
44 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
128 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
611 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
64 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
38 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
92 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
136 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
372 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 ...
0
votes
1answer
57 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
148 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
43 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
172 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
94 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
79 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
128 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 ...

1 2 3 4 5 27