Say you have these two classes. public class Author { public int ID {get; set;} public string Name{get; set;}
I am looking for a simple IRepository interface for my mvc web application, I have done a lot of searching a开发者_如何转开发round, and there are as many opinions as there are people.
I\'m just starting out with DDD and have built a repository pattern using EF code first which so far is working very well. Now say I have an aggregate root call Animal which has an entity called Statu
Say I\'ve got two simple entities: User and Review. How bad is it if User calls the Review repository? What is the \"clean\" way for the User to get its Reviews?
I have searched in my books and in the Internet answer to my question but I didn\'t finded. Maybe you could help me.
I am trying to implement search functionality on a list of customers, the functionality is detailed in this tutorial on the Asp.Net site,
I am using entity framework for my project with MVC as front end and I have implemented unit of work pattern with repository pattern.
So I want to create a login page where when you enter your login credentials as a admin you get acces. If you are not a admin you get redirected back to the login page. In my database I have a field o
This forms part of a series based around me getting my head around DDD :) Following on from a previous question, but the background knowledge is not needed: System consuming WCF services from another
I am trying to get my head around where the aggrega开发者_开发百科tes roots lie in my entity framework data model so I know what repositories I need to create.