danieleteti / delphimvcframework

DMVCFramework (for short) is a popular and powerful framework for WEB API in Delphi. Supports RESTful and JSON-RPC WEB APIs development.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

error line 1969

jordilp69 opened this issue · comments

Result := lList.ExtractAt(0);

[dcc32 Error] MVCFramework.ActiveRecord.pas(1969): E2003 Undeclared identifier: 'ExtractAt'

Delphi 10.2 Tokyo

This "ExtractAt" method was introduced in delphi 10.3 Rio. It must be changed to fit previous versions of delphi.

Does this line compile?

    Result := lList.Extract(lList.First);