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)
@resal81
resal81 / Readme.md
Created April 16, 2016 22:40
Code coverage for typescript

About

Here are some notes that I gathered when trying to get code coverage for typescript.

Folder structure

proj
|__ package.json
|__ tsconfig.json
|__ src/lib.ts