Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

12
votes
3answers
523 views

Am I using IRepository correctly?

I'm looking to use the IRepository pattern (backed by NHibernate, if it matters) in a small project. The domain is a simple one, intentionally so to allow me to focus on understanding the IRepository ...
10
votes
3answers
4k views

Are we all looking for the same IRepository?

I've been trying to come up with a way to write generic repositories that work against various data stores: public interface IRepository { IQueryable<T> GetAll<T>(); void ...
3
votes
1answer
150 views

What's the correct way to instantiate an IRepository class from the Controller?

I have the following project layout: MVC UI |...CustomerController (ICustomerRepository - how do I instantiate this?) Data Model |...ICustomerRepository DAL (Separate Data access layer, references ...
3
votes
1answer
896 views

concrete sense of IRepository<T> vs Repository if I do not do unit tests with mocks

I have this: public interface IRepository<T> where T : class { void Delete(T entity); void Add(T entity); void Attach(T entity); void Detach(T entity); void SaveChanges(); } ...
3
votes
1answer
2k views

How To Write CRUD Unit Tests for Moq and Linq-to-Sql

I am just getting involved in Moq and unit testing, so forgive me if this seems obvious (a quick search through SO didn't show me anything like this). I have an interface with the following proposed ...
2
votes
3answers
580 views

How can I use Expression<T> in NHibernate?

I have read the very good blog post of Rob Conery Crazy Talk: Reducing ORM Friction How can I generalize this interface so I can implement it with NHibernate? using System; using ...
1
vote
1answer
55 views

MongoDB IRepository db Connections

This is what I have so far with regards to my IRepository for MongoDB and was wondering whether or not I'm on the right lines? public abstract class Repository<TEntity> : ...
1
vote
1answer
73 views

Can Wcf service contract also be used by others(nhibernate asp.net)

I was wondering about if wcf would be kinda break down if mixed in with IRepository because 2 different sources are going to be using the same contract: - 1 being used by WCF - another by Asp.net ...
1
vote
2answers
162 views

Repository and Immutable objects?

I may be doomed by an impedence mismatch, but I'm trying to reconcile examples I've seen for IRepository and immutable objects. I'm working on a cataloging application where hundrds of web requests ...
1
vote
3answers
829 views

IRepository confusion on objects returned

I have some e-commerce code that I use often that uses Linq To SQL for saving orders to the database. I want to remove the tightly coupled Linq to SQL bit and pass in an IRepository instead but I am ...
0
votes
1answer
112 views

How to manage connections when using DbModelBuilder in Entity Framework?

I am writing an IRepository and IUnitOfWork wrapper for an EF4 Fluent schema. In this design, a DbCompiledModel is created once per application lifecycle (Like an NHibernate ISessionFactory). The ...
0
votes
1answer
9 views

Supporting ad-hoc queries in a multi-tiered application

Is there a standard design pattern or approach that will support ad hoc queries in a multi-tiered application? Some motivation for this question: In my current project, we are using the ...
0
votes
0answers
19 views

Json.net and IRepository

Is there a way to use Newtonsoft's Json.net library to serialize/deserialize objects that have properties that map to underlying IRepositorys? From what I've seen so far, the Json.net Serializer ...
0
votes
1answer
118 views

Multiple partial views on one main asp.net

trying to put a strongly typed partial view on a homepage in asp.net but it wont seem to work it, here is my code new to asp.net and partial views. Controller : public ActionResult ...
0
votes
3answers
238 views

C# Shared Transactions and NHibernate using IRepository

I'm looking into implementing the IRepository pattern using NHibernate and I have question that I've not been able to answer searching the net. Assume I have 3 Repositories, PersonRepository, ...
0
votes
1answer
220 views

IRepository<T> and Repository-Per-Entity

I'm changing the architecture of an enterprise accounting application. i'm going to use the IRepositoy<TDataModel> pattern but with a little difference. i'm going to make an interface for every ...
0
votes
2answers
369 views

What's the Oracle equivalent of System.Data.Linq.DataContext?

I am implementing the IRepository interface against an Oracle database. public interface IDinnerRepository { IQueryable<Dinner> FindAllDinners(); IQueryable<Dinner> ...
0
votes
1answer
103 views

IRepositories Join in Subsonic

Hi i'm stuck with this doubt: How do I make i Join with 2 IRepositories? look my controller... public ActionResult Colaboradores(int baseid) { IRepository<Colaborador> _repocolab ...