Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
SQL ステートメント:
select 'iphone',count(*) from tablename where id=5
結果:
名前番号 'iPhone' 50
同じ結果(SQLステートメント)を取得するには、linqをどのように処理すればよいですか?
前もって感謝します。
var Result = new { Name = "iPhone", Num = yourSequence.Count(x => x.Id == 5) };