public IList getCommentsByOrganizationID(int orgID) { IList comments = new List <OrgComment>(); var comment = dataContext.sp_GetCommentsByOrgID(orgID); comments = comment.ToList(); return(comments); }