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

Find() public method

public Find ( string username ) : Profile
username string
return Profile
        public Profile Find(string username)
        {
            return _profiles.FirstOrDefault(p => p.Username == username);
        }

Same methods

ProfileRepository::Find ( ) : IQueryable