У меня есть 5 объектов:
public class Album
{
public int Id { get; set; }
public string Title { get; set; }
public virtual List<AlbumArtist> AlbumArtists { get; set; }
public virtual List<Artist> Artists { get; set; }
public virtual List<Genre> Genres { get; set; }
public virtual List<Song> Songs { get; set; }
}
public class AlbumArtist
{
public int Id { get; set; }
public string Title { get; set; }
public virtual List<Album> Albums { get; set; }
public virtual List<Artist> Artists { get; set; }
public virtual List<Genre> Genres { get; set; }
public virtual List<Song> Songs { get; set; }
}
public class Artist
{
public int Id { get; set; }
public string Title { get; set; }
public virtual List<AlbumArtist> AlbumArtists { get; set; }
public virtual List<Album> Albums { get; set; }
public virtual List<Genre> Genres { get; set; }
public virtual List<Song> Songs { get; set; }
}
public class Genre
{
public int Id { get; set; }
public string Title { get; set; }
public virtual List<AlbumArtist> AlbumArtists { get; set; }
public virtual List<Album> Albums { get; set; }
public virtual List<Artist> Artists { get; set; }
public virtual List<Song> Songs { get; set; }
}
public class Song
{
public int Id { get; set; }
public string Title { get; set; }
public virtual List<AlbumArtist> AlbumArtists { get; set; }
public virtual List<Album> Albums { get; set; }
public virtual List<Artist> Artists { get; set; }
public virtual List<Genre> Genres { get; set; }
}
Как вы можете видеть, существует много отношений "многие ко многим". Я заполняю свои объекты, а затем пытаюсь сохранить их в DbContext таким образом:
_albumArtists.ForEach(delegate(AlbumArtist albumArtist)
{
if (albumArtist.Id == 0)
{
_dbContext.Entry(entity).State = EntityState.Added;
_dbContext.SaveChanges();
}
else
{
_dbContext.Entry(entity).State = EntityState.Modified;
_dbContext.SaveChanges();
}
});
...
или таким образом:
_albumArtists.ForEach(delegate(AlbumArtist albumArtist)
{
if (albumArtist.Id == 0)
{
_dbContext.Entry(entity).State = EntityState.Added;
}
else
{
_dbContext.AlbumArtists.State = EntityState.Modified;
}
});
_dbContext.SaveChanges();
...
Навсегда сохранить мои объекты в DbContext. Я даже пытался сделать следующее:
Configuration.AutoDetectChangesEnabled = false;
Но это не помогло. Кстати, есть около 17 000 песен и 1 700 альбомов.
Что не так???
Пожалуйста, помогите!
PS
Вот мой полный код: https://github.com/vjacheslavravdin/PsyTrance/blob/master/PsyTrance/Program.cs Возможно, вы можете предложить, как упростить его.
Спасибо!