次の例のように、ADO.NET DataTable も LiveLinq で使用できます。
| C# |
コードのコピー
|
|---|---|
CustomersDataTable customers = ... var query = from c in customers.AsIndexed() where c.City == "London" select c; |
|
| C# |
コードのコピー
|
|---|---|
using C1.LiveLinq.AdoNet;
|
|