我只想使用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();