How i can return list with anonymous type, because with this code i get
\"The type or namespace name \'T\' could not be found (are you missing a using directive or a
Just use and ArrayList instead
public static ArrayList GetMembersItems(string ProjectGuid) { ArrayList items = new ArrayList(); items.AddRange(yourVariable .Where(p => p.Knowledge_Project.Guid == ProjectGuid) .ToList()); return items; }