Example #1
0
 public void FixtureSetup()
 {
     _source = new FakeDataSource();
     _query = from c in _source.AsQueryable<FakeData>()
              where c.Mea1 == 5
              select c;
 }