LINQ Support
Arrays
SalArray<CCustomer> arCustomers = new SalArray<CCustomer();
...Populate array...
var ActiveCustomers = from c in arCustomers where c.Active = true
select c;TableWindow Controls
var ActiveCustomers = from r in tblCustomers
where r["colActive"].Number = "Y";
// or
var ActiveCustomers = from r in tblCustomers
where r[tblCustomers.colActive].Number = 1;Resources
Last updated
Was this helpful?