我的朋友从我的c#visual studio的工作项目中删除了实体模型,
在大多数表单中我使用的是核心ADO.net但是我使用的是datagridviews entityframework
现在它无法正常工作我试图重新配置它,但它无法显示错误
“无法从程序集中加载projectnameentities”
请帮助我该怎么办?
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace shopBillingSystem
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new Main());
}
}
}
答案 0 :(得分:1)
我想我找到了解决方案...我从数据库中添加了新的entitymodel并在bsl / config文件中重命名,并在主配置文件中重命名,现在它工作正常......