BookStore_NETMVC.DAL.BooksController.GetCategoryList C# (CSharp) Method

GetCategoryList() public method

public GetCategoryList ( ) : System.Web.Mvc.SelectList
return System.Web.Mvc.SelectList
        public SelectList GetCategoryList()
        {
            return new SelectList(db.Category.ToArray(),"iCategoryID","strCategoryName");
        }