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

TestToDataTable() private method

private TestToDataTable ( ) : void
return void
        public void TestToDataTable()
        {
            var tb = new DataTable();
            Mapper.Map(db.Customers, ref tb);

            Assert.AreEqual(db.Customers.Count(), tb.Rows.Count);
            Console.WriteLine(tb.Rows.Count);
        }
NorthwindExecutionTest