コード例 #1
0
        public IActionResult Get()
        {
            var spells = _repo.GetAll();

            return(Ok(spells));
        }
コード例 #2
0
 public IQueryable <SpellViewModel> GetSpells()
 {
     return(_spellRepository.GetAll().Select(SpellMapper.MapEntityToModel).AsQueryable());
 }