NLite.Data.Test.NorthwindExecutionTest.TestGroupBySelectMany C# (CSharp) Method

TestGroupBySelectMany() private method

private TestGroupBySelectMany ( ) : void
return void
        public virtual void TestGroupBySelectMany()
        {
            var list = db.Customers.GroupBy(c => c.City).SelectMany(g => g).ToList();
            AssertValue(91, list.Count);
        }
NorthwindExecutionTest