|
@@ -77,6 +77,12 @@ namespace InABox.Clients
|
|
|
return CheckClient<TEntity>().Query(filter, columns, orderby);
|
|
|
}
|
|
|
|
|
|
+ public static void Query<TEntity>(Filter<TEntity>? filter, Columns<TEntity>? columns, SortOrder<TEntity>? orderby, Action<CoreTable?, Exception?> callback)
|
|
|
+ where TEntity : Entity, IRemotable, IPersistent, new()
|
|
|
+ {
|
|
|
+ CheckClient<TEntity>().Query(filter, columns, orderby, callback);
|
|
|
+ }
|
|
|
+
|
|
|
public static void Save<TEntity>(TEntity entity, string auditNote)
|
|
|
where TEntity : Entity, IRemotable, IPersistent, new()
|
|
|
{
|