var taxableProducts =
	from p in db.Products
	where p.Taxable == true
	select p;
foreach( Product product in taxableProducts ) {
	RecalculateTaxes( product );
}
db.SubmitChanges();
