数週間、.NET 4.0 ソリューションで Entity Framework を使用しています。EF 4.3.1 です。最初にデータベース スキーマを作成し、「EF4.x DbContext Generator」テンプレートを使用してエンティティ オブジェクトを生成しました。
スキーマに 3 つのテーブルがあり、単純な CRUD メソッドですべて正常に機能していました。
ここで、既存のテーブル「SourceUri」への外部キー参照を持つ 4 番目のテーブル「Subjects」を追加しました。これにより、SourceUri は 0 個以上のサブジェクトを持つことができ、サブジェクトは正確に 1 つの SourceUri を持つことができます。
edmx モデルを更新しましたが、正しく見えます。ただし、何を試しても、次のことができないようです。
- 新しい SourceUri レコードを追加する
- 新しい SourceUri に 1 つ以上のサブジェクトを追加します
これは私が現在試しているコードです。コンテキストを定期的に保存していることがわかりますが、もともとはメソッドの最後に一度だけ変更を保存していました。
/// <summary>
/// Adds a new Source URI to the system
/// </summary>
/// <param name="sourceUri">The source URI to add</param>
/// <param name="subjectNames">List of subjects for this source URI, in order</param>
/// <returns>The added source URI</returns>
public SourceUri AddSourceUri(SourceUri sourceUri, IList<string> subjectNames)
{
try
{
_logger.Debug("Adding new source URI '{0}', with '{1}' subjects.", sourceUri.Uri,
subjectNames != null ? subjectNames.Count : 0);
LogSourceUriDetails(sourceUri, "Adding");
using (var dbContext = GetDbContext())
{
dbContext.SourceUris.Add(sourceUri);
dbContext.SaveChanges(); // this save succeeds
// add the subjects if there are any
if (subjectNames != null)
{
for (int i = 0; i < subjectNames.Count; i++)
{
Subject newSubject = new Subject()
{
DisplayOrder = i,
SourceUriId = sourceUri.SourceUriId,
SubjectText = subjectNames.ElementAt(i).Trim()
};
_logger.Debug("Adding new subject '{0}' to source URI '{1}'.", newSubject.SubjectText,
sourceUri.Uri);
dbContext.Subjects.Add(newSubject); // this line fails
dbContext.SaveChanges();
}
}
_logger.Debug("Successfully added new source URI '{0}' with '{1}' subjects. Source URI ID is '{2}'.",
sourceUri.Uri, subjectNames != null ? subjectNames.Count : 0, sourceUri.SourceUriId);
return sourceUri;
}
}
catch (Exception exception)
{
_logger.ErrorException(string.Format("An error occurred adding new source URI '{0}' with '{1}' subjects.",
sourceUri.Uri, subjectNames != null ? subjectNames.Count : 0), exception);
throw;
}
}
コードは新しい SourceUri を追加し、変更を保存します。ただし、新しいサブジェクトをデータ コンテキストに追加することはできません。その変更を保存しようとするところまでは行きません。
例外は次のとおりです。
Unable to set field/property Subjects on entity type CommentService.DomainObjects.SourceUri. See InnerException for details.
System.Data.Objects.Internal.PocoPropertyAccessorStrategy.CollectionRemove(RelatedEnd relatedEnd, Object value)
System.Data.Objects.Internal.EntityWrapper`1.CollectionRemove(RelatedEnd relatedEnd, Object value)
System.Data.Objects.DataClasses.EntityCollection`1.RemoveFromObjectCache(IEntityWrapper wrappedEntity)
System.Data.Objects.DataClasses.RelatedEnd.Remove(IEntityWrapper wrappedEntity, Boolean doFixup, Boolean deleteEntity, Boolean deleteOwner, Boolean applyReferentialConstraints, Boolean preserveForeignKey)
System.Data.Objects.DataClasses.RelatedEnd.FixupOtherEndOfRelationshipForRemove(IEntityWrapper wrappedEntity, Boolean preserveForeignKey)
System.Data.Objects.DataClasses.RelatedEnd.Remove(IEntityWrapper wrappedEntity, Boolean doFixup, Boolean deleteEntity, Boolean deleteOwner, Boolean applyReferentialConstraints, Boolean preserveForeignKey)
System.Data.Objects.DataClasses.EntityReference`1.Exclude()
System.Data.Objects.DataClasses.RelationshipManager.RemoveRelatedEntitiesFromObjectStateManager(IEntityWrapper wrappedEntity)
System.Data.Objects.ObjectContext.AddObject(String entitySetName, Object entity)
System.Data.Entity.Internal.Linq.InternalSet`1.<>c__DisplayClass5.<Add>b__4()
System.Data.Entity.Internal.Linq.InternalSet`1.ActOnSet(Action action, EntityState newState, Object entity, String methodName)
System.Data.Entity.Internal.Linq.InternalSet`1.Add(Object entity)
System.Data.Entity.DbSet`1.Add(TEntity entity)
CommentService.Business.Managers.SourceUriManager.AddSourceUri(SourceUri sourceUri, IList`1 subjectNames) in C:\Projects\SVN Misc Projects\CommentService\trunk\CommentService.Business\Managers\SourceUriManager.cs:line 152
CommentService.Web.Comment.AddSourceUri(SourceUri sourceUri, IList`1 subjectNames) in C:\Projects\SVN Misc Projects\CommentService\trunk\CommentService.Web\Comment.svc.cs:line 173
SyncInvokeAddSourceUri(Object , Object[] , Object[] )
System.ServiceModel.Dispatcher.SyncMethodInvoker.Invoke(Object instance, Object[] inputs, Object[]& outputs)
System.ServiceModel.Dispatcher.DispatchOperationRuntime.InvokeBegin(MessageRpc& rpc)
System.ServiceModel.Dispatcher.ImmutableDispatchRuntime.ProcessMessage5(MessageRpc& rpc)
System.ServiceModel.Dispatcher.ImmutableDispatchRuntime.ProcessMessage41(MessageRpc& rpc)
System.ServiceModel.Dispatcher.ImmutableDispatchRuntime.ProcessMessage4(MessageRpc& rpc)
System.ServiceModel.Dispatcher.ImmutableDispatchRuntime.ProcessMessage31(MessageRpc& rpc)
System.ServiceModel.Dispatcher.ImmutableDispatchRuntime.ProcessMessage3(MessageRpc& rpc)
System.ServiceModel.Dispatcher.ImmutableDispatchRuntime.ProcessMessage2(MessageRpc& rpc)
System.ServiceModel.Dispatcher.ImmutableDispatchRuntime.ProcessMessage11(MessageRpc& rpc)
System.ServiceModel.Dispatcher.ImmutableDispatchRuntime.ProcessMessage1(MessageRpc& rpc)
System.ServiceModel.Dispatcher.MessageRpc.Process(Boolean isOperationContextSet)
私はこれについてぐるぐると回って、いくつかのわずかに異なる例外を見てきました. それらはすべて、SourceUri オブジェクトの Subjects ナビゲーション プロパティが何らかの形で読み取り専用または固定長 (配列?) であるという事実を示しているようです。
生成されたエンティティ クラスは次のようになります。
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated from a template.
//
// Manual changes to this file may cause unexpected behavior in your application.
// Manual changes to this file will be overwritten if the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace CommentService.DomainObjects
{
using System;
using System.Collections.Generic;
public partial class SourceUri
{
public SourceUri()
{
this.Comments = new HashSet<Comment>();
this.Subjects = new HashSet<Subject>();
}
public long SourceUriId { get; set; }
public string Uri { get; set; }
public string Description { get; set; }
public System.DateTime DateCreated { get; set; }
public string AdminUser { get; set; }
public virtual ICollection<Comment> Comments { get; set; }
public virtual ICollection<Subject> Subjects { get; set; }
}
}
//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated from a template.
//
// Manual changes to this file may cause unexpected behavior in your application.
// Manual changes to this file will be overwritten if the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace CommentService.DomainObjects
{
using System;
using System.Collections.Generic;
public partial class Subject
{
public Subject()
{
this.Comments = new HashSet<Comment>();
}
public long SubjectId { get; set; }
public long SourceUriId { get; set; }
public string SubjectText { get; set; }
public int DisplayOrder { get; set; }
public virtual ICollection<Comment> Comments { get; set; }
public virtual SourceUri SourceUri { get; set; }
}
}
なぜこれが機能しないのですか?
私がチェック/試したことのクイックリスト:
- データベース スキーマは正しいように見えます - SQL と主キー、外部キー、ID を使用して期待どおりにレコードを挿入できますが、正しく動作しているようです
- モデルは、PK ID (EntityKey = true、StoreGeneratedPattern = Identity) を含め、データベース スキーマを正しく反映しているようです。
- EF を取得してスキーマにデータを永続化することができましたが、データが挿入された後、コンテキストが同期していない可能性があることを示す例外がスローされます。これも、SourceUri オブジェクトの Subjects ナビゲーション プロパティを更新できないことに関連しています。
- Subjects を dbContext.Subjects コレクションと SourceUri.Subjects コレクションに追加しようとしました。サブジェクトの SourceUriId プロパティの代わりにサブジェクトの SourceUri プロパティを設定しようとしました。