ASP.NET_Core_SPAs.Controllers.ContactsController.GetContacts C# (CSharp) Method

GetContacts() private method

private GetContacts ( ) : IQueryable
return IQueryable
        private IQueryable<Contact> GetContacts()
        {
            return _context.Contacts.Where(c => c.UserId == _userManager.GetUserId(User));
        }
    }