NHibernate Partial Update
Posted
by bleevo
on Stack Overflow
See other posts from Stack Overflow
or by bleevo
Published on 2009-08-17T00:28:36Z
Indexed on
2010/04/26
12:43 UTC
Read the original article
Hit count: 143
nhibernate
Is there a way in NHibernate to start with an unproxied model
var m = new Model() { ID = 1 };
m.Name = "test";
//Model also has .LastName and .Age
Now save this model only updating Name without first selecting the model from the session?
© Stack Overflow or respective owner