2016-08-12 3 views
0

私はEntity Framework Code Firstモデルを持っています。 1つのインサートにアカウントのコレクションを保存しようとすると、エラーメッセージが表示されます。Entity Frameworkセーブコレクション

public class User 
{ 
    [Key] 
    public int Usr_Id { get; set; } 
    [Required] 
    [MaxLength(35)] 
    public string Name { get; set; } 
    [Required] 
    [MaxLength(35)] 
    public string Surname { get; set; } 
    [Required] 
    [MaxLength(35)] 
    public string Location { get; set; }   

    //NAVIGATION 
    public User() 
    { 
     UserDevices = new List<UserDevice>(); 
    } 

    public virtual ICollection<UserDevice> UserDevices { get; set; } 

} 

public class UserDevice 
{ 
    [Key] 
    public int UsrDev_Id { get; set; } 
    [Required] 
    [MaxLength(50)] 
    public string PurposeOfUse { get; set; } 

    // NAVIGATION 

    public UserDevice() 
    { 
     Accounts = new List<Account>(); 
    } 

    //User can have many UserDevice 
    public int Usr_Id { get; set; }   
    public virtual User User { get; set; } 

    //UserDevice can have many Acoount 
    public virtual ICollection<Account> Accounts { get; set; } 

    //One to one 
    public virtual SoftwareInformation SoftwareInformation { get; set; } 
    public virtual HardwareInformation HardwareInformation { get; set; } 
} 

public class Account 
{ 
    [Key] 
    public int Acc_Id { get; set; } 
    public string Name { get; set; } 

    //NAVIGATION 

    //UserDevice can have many Account 
    public int UsrDev_Id { get; set; } 
    public virtual UserDevice UserDevice { get; set; } 

} 

新しいUserDeviceの挿入

List<Account> accountsList = new List<Account>(); 

      foreach (var item in model.DeviceInformations.OS.Accounts) 
      { 
       accountsList.Add(new Account { Name = item.Name }); 
      }    


      _unitOfWork.UserDevices.Add(new UserDevice 
      { 
       Usr_Id = model.Usr_Id, 
       PurposeOfUse = model.PurposeOfUse, 

       HardwareInformation = new HardwareInformation 
       { 
        MB_Manufacturer = model.DeviceInformations.Motherboard.Manufacturer, 
        MB_Model = model.DeviceInformations.Motherboard.Model, 
        MB_Name = model.DeviceInformations.Motherboard.Name, 
        MB_UUID = model.DeviceInformations.Motherboard.UUID, 
        CPU_Manufacturer = model.DeviceInformations.Processor.Manufacturer, 
        CPU_MaxClockSpeed = model.DeviceInformations.Processor.MaxClockSpeed, 
        CPU_Name = model.DeviceInformations.Processor.Name, 
       }, 

       SoftwareInformation = new SoftwareInformation 
       { 
        OS_Edition = model.DeviceInformations.OS.Edition, 
        OS_HostName = model.DeviceInformations.OS.HostName, 
        OS_Language = model.DeviceInformations.OS.Language, 
        OS_Platform = model.DeviceInformations.OS.Platform, 
        OS_ProductKey = model.DeviceInformations.OS.ProductKey, 
        OS_ServicePackVersion = model.DeviceInformations.OS.ServicePackVersion, 
        OS_Version = model.DeviceInformations.OS.Version 
       }, 

       Accounts = accountsList 
      }); 
      _unitOfWork.Commit(); 

エラーメッセージ

{ "の列にNULL値を挿入することはできません 'Acc_Id'、テーブル 'LICENSE_WATCHER_TEST.dbo.Accounts';列はありませんNULLを許可しません。INSERTは失敗します。\ r \ nこのステートメントは終了しました。 "}

私はAccoutコレクションを保存しようとするとそれは起こる。 1つのインサートにAccoutsコレクションを保存する方法はありますか?

答えて

1

Acc_idが挿入時にnullである:

はこのような何かを試してみてください。私はIDがこのような場合に自動生成されることを期待します。データベースのID列ではなく、PKとして設定されたアカウントテーブルのAcc_id列を持つ可能性はありますか?

これは、発生している現象が発生する可能性があります。

+1

IDは実際にはデータベースに設定されていません。問題は、流暢なAPI設定であった。 – Michal

0

まあ、Acc_IdがPrimayキーとして定義されており、テーブルにnull値を挿入しようとしているようです。

ここでは、アカウントリストを作成していますが、唯一のName

 foreach (var item in model.DeviceInformations.OS.Accounts) 
     { 
      accountsList.Add(new Account { Name = item.Name }); 
     }  

に記入し、あなたはIdを充填していないAccounts = accountsListを行うコミットする前に、あなたはaccountsList の変更をしませんコミットしようとする。

 foreach (var item in model.DeviceInformations.OS.Accounts) 
     { 
      accountsList.Add(new Account { Acc_Id = !!someIdHere!!, Name = item.Name }); 
     }