Hi
After retrieving records how do i convert to list and group. Basically i am retrieving records want to group by owners.
foreach (Entity ent in EC.Entities)
{
string subject = ent["name"].ToString();
string SR_Number = ent["number"].ToString();
EntityReference originator = (EntityReference)ent.Attributes["originator"];
string originatorname = originator.Name;
EntityReference ownerid = (EntityReference)ent.Attributes["ownerid"];
string ownername = ownerid.Name;
}
*This post is locked for comments