我试图使用
使用两个INNER JOINvar product = from a in db.Product.Include(a => a.Category).Include(a => a.Model)
select a;
return View(product.ToList());
如果我编写上述编码,则返回View(product.ToList());
错误说,'元数据集合中的多个项目与“模型”标识匹配。'
当我尝试使用
进行调试时var product = from a in db.Product.Include(a => a.Category)
select a;
我可以看到SQL查询为
{SELECT
[Extent1].[productId] AS [productId],
[Extent1].[categoryId] AS [categoryId],
[Extent1].[modelId] AS [modelId],
[Extent1].[model] AS [model],
[Extent1].[displaySize] AS [displaySize],
[Extent1].[processor] AS [processor],
[Extent1].[ramSize] AS [ramSize],
[Extent1].[capacityType] AS [capacityType],
[Extent1].[capacity] AS [capacity],
[Extent1].[colour] AS [colour],
[Extent1].[description] AS [description],
[Extent1].[price] AS [price],
[Extent1].[threeDayPrice] AS [threeDayPrice],
[Extent1].[aWeekPrice] AS [aWeekPrice],
[Extent1].[twoWeekPrice] AS [twoWeekPrice],
[Extent1].[aMonthPrice] AS [aMonthPrice],
[Extent1].[threeMonthPrice] AS [threeMonthPrice],
[Extent1].[sixMonthPrice] AS [sixMonthPrice],
[Extent1].[stock] AS [stock],
[Extent2].[categoryId] AS [categoryId1],
[Extent2].[name] AS [name]
FROM [dbo].[Product] AS [Extent1]
INNER JOIN [dbo].[Category] AS [Extent2] ON [Extent1].[categoryId] = [Extent2].[categoryId]
ORDER BY [Extent1].[model] ASC}
我想通过modelId将INNER JOIN添加到Model实体作为外键。
怎么可能?
感谢。
- 添加了模型 -
--Prodruct.cs--
public class Product
{
[Key] public int productId { get; set; }
[Required(ErrorMessage = "Please select category")]
public int categoryId { get; set; }
[Required(ErrorMessage = "Please select model")]
public int modelId { get; set; }
[DisplayName("Model name")]
public String model { get; set; }
public virtual Category Category { get; set; }
public virtual Model Model { get; set; }
}
--Category.cs--
public class Category
{
[Key] public int categoryId { get; set; }
public String name { get; set; }
}
--Model.cs--
public class Model
{
[Key] public int modelId { get; set; }
public String name { get; set; }
}
--RentalDB.cs--
public class rentalDB : DbContext
{
public DbSet<Product> Product { get; set; }
public DbSet<Model> Model { get; set; }
public DbSet<Customer> Customer { get; set; }
public DbSet<Order> Order { get; set; }
public DbSet<Cart> Cart { get; set; }
public DbSet<Category> Category { get; set; }
public DbSet<OrderDetails> OrderDetails { get; set; }
protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
modelBuilder.Conventions.Remove<PluralizingTableNameConvention>();
}
}
答案 0 :(得分:0)
在我的测试数据库中,我在LinqPad中运行它
from a in Products.Include("Categories").Include("Suppliers") select a
我得到了这个生成的sql:
SELECT
[Extent1].[ProductID] AS [ProductID],
[Extent1].[ProductName] AS [ProductName],
... Lots of stuff ...
FROM [dbo].[Products] AS [Extent1]
LEFT OUTER JOIN [dbo].[Categories] AS [Extent2] ON [Extent1].[CategoryID] = [Extent2].[CategoryID]
LEFT OUTER JOIN [dbo].[Suppliers] AS [Extent3] ON [Extent1].[SupplierID] = [Extent3].[SupplierID]
在我的环境中,包含接收lambda表达式没有重载,你可能从某个地方得到它,所以我不知道你的include发生了什么,尝试将你的查询更改为
var product = from a in db.Product.Include("Category").Include("Model") select a;