Can you dynamically fill in a db value on commit in nhibernate/fluent nhibernate?

I'm not sure how you will save the first element of a repeating group... but NH batches saves, not id assignments, so you can just do.

I'm not sure how you will save the first element of a repeating group... but NH batches saves, not id assignments, so you can just do: var repeatingId = session. Save(firstAppointmentOfTheGroup) foreach (var appointment in repeating) { appointment. RepeatingId = repeatingId; session.

Save(appointment); } That said, I don't understand why you are replicating the model that jquery uses in your model/DB. Instead, you should use a normalized model (with RepeatingAppointment having a collection of Appointments) and project that when using it.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions