10

エンティティ オブジェクトの があり、各List<State>オブジェクトには、、などの他のオブジェクトのコレクションがあります。StateStateLicensesTaxesBonds

のコレクションもありExpiredObjectsます。これは、期限切れで更新が必要なオブジェクトのリストです。何らかの理由で、特定の州 (ネバダ州) でアクセスしようとすると、このプロパティが表示されますが、どこにも値が表示NullReferenceExceptionされないため、実際に何が何であるかを理解することはできません。nullnull

これが例外をスローする私のコードです。すべての状態をループしExpiredObjects、表示されるビュー固有のコレクションにすべてを追加します。私のテストコードはまだ含まれています

    private List<ExpiredObject> LoadAllExpiredObjects()
    {
        var list = new List<ExpiredObject>();
        foreach (var state in States)
        {
            // This tells me the state is not null, and neither is state.ExpiredObjects
            Debug.WriteLine(string.Format("{0}|{1}|{2}", 
                state.Name, state == null, state.ExpiredObjects == null));

            try
            {
                var x = state.ExpiredObjects;
                Debug.WriteLine(x == null);

                // Exception occurs on the "for" line on the Nevada state only
                // Contents in for loop do not execute
                foreach (var item in x)
                {
                    Debug.WriteLine(string.Format("{0}", item));
                    list.Add(item);
                }

                // This used to be the only line of code before I started testing
                // It fails on Nevada
                //list.AddRange(state.ExpiredObjects);
            }
            catch (Exception ex)
            {
                Debug.WriteLine(ex.Message);
                Debug.WriteLine(ex.StackTrace);
            }
        }
        return list;
    }

エラーのスタック トレースは次のとおりです。

A first chance exception of type 'System.NullReferenceException' occurred in System.Data.Entity.dll
Object reference not set to an instance of an object.
   at System.Data.EntityKey.AddHashValue(Int32 hashCode, Object keyValue)
   at System.Data.EntityKey.GetHashCode()
   at System.Collections.Generic.GenericEqualityComparer`1.GetHashCode(T obj)
   at System.Collections.Generic.Dictionary`2.FindEntry(TKey key)
   at System.Collections.Generic.Dictionary`2.TryGetValue(TKey key, TValue& value)
   at System.Data.Objects.ObjectStateManager.TryGetEntityEntry(EntityKey key, EntityEntry& entry)
   at System.Data.Common.Internal.Materialization.Shaper.HandleEntityAppendOnly[TEntity](Func`2 constructEntityDelegate, EntityKey entityKey, EntitySet entitySet)
   at lambda_method(Closure , Shaper )
   at System.Data.Common.Internal.Materialization.Coordinator`1.ReadNextElement(Shaper shaper)
   at System.Data.Common.Internal.Materialization.Shaper`1.SimpleEnumerator.MoveNext()
   at System.Data.Objects.DataClasses.RelatedEnd.Merge[TEntity](IEnumerable`1 collection, MergeOption mergeOption, Boolean setIsLoaded)
   at System.Data.Objects.DataClasses.EntityCollection`1.Load(List`1 collection, MergeOption mergeOption)
   at System.Data.Objects.DataClasses.EntityCollection`1.Load(MergeOption mergeOption)
   at System.Data.Objects.DataClasses.RelatedEnd.Load()
   at System.Data.Objects.DataClasses.RelatedEnd.DeferredLoad()
   at System.Data.Objects.DataClasses.EntityCollection`1.GetEnumerator()
   at MyNamespace.StatesViewModel.LoadAllExpiredObjects() in C:\Users\me\Desktop\MySolution\StatesViewModel.cs:line 217

DataGridネバダを選択してコレクションにバインドしようとすると、まったく同じエラーが発生しますExpiredObjects(そのバインディングをコメントアウトすると、コードは正常に機能します)

このエラーの原因を知っている人はいますか?

4

2 に答える 2

24

ネバダだけの場合は、データの問題である必要があります。データベースで徹底的なチェックを行ってください。

要約すると、中心的な問題は次のとおりです。

  • それはdb-firstでした。
  • ... EF で非 null としてマークされたフィールドの 1 つに対して null 値を返していました
于 2012-05-01T20:08:26.753 に答える