如何在datadgridview上显示对象(List<>)并进行编辑,删除?

时间:2013-10-23 07:37:29

标签: c# datagridview entity

我在我的应用程序的业务层工作,我想显示一个对象列表<>。 感谢。

该应用程序位于C#。

//view layer
dataGridView1.DataSource = RecMatBLL.Inventary.GetTODOInventory(); //dont show but compile

//business layer
public static List<Inventory> GetTODOInventory() {
        List<Inventory> newInventory = new List<Inventory>();
        List<InventoryEntity> inventorys = Provider.Inventory.GetInventory();
        foreach (InventoryEntity i in inventorys)
        {
            newInventory.Add(new Inventory(i.IdComponent, i.IdLot, i.Volume, i.Description, i.Location));
        }
        return newInventory;

    }

0 个答案:

没有答案