通常BLToolKitと私は次のようにDBからデータをフェッチ: using (DbManager db = new MyDbManager())
{
IList<MyObjects> objects = db
.SetCommand(query)//sometimes with additional parameters
.ExecuteList<MyObje
次のソースコードが実行されると、パラメータが使用されていない: sectors1 = from sector in db.GetTable<InfrSect>();
sectors2 = from sector in sector1
join team in db.GetTable<Team>() on sector.TeamId equals tea