C
Chris
hi,
I have i.e a linq result:
var result = from c in context.c select c;
I want to write a second linq query joined with the result above:
var second = from d in context.d join ... <now, I want to join it with
result>.
is it possible?
I have i.e a linq result:
var result = from c in context.c select c;
I want to write a second linq query joined with the result above:
var second = from d in context.d join ... <now, I want to join it with
result>.
is it possible?