データベースに新しいユーザーを保存しようとすると問題が発生します。私のコード:SaveOrUpdate()でコレクションをnullにすることはできません
if (!user.ValidateUser(username, password))
{
using (var session = NHibernateHelper.OpenSession())
{
User u = new User();
u.Name = username;
u.Email = string.Empty;
u.Password = "123456";
using (var transact = session.Transaction)
{
session.SaveOrUpdate(u); // I have an exception in this line
transact.Commit();
}
}
}
エラー:
がどのようにデータベースに新しいユーザーを保存するには?Collection cannot be null. Parameter name: c
P.S. session.Save(user1);
この例外も私に教えてください。
更新: Userクラス
public partial class User
{
public User()
{
this.CurrentTestings = new HashSet<CurrentTesting>();
this.ResultsSet = new HashSet<ResultTesting>();
}
public virtual int Id { get; set; }
public virtual string Name { get; set; }
public virtual string Password { get; set; }
public virtual string Email { get; set; }
public virtual ICollection<CurrentTesting> CurrentTestings { get; set; }
public virtual ICollection<ResultTesting> ResultsSet { get; set; }
}
'User'クラスを投稿してください。 –
@Rory McCrossanが更新されました – LuckSound
再利用の代わりに新しいユーザーを作成しますか? – abatishchev