不符合调用操作所需的签名

发布于 2024-12-02 19:21:30 字数 573 浏览 0 评论 0原文

好吧,我有一个域服务类,只有 2 个方法:

    [Invoke]
    public IEnumerable<CT1> GetActiveCT1(int ID)
    {
        return this.ObjectContext.GetActiveCT1(ID).AsEnumerable<CT1>();
    }

    [Invoke]
    public IEnumerable<CT2> GetCT2(int ID)
    {
        return this.ObjectContext.GetCT2(ID).AsEnumerable<CT2>();
    }

CT1 和 CT2 都是复杂类型,具有多个 int 和 string 字段。

GetActiveCT1和GetCT2都是基于存储过程的函数导入。

问题是,方法#2 GetCT2 总是返回“不符合所需签名”的错误。如果我将 [Invoke] 更改为 [Query] 那么它可以工作,但方法 #1 没有同样的问题。

我非常困惑为什么两种复杂类型的行为会如此不同?

Ok I have a domain service class that only has 2 methods:

    [Invoke]
    public IEnumerable<CT1> GetActiveCT1(int ID)
    {
        return this.ObjectContext.GetActiveCT1(ID).AsEnumerable<CT1>();
    }

    [Invoke]
    public IEnumerable<CT2> GetCT2(int ID)
    {
        return this.ObjectContext.GetCT2(ID).AsEnumerable<CT2>();
    }

Both CT1 and CT2 is a complex type, with multiple int and string fields.

GetActiveCT1 and GetCT2 are both function imports based on stored procedure.

The problem is, method #2 GetCT2 always return an error about "does not conform to the required signature". If I changed the [Invoke] to [Query] then it works, but method #1 doesn't have the same problem.

I am extremely puzzled why 2 complex type can behave so differently?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文