示例#1
0
 public async Task <bool> CheckDynamicListExist(Expression <Func <DynamicList, bool> > expression)
 {
     return(await _dynamicListRepository.IsExistAsync(expression));
 }
 public async Task <IActionResult> CheckExist(string name)
 {
     return(Ok(await _dynamicListRepository.IsExistAsync(a => a.Name == name)));
 }