我在 model.store 中有我的用户定义函数,但我无法在“函数导入”中导入。我尝试使用这种语法:
public class dbFunction
{
[EdmFunction("MyModel.Store", "FN_GETPARVALUE")]
public static string FN_GETPARVALUE(decimal ditta, string par, string retIfNull)
{
throw new NotSupportedException("Direct calls are not supported.");
}
}
但我不能像这样直接调用:
CommonRepository pr = new CommonRepository();
var test = pr.parametriDittaGetValue(Near_UserDitta, "PRODGESCOL", "");
如何解决我的问题?谢谢