Skip to content
Discussion options

You must be logged in to vote

Hey @mmendoza-apa try to follow these steps and let me know:

1- You have to make sure that your pull size on the server even permits this much. You can configure it in your controller.

Something like this:

[Route("tables/[controller]")]
public class MoviesController : TableController<Movie>
{
  public MoviesController(AppDbContext context) : base()
  {
    Repository = new EntityTableRepository<Movie>(context);
    Options = new TableControllerOptions { PageSize = 10_000 }; // <- HERE
  }
}

2- Datasync supports OData query parameters, so on the client side, you will specify the query parameters in the queryparameters property.

PullResult pullResult = await dbContext.PullAsync(cfg =>
{
    c…

Replies: 1 comment 3 replies

Comment options

You must be logged in to vote
3 replies
@mmendoza-apa
Comment options

@mmendoza-apa
Comment options

@mmendoza-apa
Comment options

Answer selected by mmendoza-apa
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants