Refresh() 공개 메소드

Refresh the instance from the database.
public Refresh ( ) : void
리턴 void
예제 #1
0
 /// <summary>
 /// Refresh the instance from the database.
 /// </summary>
 /// <param name="instance">The ActiveRecord instance to be reloaded</param>
 public static void Refresh(object instance)
 {
     ActiveRecordBase.Refresh(instance);
 }
예제 #2
0
 /// <summary>
 /// Refresh the instance from the database.
 /// </summary>
 /// <param name="instance">The ActiveRecord instance to be reloaded</param>
 protected internal static void Refresh(T instance)
 {
     ActiveRecordBase.Refresh(instance);
 }