Hi there,
I have a single table and I need to build a bunch of nested objects based on the single table.
Data:
PointA PointB Month Time Price 1 2 11 11:00 10.99 1 2 12 11:00 9.99
Objects are
POINTS {PointA, PointB, Details} Details {Month, ExtraDetails} ExtraDetails {Time, Price}
I want to avoid having loads of loops and if statements, so should be able to use linq to do this. but its beyond my linq experience.
edit: These need grouping aswell
any help would be great.
Thanks