当前位置:  开发笔记 > 编程语言 > 正文

Linq输出作为接口?

如何解决《Linq输出作为接口?》经验,为你挑选了1个好方法。

这是我试图做的代码:

public IList GetAll()
{
      using (var c = new MyDataContext())
      {
          return c.Operators.ToList();
      }
}

运算符实现IOperator,但我收到以下编译错误:

Cannot implicitly convert type 'System.Collections.Generic.List' to 'System.Collections.Generic.IList'. An explicit conversion exists (are you missing a cast?)

我该怎么做才能得到我需要的东西?



1> Panos..:

尝试Cast<>()方法:

return c.Operators.Cast().ToList();

推荐阅读
家具销售_903
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有