0
I’m trying to ignore a class property for mapping with Fluentnhibernate and I’m not getting it. I’m trying to follow this example link. How to do this ?
trying to.
public class Caixa {
public virtual long id { set; get; }
public virtual DateTime dtOcorrencia { set; get; }
public virtual String historico { set; get; }
public virtual int tipoOcorrencia { set; get; } //1 entrada, 2 saida
public virtual decimal valorOcorrencia { set; get; }
public virtual FormaPagamento formaPagto { set; get; }
//ignorar propriedade
public IList<Caixa> report = new List<Caixa>();
public Caixa () {
}
public IList<Caixa> getReport() {
return report;
}
}
Map
public class CaixaMap : ClassMap<Caixa> {
public CaixaMap() {
Table("CAIXA");
Id(c => c.id).GeneratedBy.Native();
Map(c => c.dtOcorrencia).CustomType<DateTime>();
Map(c => c.historico);
Map(c => c.tipoOcorrencia).CustomType<int>();
Map(c => c.valorOcorrencia).CustomType<decimal>().Precision(15).Scale(2);
Map(c => c.formaPagto).CustomType<GenericEnumMapper<FormaPagamento>>();
Map(c => c.report); //ignorar
}
}