What are some naming conventions utilized for Entity Framework queries? Example, following code utilizes 'e. Why do they use e? And what are naming convention strategies for delegate abbreviation in method syntax? This question is not asking for opinion, just common naming convention.
public static string GetBooksByPrice(BookShopContext context)
{
var result = context.Books
.Where(e => e.Price > 40)
.OrderByDescending(e => e.Price)
.Select(e => new
{
e.Title,
e.Price
}).ToList();