我正在嘗試使用VS2015 c#開發銷售和庫存系統。 但是,今天我收到錯誤。這裏是我的代碼:錯誤從'DataBaseEntities'轉換爲'System.Data.Objects.ObjectContext'
public partial class Form4 : Form
{
private BindingList<tblProduct> products = new BindingList<tblProduct>();
private db_22VapeStreetEntities cse = new db_22VapeStreetEntities();
public Form4()
{
InitializeComponent();
lstProductsChosen.DataSource = products;
lstProductsChosen.DisplayMember = "Description";
createTabbedPanel();
}
private void AddProductsToTabbedPannel()
{
foreach (TabPage tp in tabControl1.TabPages)
{
ObjectQuery<tblProduct> filteredProduct = new ObjectQuery<tblProduct>("SELECT VALUE P FROM tblProducts AS P", cse);
}
的錯誤是,當我稱之爲「CSE」在這裏 - >ObjectQuery<tblProduct>("SELECT VALUE P FROM tblProducts AS P", cse);
我收到
參數2:無法從「inventorysystem.db_22VapeStreetEntities」到「系統轉換.Data.Objects.ObjectContext'
我試過尋找問題,但我看不到任何解決方案。
「db_22VapeStreetEntities」的基本類型是什麼? – CodingYoshi
對不起,我不知道。 – Steven
將光標置於'db_22VapeStreetEntities'上並按下'F12'並查看該類型是什麼。 – CodingYoshi