不符合调用操作所需的签名
好吧,我有一个域服务类,只有 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论