我们可以将 ISingleResult转换为到 IList
我最近开始使用 LINQ to SQL。在我的 DMBL 设计器上,我打开服务器资源管理器并将存储过程拖到设计器上。
我在设计器中打开该方法的属性,发现其返回类型是 AutoGenerate。我查看了 Designer.cs 类,它说 返回类型为 ISingleResult
。
可以将其转换为 IList
吗?
我尝试这样做,并且没有编译时错误。我试图了解 ISingleResult
是什么以及如何将其转换为 IList
。
I started using LINQ to SQL recently. On my DMBL designer, I open the server explorer and drag a stored proc onto the designer.
I open the properties for the Method in the designer and see that its return type is AutoGenerated. I look at the designer.cs class and it says
the return type is ISingleResult<GetEmloyeeeRecordDataResult>
.
Can this be cast to IList<GetEmployeeRecordDataResult>
?
I tried doing this and there are no compile time errors. I am trying to understand what a ISingleResult<T>
is and how it can be cast to IList<T>
.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
ToList()
Use
ToList()