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>