linq クエリからいくつかのレコードを取得しようとしています
dataentities db = new dataentities();
db.Tabel1.Select(x=> new lcclsAccDueList {LedgerName ,LedgerId,Amount ,AmountInString ,Expr2,Name ,StopID ,VIP }).ToList();
このクラスを作りました
public class lcclsAccDueList
{
public string LedgerName { get; set; }
public decimal LedgerId { get; set; }
public Nullable<decimal> Amount { get; set; }
public string AmountInString { get; set; }
public Nullable<int> Expr2 { get; set; }
public string Name { get; set; }
public Nullable<decimal> StopID { get; set; }
public Nullable<bool> VIP { get; set; }
}
次のようなすべてのレコードを選択する他の方法はありますか
dataentities db = new dataentities();
db.Tabel1.Select(x=> new lcclsAccDueList { * }).ToList();
// * indicates select all records