c# – Linq to SQL选择多个列

c# – Linq to SQL选择多个列,第1张

概述我只想使用LINQ从MSSQL DB中选择2列. SQL应该是 select table.col1,table.col2 from table 我试过了 IList<string> myResults =( from data in dbconn.table where table.col5 == null select new { col1=data. 我只想使用liNQ从MSsql DB中选择2列.

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选择多个列所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1239291.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-06
下一篇 2022-06-06

发表评论

登录后才能评论

评论列表(0条)

保存