2
votes
2answers
278 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 …
12
votes
NHibernate.MappingException: No persister for:
Sounds like you forgot to add a mapping assembly to the session factory configuration..
If you're using app.config...
.
.
<property name="show_sql">true</proper …
