Is it possible to do a cast within a LINQ query (for the compiler\'s sake)?
The following code isn\'t terrible, but it would be nice to make it into one query:
yes you can do the following:
List tabList = (from t in content.ChildControls where t as TabSection != null select t as TabSection).ToList();