检索&使用Entity Framework DBContext Find方法编辑数据库条目

时间:2018-03-14 08:10:53

标签: c#

public WarehouseReceipt Receipt { get; set; }
public List<WarehouseReceiptItems> ListReceiptItems { get; set; }

public WarehouseReceiptModel()
{
    Receipt = new WarehouseReceipt();
    ListReceiptItems = new List<WarehouseReceiptItems>();
}

我创建了一个View来捕获每个WarehouseReceiptItem的WarehouseReceipt字段和一个Partial View。我可以创建一个没有问题的条目。我的问题是如何使用实体框架编辑条目查找 - 这应该在相应的字段中返回数据库中的所有数据。

到目前为止我的Find方法:

public WarehouseReceipt Find(int? id)
{
     //if the ID is not provided
     if (!id.HasValue)
     {
          return new WarehouseReceipt();
     }

     //get the record by id and return
     return new IFAContextModel().WarehouseReceipts.Find(id);
}

0 个答案:

没有答案