コード例 #1
0
        public async Task <IActionResult> Index()
        {
            var response = await booklistDac.Gets(it => !it.DeleteDate.HasValue);

            return(View(response));
        }
コード例 #2
0
        public async Task <IEnumerable <BookList> > Gets()
        {
            var response = await booklistDac.Gets(it => !it.DeleteDate.HasValue);

            return(response);
        }