Castle.ActiveRecord.ActiveRecordBase.Update C# (CSharp) Метод

Update() публичный Метод

Persists the modification on the instance state to the database.
If within a SessionScope the operation is going to be on hold until NHibernate (or you) decides to flush the session.
public Update ( ) : void
Результат void
		public virtual void Update()
		{
			Update(this);
		}

Same methods

ActiveRecordBase::Update ( object instance ) : void

Usage Example

Пример #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