C:\Windows\Microsoft.NET\assembly
Serialize enum as string
[JsonConverter(typeof(StringEnumConverter))]
Group list items by more than one property in Linq
// Group people by name and age
var groupedPeople = people.GroupBy(x => new
{
x.Name,
x.Age
});