我寫在App_Code文件夾中常見的業務邏輯類使用EFW.but顯示下面的錯誤連接到數據庫「錯誤1類型或命名空間名稱‘工作’可能沒有找到」(是否缺少using指令或程序集引用?)
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Data;
namespace WebApplication6.App_Code
{
public class BlCommon
{
public List<job> GetJobs()
{
pubs2012Entities pubsobject = new pubs2012Entities();
var x = pubsobject.jobs.ToList<job>();
return x;
}
}
}
and class generated by EFW from jobs table is
namespace WebApplication6.App_Code
{
using System;
using System.Collections.Generic;
public partial class job
{
public short job_id { get; set; }
public string job_desc { get; set; }
public byte min_lvl { get; set; }
public byte max_lvl { get; set; }
}
}
那麼,什麼是工作?這將是我認爲的類名? –
是的..它是一個實體... – user3363647
你沒有與問題的名稱空間generat工作。 看到我的答案。 –