Example #1
0
        public async Task BulkInsertAsync()
        {
            var count = await _repository.BulkInsertAsync(new[] { new TestEntity() });

            Assert.AreEqual(1, count);
        }