Search Results

0
votes
2answers
153 views

Is it possible to update/change a primary key with NHibernate?

I have a database that uses natural keys (i.e. business oriented keys). Unfortunately, because of this, the primary keys for these objects may change over time. I am currently researching …
0
votes

What is the correct way to deal with procedures that take a “long time” to complete?

You will want to take advantage of Threading. When the user signals to fetch the data, you can spawn a new thread to fetch the data while making a throbber visible on the main form. When the thread …
0
votes

Is it possible to update/change a primary key with NHibernate?

I'm actually kicking myself that I even asked this question because I can easily mitigate this by doing a delete-insert type of operation. This was more of a proof-of-concept with an existing datab …