Benny
Benny

Reputation: 8815

How to use LINQ on this query?

I want to convert the IEnumerable<Target> of :

public class Target
{
        public Frame BaseFrame;

        public Rect[] rects;
}

To IEnumerable<foo> of :

public class foo
{
      public Frame BaseFrame;
      public Rect rect;
}

e.g. expand the Rect[] array, IEnumerable<Target> to IEnumerable<foo>, how to write LINQ on this function?

example:

sequence of Target:

t1(rects.Count==2), t2(rects.Count==3)

sequece of foo (after conversion):

f1, f2, f3, f4, f5

Upvotes: 3

Views: 80

Answers (1)

leppie
leppie

Reputation: 117240

var q = from t in targets
        from r in t.Rects
        select new foo
        {
          BaseFrame = t.BaseFrame,
          Rect = r
        };

Upvotes: 5

Related Questions