sql应该是
select table.col1,table.col2 from table
我试过了
IList<string> myResults =( from data in dbconn.table where table.col5 == null select new { col1=data.ID.ToString(),col2=data.col2 }).Take(20).ToList();
但这没用.
它说
cannot convert type List <AnonymousType#1> to IList<string>解决方法 您基本上尝试使用匿名类型列表的条目填充字符串列表,这将无效.
你尝试过这样的事吗?:
var List = from data in dbconn.table where table.col5 == null select new { col1=data.ID.ToString(),col2=data.col2 }
然后,您可以轻松地使用循环中的条目
foreach(var element in List) {//...}
或者像列表一样
List.Take(20).ToList();总结
以上是内存溢出为你收集整理的c# – Linq to SQL选择多个列全部内容,希望文章能够帮你解决c# – Linq to SQL选择多个列所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)