我是 C# 新手,我现在正在学习 LINQ 并尝试选择一些数据。. .
var carMake = (from table in entity.Make select new { table.ID, table.Name }).ToList();
我写了上面的查询,但我有一个错误:
The type of the expression in the select clause is incorrect. Type inference failed in the call to 'Select'.
我在网上搜索,但找不到任何解决方案。我不知道那个查询有什么问题。
提前致谢。