I have this structure below. Essentially UserID and Session is the primary key or the unique identifiers in the dataset. I need help setting up the linq to Print out the DetailList groupby UserId and Session using Linq. I am struggling writing the LinQ
Dictionary
public class DetailRoot
{
public string UserId{ get; set; }
public string Session{ get; set; }
public IReadOnlyList
}
public class DetailModel
{
public string ApplicationGuid { get; set; }
public string EventType { get; set; }
}
David SmithPosted Apr 13, 2022, 7:50 AM
Muhammad Imran AnsariPosted Apr 13, 2022, 2:19 AM