我有一组测试对象:
IList<Test> TestFromDatabase ;
public class Test
{
public int TestId { get; set; }
public bool? C { get; set; }
public bool? R { get; set; }
public string Text { get; set; }
}
我需要把它变成一个 TestResult 对象的集合:
public class TestResult
{
public int TestId { get; set; }
public bool? Correct { get; set; }
}
有人可以告诉我如何使用 LINQ 做到这一点