0
I have the following scenario:
public class ExemploDTO
{
public virtual int Id { get; set; }
public virtual List<PessoaDTO> Cliente { get; set; }
public virtual ServicoDTO Servico { get; set; }
}
How would the mapping of this class using:
NHibernate.Mapping.ByCode.Conformist
or Fluentnhibernate
http://answall.com/questions/22354/como-usar-o-fluent-nhibernate-apropriadamente?rq=1
– Malkaviano