DRMFSS.BLL.Role.RoleExists C# (CSharp) Method

RoleExists() public static method

public static RoleExists ( string name ) : bool
name string
return bool
        public static bool RoleExists(string name)
        {
            CTSContext entities = new CTSContext();
            var count = entities.Roles.Where(p => p.Name == name).Count();
            return (count > 0);
        }