0
我用這個方法在我的倉庫類asp.net MVC 3應用:找不到任何列「DBO」或用戶定義的函數或聚合「dbo.fn_RegexIsMatch」,或者名稱不明確
internal void UpdatePersonEmail(Person person)
{
context.Entry(person).State = System.Data.EntityState.Modified;
context.SaveChanges();
}
,但我收到此錯誤:在下面一行
Cannot find either column "dbo" or the user-defined function or aggregate "dbo.fn_RegexIsMatch", or the name is ambiguous.
:
context.Entry(person).State = System.Data.EntityState.Modified;
任何建議如何解決這個?