コード例 #1
0
ファイル: 06-CountAsync.cs プロジェクト: liumeng0403/MyDAL
        public async Task Count_Star_Shortcut()
        {
            xx = string.Empty;

            var res1 = await MyDAL_TestDB.CountAsync <Agent>(it => it.Name.Length > 3);

            Assert.True(res1 == 116);

            xx = string.Empty;
        }