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:
List tabList = (from t in content.ChildControls let ts = t as TabSection where ts != null select ts).ToList();