views:

6239

answers:

5

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:

        Content content = dataStore.RootControl as Controls.Content;

        List<TabSection> tabList = (from t in content.ChildControls
                                    select t).OfType<TabSection>().ToList();

        List<Paragraph> paragraphList = (from t in tabList
                                         from p in t.ChildControls
                                         select p).OfType<Paragraph>().ToList();

        List<Line> parentLineList = (from p in paragraphList
                                     from pl in p.ChildControls
                                     select pl).OfType<Line>().ToList();

The code continues on with a a few more queries, but the gist is I have to create a List out of each query in order for the compiler to know that all of the objects in content.ChildControls are of type TabSection and all of the objects in t.ChildControls are of type Paragraph...and so and and so forth.

Is there a way within the LINQ query to tell the compiler that "t" in "from t in content.ChildControls" is a TabSection?

+3  A: 

Try this:

from TabSection t in content.ChildControls

Also, even if this were not available (or for a different, future scenario you may encounter), you wouldn't be restricted to converting everything to Lists. Converting to a List causes query evaluation on the spot. But if you removing the ToList call, you could work with the IEnumerable type, which would continue to defer the execution of the query until you actually iterate or store in a real container.

Chris Ammerman
+1  A: 

yes you can do the following:

List<TabSection> tabList = (from t in content.ChildControls
                            where t as TabSection != null
                            select t as TabSection).ToList();
Jared
That's what OfType<T>() is for.
Lucas
+3  A: 

Depending on what you are trying to do, one of these might do the trick:

List<Line> parentLineList1 =
  (from t in content.ChildControls.OfType<TabSection>()
   from p in t.ChildControls.OfType<Paragraph>()
   from pl in p.ChildControls.OfType<Line>()
   select pl).ToList();

List<Line> parentLineList2 =
  (from TabSection t in content.ChildControls
   from Paragraph p in t.ChildControls
   from Line pl in p.ChildControls
   select pl).ToList();

Note that one uses OfType<T>(), which you were using. This will filter the results and return only the items of the specified type. The second query implicitly uses Cast<T>(), which casts the results into the specified type. If any item cannot be cast, an exception is thrown. As mentioned by Turbulent Intellect, you should refrain from calling ToList() as long as possible, or try to avoid it altogether.

Lucas
A: 

And here's the query method form.

List<Line> parentLineList =
  content.ChildControls.OfType<TabSections>()
    .SelectMany(t => t.ChildControls.OfType<Paragraph>())
    .SelectMany(p => p.ChildControls.OfType<Line>())
    .ToList();
David B
A: 
List<TabSection> tabList = (from t in content.ChildControls
                            let ts = t as TabSection
                            where ts != null
                            select ts).ToList();
Michael Damatov
That's what OfType<T>() is for.
Lucas
Reflecting over the OfType<T>() has brought me to a conclusion that it's less efficient than my solution.
Michael Damatov