ユーザー定義関数を 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", "");
問題を解決するにはどうすればよいですか? ありがとう