0
我知道我可以包括這樣一些國外的主要對象:IQueryable的確切值是什麼<T> Include(string path)方法?
xx.Include(p=>p.xxId)
,但我發現,還有另一種重載方法有一個參數路徑。 我想知道我到底需要傳遞參數的值。 感謝您的幫助。
我知道我可以包括這樣一些國外的主要對象:IQueryable的確切值是什麼<T> Include(string path)方法?
xx.Include(p=>p.xxId)
,但我發現,還有另一種重載方法有一個參數路徑。 我想知道我到底需要傳遞參數的值。 感謝您的幫助。
導航路徑。
Items.Include(item => item.Category)
Items.Include(item => item.Category.SubCategories)
相當於
Items.Include("Category");
Items.Include("Category.SubCategories");