Update Object

In NObject O/R Mapping persistence layer, it's simple to update object: to get an object and assign its properties, then "Save" it as the following sample:

Order o = Order.GetByOrderID(om, 10252);

o.ShipAddress = "...";

o.Save();

Related Topics

Using NObject Object
Updating Object in Batches
Using Filter
Using OQL