使用 EF5 类将数据网格视图绑定到数据库,而不向数据库发送更改

本文关键字:数据库 EF5 数据 数据网 绑定 视图 网格 使用 | 更新日期: 2023-09-27 18:32:43

我正在使用实体框架 5.0 + .NET 4.5

我使用 EF 模型优先方法创建了数据库,我想使用 EF 类将DataGridView绑定到数据库,以便自动同步对数据库或DataGridView中的任何更改。

这是我的代码:

//form level fields
private BindingList<Product> _products;
private BindingSource _productSource = new BindingSource(); 
... in the form load event
//load the data from database using EF classes
var tmp = _context.BaseCategorySet.OfType<Product>().ToList();
//converting to IBindingList
_products = new BindingList<Product>(tmp);
_products.AllowEdit = true;
_products.AllowNew = true;
_productSource.DataSource = _products; 
//setting GridControl's data source
ProductGrid.DataSource = _productSource;

我可以添加新行或更改数据,但这些更改不会发送到数据库 - 我缺少什么?

我做了其他事情,希望找到解决方案......

1(我添加了一个保存按钮来调用将网格控件的数据显式更新到数据库,代码如下:

_productSource.EndEdit();
_context.SaveChanges();

->这不会导致将新记录存储到数据库中

2(我添加了一个代码来添加新记录,其中包含一堆用于单个记录属性的控件(文本框,日期选择器(

var x = _context.BaseCategorySet.Create<Product>();
//settting all the x properties with values
//that are set in aforementioned individual controls
_context.BaseCategorySet.Add(x);
_context.SaveChanges();
-

->当我使用这种技术添加新记录时 - 它存储在数据库中,但再次是一种奇怪的行为 - 这个新记录不会自动加载到网格控件中(但应该是,因为我是数据绑定网格到相应的 EF DbSet...

还有一个奇怪的事情 - 我在DataGridView控件中对加载到数据库的记录所做的更新 - 这些更新被发送到数据库......

3(我从DevExpress XtraGrid切换到Stadard DataGridView控制,但这没有帮助...

我已经搜索了大量有关 EF 数据绑定的主题,但没有成功......

不知道这是否重要,但我在我的实体模型中使用继承:Product派生自UnifOfSalesUnitOfSales派生自BaseCategory类。

我尝试了另一件事

我尝试了(.Ladislav Mrnka在这篇文章中建议的Local.ToBindingList。如何在 winforms 中使用 EF 进行双向数据绑定?

好吧,它确实将更改发送回数据库,但更改仅存储在基类表(BaseCategory(中,但也有一个派生类表。这是我用于绑定的代码

_context.BaseCategorySet.OfType<Product>.Load(); 
//i tried to use derived class with OfType<Product> to ensure that compiler
//knows that this is instance of derived class (Product), 
//not the base class BaseCategory, 
//but I can not get "Local" working with OfType...
ProductGridView.DataSource = _context.BaseCategorySet.Local.ToBindingList(); 

使用 EF5 类将数据网格视图绑定到数据库,而不向数据库发送更改

我确实找到了解决方案!

我必须在 DbContext 类中添加 DbSet 产品,用于 EF 模型派生类(产品,派生自 BaseCategory 类(

在此之后,我可以使用

ProductGridView.DataSource=_context.Products.Local.ToBindingList();