AreasExample.Areas.Admin.Models.ProfileRepository.Find C# (CSharp) Method

Find() public method

public Find ( ) : IQueryable
return IQueryable
        public IQueryable<Profile> Find()
        {
            return _profiles.AsQueryable();
        }

Same methods

ProfileRepository::Find ( string username ) : Profile