|
|
|
.NET ถามเรื่องการใช้ Row.Count ในการนับจำนวนแถวในฐานข้อมูล LINQ |
|
|
|
|
|
|
|
อ่านดูจากต่างประเทศประมาณนี้ครับ
Code (C#)
string[] fruits = { "apple", "banana", "mango",
"orange", "passionfruit", "grape" };
int numberOfFruits = fruits.AsQueryable().Count();
Code (C#)
Dim query = From cust In db.Customers Select cust.CompanyName
List<Customer> customers = query.ToList();
int count = customers.Count();
|
|
|
|
|
Date :
2012-12-09 08:47:15 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 02
|