public static T ScalarWhere <T>(string condition) where T : Model, new()
 {
     return(Transactor.GetScalarWhere <T>(condition));
 }
 // Static members.
 public static T ScalarWhereID <T>(int id) where T : Model, new()
 {
     return(Transactor.GetScalarWhere <T>(string.Format(Resources.WhereID, id)));
 }