On you XYZRepository code something like this on the MyListHandlerClass
private class MyListHandler : ListRequestHandler<MyRow>
{
protected override void ApplyFilters(SqlQuery query)
{
base.ApplyFilters(query);
query.Where(fld.UserId == Convert.ToInt32(Authorization.UserId));
}
}