protected void customersDataSource_Selecting(object sender,
LinqDataSourceSelectEventArgs e) {
NorthwindDataContext dc = new NorthwindDataContext();

e.Result =
from c in dc.Customers
where c.Country == "USA" && c.Orders.Count > 0
select c;
}
