Here are some notes that I gathered when trying to get code coverage for typescript.
proj
|__ package.json
|__ tsconfig.json
|__ src/lib.ts
| 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) |