我有一個基礎機構A,和派生實體:AA,AB,AC,AD的EntityFramework的GroupBy實體類型
context.A.GroupBy(x => x.GetType()).Select(x => new { type=x.GetType(), count = x.Count() });
當然,我得到錯誤:
LINQ to Entities does not recognize the method 'System.Type GetType()' method, and this method cannot be translated into a store expression.
我怎麼能集團派生實體按類型?
你有沒有找到解決這個問題的方法?我面對完全相同的問題。 –
您是否找到了解決方案? – Karan