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 map this class using:
NHibernate.Mapping.ByCode.Conformist
or Fluentnhibernate