whitespace

This commit is contained in:
Robert McRackan 2019-10-15 09:42:22 -04:00
parent 1b6c577044
commit a1ebe1b0c8
3 changed files with 44 additions and 17 deletions

View file

@ -10,19 +10,19 @@ namespace DataLayer
{
using var context = LibationContext.Create();
return context
.Library
.AsNoTracking()
.GetLibrary()
.ToList();
.Library
.AsNoTracking()
.GetLibrary()
.ToList();
}
public static LibraryBook GetLibraryBook_Flat_NoTracking(string productId)
{
using var context = LibationContext.Create();
return context
.Library
.AsNoTracking()
.GetLibraryBook(productId);
.Library
.AsNoTracking()
.GetLibraryBook(productId);
}
/// <summary>This is still IQueryable. YOU MUST CALL ToList() YOURSELF</summary>