fluent-nhibernate icon indicating copy to clipboard operation
fluent-nhibernate copied to clipboard

one to many throw Batch update returned unexpected row count from update

Open yuzhaoMR opened this issue 7 years ago • 0 comments

//table CustomerArchives public virtual IList<Evaluation> Evaluations { get; protected set; } // Relationships HasMany(x => x.Evaluations).Inverse().Cascade.All();

//table Evaluation public virtual CustomerArchives CustomerArchives { get; protected set; } // Relationships References(x => x.CustomerArchives);

I think there is no problem I wrote.but throw exception "Batch update returned unexpected row count from update". please help me

yuzhaoMR avatar Nov 18 '18 08:11 yuzhaoMR