Questions tagged [linq-to-entities]

Please submit any inquiries related to LINQ to Entities, specifically in regards to using LINQ queries with the ADO.NET Entity Framework. It's important to note that this differs from LINQ to SQL and other LINQ providers.

Using LINQ to group and organize data to generate a series for a chart

Consider a simplified Items entity, which includes the following properties: Id (int, PK), itemDate (datetime, not null), and itemCategory (string, not null). Can you provide a LINQ to Entities query that calculates the total number of items in each categ ...