我收到此错误:“无法在当前作用域或上下文中解析'TblProduct'。请确保所有引用的变量都在作用域中,加载了所需的模式,并正确引用了名称空间。”在下面的代码中,我不确定为什么它不能正常工作。我希望有人可以提供帮助,谢谢!:
private void AddProductsToTabbedPanel()
{
int i = 1;
foreach (TabPage tp in tabControl1.TabPages)
{
ObjectQuery<TblProduct> filteredProduct = new ObjectQuery<TblProduct>("SELECT VALUE P FROM TblProduct AS P WHERE P.ProductType = " + i.ToString(), pse);
FlowLayoutPanel flp = new FlowLayoutPanel();
flp.Dock = DockStyle.Fill;
foreach (TblProduct tprod in filteredProduct)
{
Button b = new Button();
b.Size = new Size(100, 100);
b.Text = tprod.Description;
b.Tag = tprod;
b.Click += new EventHandler(UpdateProductList);
tp.Controls.Add(b);
}
答案 0 :(得分:1)
你需要在你的上下文中将你的TblProduct指定为DbSet ..根据你提供的信息我猜你错过了。它会是这样的......
public class ProductContext : DbContext
{
public DbSet<Category> TblCategories { get; set; }
public DbSet<Product> TblProduct { get; set; }
}