We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
the parameter MaxRecordCount for the Method SelectRQL doesn't work, it is ignored by the Method InternalSelectRQL:
MaxRecordCount
SelectRQL
function TMVCActiveRecord.InternalSelectRQL(const RQL: string; const MaxRecordCount: Integer): TMVCActiveRecordList; var lSQL: string; begin lSQL := SQLGenerator.CreateSQLWhereByRQL(RQL, GetMapping); LogD(Format('RQL [%s] => SQL [%s]', [RQL, lSQL])); Result := Where(TMVCActiveRecordClass(Self.ClassType), lSQL, []); end;
If you use this Method for a huge Table, it delivers all records.
The text was updated successfully, but these errors were encountered:
https://github.com/danieleteti/delphimvcframework/issues/424
057519d
danieleteti
No branches or pull requests
Hi,
the parameter
MaxRecordCount
for the MethodSelectRQL
doesn't work, it is ignored by the Method InternalSelectRQL:If you use this Method for a huge Table, it delivers all records.
The text was updated successfully, but these errors were encountered: