データベース内の既存の講師のデータを更新するのに苦労しています。
すべての講師にはName、AcademicDegree、および彼/彼女が教えるコース ( Courses ==Lessons ) があります。
実際には、より多くのプロパティがありますがclass Lecturer
、それらは関連していません。簡単にするために、 POCOクラスが次のように定義されていると仮定します。
// POCO class (Entity Framework Reverse Engineering Code First)
public class Lecturer
{
public Lecturer()
{
this.Courses = new List<Course>();
}
public int Id_Lecturer { get; set; } // Primary Key
public string Name { get; set; }
public int? Academic_Degree_Id { get; set; }
public virtual AcademicDegree AcademicDegree { get; set; }
public virtual ICollection<Course> Courses { get; set; }
}
データアクセスレイヤーには、( 、およびを使用して)に等しいvoid UpdateLecturer(Lecturer lecturer)
講師を更新するメソッドがあります。Id_Lecturer
lecturer.Id_Lecturer
lecturer.Name
lecturer.AcademicDegree
lecturer.Courses
ViewModelで呼び出すことができるため、非常に便利なメソッドです_dataAccess.UpdateLecturer(SelectedLecturer)
(SelectedLecturer
はXAMLにバインドされています。プロパティはes およびSelectedLecturer
でユーザーが設定できます)。TextBox
Checkbox
残念ながら、この方法:
public void UpdateLecturer(Lecturer lecturer)
{
using(var db = new AcademicTimetableDbContext())
{
// Find lecturer with Primary Key set to 'lecturer.Id_Lecturer':
var lect = db.Lecturers.Find(lecturer.Id_Lecturer);
// If not found:
if (lect == null)
return;
// Copy all possible properties:
db.Entry(lect).CurrentValues.SetValues(lecturer);
// Everything was copied except 'Courses'. Why?!
// I tried to add this, but it doesn't help:
// var stateMgr = (db as IObjectContextAdapter).ObjectContext.ObjectStateManager;
// var stateEntry = stateMgr.GetObjectStateEntry(lect);
// stateEntry.SetModified();
db.SaveChanges();
}
}
は、 の後に変更されていないものを除いて、すべて (つまりId_Lecturer
、Name
、Academic_Degree_Id
およびAcademicDegree
)を更新します。 Courses
db.SaveChanges()
なんで?どうすれば修正できますか?
同様の問題:
- エンティティ フレームワーク内のエンティティの更新
- データベースにないエンティティ フレームワーク オブジェクトをアタッチする方法
- using-dbcontext-in-ef-feature-ctp5-part-4-add-attach-and-entity-states.aspx
- エンティティ フレームワークの更新と関連エンティティ
- entity-framework-code-first-no-detach-method-on-dbcontext
- 編集 -
私もこの方法を試しました(アイデアはこの投稿から来ました):
public void UpdateLecturer(Lecturer lecturer)
{
using (var db = new AcademicTimetableDbContext())
{
if (lecturer == null)
return;
DbEntityEntry<Lecturer> entry = db.Entry(lecturer);
if (entry.State == EntityState.Detached)
{
Lecturer attachedEntity = db.Set<Lecturer>().Find(lecturer.Id_Lecturer);
if (attachedEntity == null)
entry.State = EntityState.Modified;
else
db.Entry(attachedEntity).CurrentValues.SetValues(lecturer);
}
db.SaveChanges();
}
}
ただし、コースは古い値を上書きしません。
-- 編集 2 --
@Slauma の質問に応えて、どのようにロードしたか (メソッドに引数としてSelectedLecturer
渡される)について説明します。UpdateLecturer(Lecturer lecturer)
私はMVVMの概念を実装しているので、ソリューション内にプロジェクトを表示し、に設定しています。ビューには、データベースから取得したすべての講師のリストがあります。は次のようにバインドされます。DataContext
LecturerListViewModel
DataGrid
DataGrid
<DataGrid AutoGenerateColumns="False" Name="LecturersDataGrid" HeadersVisibility="Column" IsReadOnly="True" ItemsSource="{Binding Lecturers,Mode=TwoWay}" SelectedItem="{Binding SelectedLecturer, Mode=TwoWay}">
<DataGrid.Columns>
<DataGridTextColumn Header="Name" Binding="{Binding Name}" />
<DataGridTextColumn Header="Academic degree" Binding="{Binding AcademicDegree.Degree_Name}" />
<DataGridTemplateColumn>
<DataGridTemplateColumn.CellTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal">
<Button Content="Edit" Click="EditButtonClick"/>
<Button Content="Delete" Command="{Binding DataContext.RemoveLecturer, ElementName=LecturersDataGrid}" />
</StackPanel>
</DataTemplate>
</DataGridTemplateColumn.CellTemplate>
</DataGridTemplateColumn>
</DataGrid.Columns>
</DataGrid>
Lecturers
LecturerListViewModel
次の方法で、コンストラクターでデータベースからフェッチされます。
///
/// Code within LecturerListViewModel class:
///
// All lecturers from database.
public ObservableCollection<Lecturer> Lecturers
// Constructor
public LecturerListViewModel()
{
// Call to Data Access Layer:
Lecturers = new ObservableCollection<Lecturer>(_dataAccess.GetAllLecturers());
// Some other stuff here...
}
private Lecturer _selectedLecturer;
// Currently selected row with lecturer.
public Lecturer SelectedLecturer
{
get { return _selectedLecturer; }
set { SetProperty(out _selectedLecturer, value, x => x.SelectedLecturer); }
}
///
/// Data Access Layer (within DataAccess class):
///
public IEnumerable<Lecturer> GetAllLecturers()
{
using (var dbb = new AcademicTimetableDbContext())
{
var query = from b
in dbb.Lecturers.Include(l => l.AcademicDegree).Include(l => l.Timetables).Include(l => l.Courses)
select b;
return query.ToList();
}
}