在 LINQ to Entities 查询中无法构造实体或复杂类型“xxxx”解决

原代码:

from a in db.Files
select new Files
{
Id = a.Id,
FilePath = a.FilePath
}).ToList();

新代码:

(from a in db.Files
select new newFiles
{
Id = a.Id,
FilePath = a.FilePath
}).ToList();

public class newFiles
{
public int Id { get; set; }
public string FilePath { get; set; }
}

新建了一个类,包含要查询的字段

posted @ 2021-05-21 19:01  奇迹之耀  阅读(79)  评论(0编辑  收藏  举报