我的问题如下:我有一个使用实体框架的“salesTable”数据网格,我用这段代码加载数据网格:
salesDataGrid.ItemsSource = _db.salesTables.ToList();
salesTable 的列之一是 customerId,它是 customerTable 的外键,现在我想在数据网格中显示 customerName 而不是 customerId,但我不知道如何。
销售表如下:
public int saleId { get; set; }
public Nullable<int> customerId { get; set; }
public Nullable<System.DateTime> saleDate { get; set; }
public Nullable<int> invoiceId { get; set; }
public Nullable<decimal> total{ get; set; }
public virtual customerTable customerTable { get; set; }
public virtual fac fac { get; set; }
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
public virtual ICollection<Sale_Detail> Sale_Detail { get; set; }
请帮忙!
慕勒3428872
相关分类