2
votes
2answers
281 views
Testing the persistence layer in a DDD/TDD application
If I have the following domain object:
public class Customer
{
public virtual Guid Id { get; set; }
public virtual string Name { get; set; }
public virtual ISet<Order …
