我想更新我的数据库数据,并且我有以下 2 个元素“列表”:
- Linq Query
IQueryable<VM_CategoryLabel>
从数据库中返回一个(必须更新) IList<VM_CategoryLabelExtra>
(来自网络界面的列表)
这是我的 2 节课:
public class VM_CategoryLabel
{
public int Id { get; set; }
public int Order { get; set; }
public string Label { get; set; }
public string Unit { get; set; }
public bool Checked { get; set; }
}
public class VM_CategoryLabelExtra
{
public int Id { get; set; }
public int IdCat { get; set; }
public int Order { get; set; }
public string Label { get; set; }
public string Unit { get; set; }
public bool Checked { get; set; }
}
它看起来很基本,但我收到一个错误,尝试使用 Linq 加入或使用 let 失败。也许我这样做的方式是完全错误的?