I am able to do
var result = OAS_Questions.Count (oasq => oasq.Id!=0);
result.Dump();
and even
var result = OAS_Questions;
result.Dump();
But when I try to include child objects of "Questions" say "Opitons" through
var result = OAS_…
public static class Extensions{
public static void Dump<T>(this T o) { }
public static void Dump<T>(this T o, string s) { }}
These lines allow me to copy code from LINQPad to VS and run it …