希望在通用Windows應用程序中使用SQLite中的實體框架7(實體框架核心)。EF7 UWP SQLite .Include()方法
`噸找到.INCLUDE(X => x.SomeNvaigationProperty)
.INCLUDE()不System.Data.Entity的
出現在智能感知
.INCLUDE() System.Data.Entity在UWP中不可用
在UWP中使用什麼(如.Include())?
public class Parent
{
public Guid Id { get; set; }
public List<Child> Childs { get; set; }
}
public class Child
{
public Guid Id { get; set; }
public Guid ParentId { get; set; }
public Parent Parent { get; set; }
}
dbContext.Parent.Include(x => x.Childs).ToList();
dbContext.Childs.Include(x => x.Parent).ToList();
它不清楚。你到底想要什麼?詳細一點 –
你是說'.Include()'不會出現在intellisense中嗎?添加'使用System.Linq;' –
是「.Include()未顯示在智能感知中」 –