I have records in my table but my xaf listview is empty.
I have identified that the problem is in my model because if I remove this field from the model then I see the records
public bool ExcludeFromPrioritizeByDueByDate { get; set; }
I have tried using a different name
Code[Column("ExcludeFromPrioritizeByDueByDate")]
public bool ExcPByDueByDate { get; set; }
but it does not help.
I have also tried using the fluent configuration
Codepublic class JobListConfiguration : EntityTypeConfiguration<JobList> {
public JobListConfiguration()
{
Property(x => x.ExcPByDueByDate).HasColumnName("ExcludeFromPrioritizeByDueByDate");
}
}
I am unsure whether the issue is Entity Framework or XAF
I have Cross posted to Stack Overflow