Skip to content

Instantly share code, notes, and snippets.

View nichealpham's full-sized avatar

Nicheal Pham nichealpham

View GitHub Profile
public static class EpisodeHelper
{
// PERFORMANCE AUDIT !!!
public static IQueryable<Episode> GetEpisodeQueryable(this ERPContext _Context)
{
return _Context.Episodes
.AsNoTracking()
.Include(a => a.Clinic)
.Include(a => a.UserAdmitted)
.Include(a => a.Records)