コンテキストにエントリを追加するソフトウェアがあります。changetracker を使用して、レポート目的で Poco クラスのリストを生成したいと考えています。
このような:
List<customRecord> addedRecords = context.ChangeTracker.Entries<customRecord>().Where(e => e.State == EntityState.Added).ToList();
結果は次のエラーです。
Cannot implicitly convert type 'System.Collections.Generic.List<System.Data.Entity.Infrastructure.DbEntityEntry<T>>' to 'System.Collections.Generic.List<T>'
これを達成する方法はありますか?
敬具。