我得到一個錯誤 - A specified Include path is not valid. The EntityType 'myProject.DAL.Paint' does not declare a navigation property with the name 'Color'.
指定包含路徑無效
DAL
public DBSet<Palete> Paletes {get; set; }
public DbSet<Paint> Paints { get; set; }
(注:modelBuilder.Conventions.Remove<PluralizingTableNameConvention>();
)
型號
public class Palete
{
public virtual Paint Paint { get; set; }
}
public class Paint
{
public string Color { get; set; }
}
query = query.Include(pal => pal.Paint.Color);
我該如何解決這個錯誤?
只是你知道,正確的拼寫是[調色板](http://dictionary.reference.com/browse/palette)... – Timwi 2012-03-17 22:27:23
@Timwi - 修正:) – 2012-03-17 22:33:07