Beispiel #1
0
        public async void CountAsync()
        {
            var count = await _userRepository.CountAsync(x => x.Age == 11);

            Assert.IsTrue(count == 1);

            UpdateAsync();
        }