Skip to content

Instantly share code, notes, and snippets.

@Alexei000
Created September 5, 2017 14:33
Show Gist options
  • Save Alexei000/331717980af438d8259bc5783bb2697b to your computer and use it in GitHub Desktop.
Save Alexei000/331717980af438d8259bc5783bb2697b to your computer and use it in GitHub Desktop.
Object fetch view usage
var results = DataAccess.VwImportingSystemTestResultRepository.AllNoTracking
.Where(x => envIds.Contains(x.EnvironmentId))
.Where(x => x.EnteredTimestamp >= fromDate && x.EnteredTimestamp <= toDate)
.Take(500)
.ToList();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment