Repository pattern - Switch out the database and switch in XML files. Hello I have an asp.net MVC 2.0 project and I have followed the Repository pattern.
I am developing a Database File System. I am using - .Net framework 3.5 Entity Framework 3.5 WPF with MVVM pattern
Is there any way or design pattern can I use to get Generic CRUD operations? BecauseI’m working on n-tire applica开发者_StackOverflow社区tion using EF in the data layer and I don’t want to use CRUD
I am using Repository factory for visual studio 2008 for a personal project. It generated a class called ProductRepository which inherits from Repository<Product>.
Is it possible to use something like this wrapper with fluent configuration? http://jeffreypalermo.com/blog/use-this-nhibernate-wrapper-to-keep-your-repository-classes-simple/
I am working on an existing ASP.NET MVC app that started small and has grown with time to require a good re-architecture and refactoring.
I recently posted a question which was answered by Bryan Watts, regarding generic repository for开发者_如何学C nHibernate.
I\'m currently developing a medium sized application, which will access 2 or more SQL databases, on different sites etc...
We have a complex aggregate (sensitive names obfuscated for confidentiality reasons). The root, R, is composed of collections of Ms, As, Cs, Ss. Ms have collections of other low-level details. etc et
I have the following pseduo code in some Repository Pattern project that uses EF4. public void Delete(int someId)