/// <summary> /// Creates (Saves) a new instance to the database. /// </summary> /// <param name="instance">The ActiveRecord instance to be deleted</param> public static void Create(object instance) { ActiveRecordBase.Create(instance); }
public virtual void Create() { ActiveRecordBase.Create(this); }
/// <summary> /// Creates (Saves) a new instance to the database. /// </summary> /// <param name="instance">The ActiveRecord instance to be created on the database</param> protected internal static void Create(T instance) { ActiveRecordBase.Create(instance); }