Link to home
Start Free TrialLog in
Avatar of Philippe Renaud
Philippe RenaudFlag for Canada

asked on

LINQ question

Hello EE ...  I got a linq expression in vb.net like this :

  Dim q = (From m In MyItems
                    Where arrString.All(Function(v) m.Value.Contains(v))
                    Order By m.Key Descending
                    Select m)

the first item in ever rows in q is a datevalue.

How could I modify that LINQ expression so that in q I would get the number of days difference between each rows instead of every datevalue ?
ASKER CERTIFIED SOLUTION
Avatar of Fernando Soto
Fernando Soto
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Philippe Renaud

ASKER

trhanks