public class Order {
public long Id { get; set; }
public string CustomerName { get; set; }
public string Address { get; set; }
public string State { get; set; }
public string ZipCode { get; set; }
public bool Shipped { get; set; }
public IEnumerable<OrderLine> Lines { get; set; }
}
public class OrderLine
{
public long Id { get; set; }
public int ProductId { get; set; }
public Product Product { get; set; }
public int Quantity { get; set; }
public long OrderId { get; set; }
public Order Order { get; set; }
}
var products = this.productRepository.Products;
Order order = id == 0 ? new Order() : this.ordersRepository.GetOrder(id);
IDictionary<int, OrderLine> linesMap = order.Lines?.ToDictionary(l => l.ProductId) ?? new Dictionary<int, OrderLine>();
ViewBag.Lines = products.Select(p => linesMap.ContainsKey(p.Id)? linesMap[p.Id]: new OrderLine { Product = p, ProductId = p.Id, Quantity = 0 });
linesMap[p.Id] 也就是OrderLine,它的Product属性是如何被关联到数据库的内容的
- 问个ef core 投影问题
- Entity Framework Core如何设置3个表联合查询(Join)
- asp.net core3.1使用EF Core出现:'OFFSET' 附近有语
- 关于使用 dotnet ef 迁移到 docker mysql 容器的疑问
- 请问EF中按天筛选到EFcore中要怎么修改?
- 问个ef core 投影问题
- Entity Framework Core如何设置3个表联合查询(Join)
- asp.net core3.1使用EF Core出现:'OFFSET' 附近有语
- 关于使用 dotnet ef 迁移到 docker mysql 容器的疑问
- 请问EF中按天筛选到EFcore中要怎么修改?
- EF Core 对复杂关系的表进行删除操作。需要先Include。如果子表数据量比较大怎么办。
- EF Core 3.0 的奇怪问题:Invalid cast from 'System.I
- Cannot set MySqlCommand.CommandText when there is
问题写的不清楚,建议把问题弄详细点,Order类也没有看到,