我的应用程序是c#MVC5,使用EF 6.1.使用
Database First导入的表和函数.我可以在DALModel.Store / Stored Procedures / Functions(灰显)下列出的模型(emdx)浏览器中看到该功能.
我试图使用以下功能:
using (var ctx = new DALEntities()) { int? result = ctx.fn_TotalClient(MemberRepository.AllowedCId,fromDate,toDate); return (result != null ? result.Value : 0); }
我得到无法解析fn_TotalClient
非常感谢您的建议.