Kirill

Results 34 comments of Kirill

If we use pagination, then we may not be sure that the next query will return next data. For example, if you sort in descending order by creation date (from...

I think we just left note in README that for using paginate export need not changed and ordered data.

So: 1. Validate: Initial query must havnt offset & limit. 2. Validate: must have order by in initial query. 3. Add limit (PAGE_SIZE) for query. 4. Extract seek field from...

> Why 1 ? Cant you use the max result and the offset provided ? Extra where in 7 broke offset & limit. > Why 2 ? Cant you add...

> @kirya-dev Hi, I tried to use your solution with latest version of exporter, but export is still crashing on memory (even with 500MB memory and only 15k records). Could...

Hello! Decide this problem is no simple task. Good idea was suggest to using database cursor. Doctrine dosent supports this functionality officcialy. But im found package for resolve this missing...

Implementations for many platforms can be different. We must implements this feature for every popular database platforms.. Its a big work

Some optimized: > $request->attributes->get('_sonata_admin') ?: $request->query->get('_sonata_admin')

Im suggest solving in any issue: Before set data we delete fisrt. @VincentLanglet you are closed not that issue. Problem solving here: https://github.com/sonata-project/SonataAdminBundle/issues/6391#issuecomment-709232369

> What about having an allow list to make sure we don't allow incompatible values? Whats are your mean? ```php class Dto { /** * @type int|string * @Assert\Type(["float", "string"])...