有记录时,XAF Listview为空

时间:2019-05-01 00:02:11

标签: sql-server entity-framework-core xaf

我的表中有记录,但是我的xaf列表视图为空。

我已经确定问题出在我的模型中,因为如果我从模型中删除此字段,那么我会看到记录

public bool ExcludeFromPrioritizeByDueByDate { get; set; }

此字段在表格中。

我尝试使用其他名称

   [Column("ExcludeFromPrioritizeByDueByDate")]
   public bool ExcPByDueByDate { get; set; }

但没有帮助。

我也尝试过使用流畅的配置

public class JobListConfiguration : EntityTypeConfiguration<JobList>
{
    public JobListConfiguration()
    {
        Property(x => x.ExcPByDueByDate).HasColumnName("ExcludeFromPrioritizeByDueByDate");

    }
}

我不确定问题是实体框架还是XAF

我有cross posted to Dev Express

1 个答案:

答案 0 :(得分:0)

根据Anatol的回答

事实证明我误输入了列名。 没有在日志文件中选择 但是,使用SQL Server Profiler显示查询失败。