Tests.DapperReadmeVsChain.Example4_Chain C# (CSharp) Method

Example4_Chain() private method

private Example4_Chain ( ) : void
return void
        public void Example4_Chain()
        {
            //Bulk inserts are not yet supported. See issue #48

            s_DataSource.Insert("MyTable", new { colA = 1, colB = 1 }).Execute();
            s_DataSource.Insert("MyTable", new { colA = 2, colB = 2 }).Execute();
            s_DataSource.Insert("MyTable", new { colA = 3, colB = 3 }).Execute();
        }