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