我目前正在使用
your = from p in (toSelect)
select new
{
last = p.Last,
current = p.CurrentPlayer,
seats = from s in (p.Seated)
select new
{
UID = s.UID,
buyin = s.BuyIn
}
}
p.Seated
是一个数组,我怎么能通过null
每次s.UID
未设置?我知道“ where
”,但我想知道哪些座位是免费的(例如null
)
希望这足够清楚。