Castle.ActiveRecord.ActiveRecordBase.Update C# (CSharp) Method

Update() protected static method

Persists the modification on the instance state to the database.
protected static Update ( object instance ) : void
instance object The ActiveRecord instance to be updated on the database
return void
		protected internal static void Update(object instance)
		{
			InternalUpdate(instance, false);
		}

Same methods

ActiveRecordBase::Update ( ) : void

Usage Example

Ejemplo n.º 1
0
 /// <summary>
 /// Persists the modification on the instance
 /// state to the database.
 /// </summary>
 /// <param name="instance">The ActiveRecord instance to be deleted</param>
 public static void Update(object instance)
 {
     ActiveRecordBase.Update(instance);
 }
All Usage Examples Of Castle.ActiveRecord.ActiveRecordBase::Update