astable
<lst>:astable()
Ritorna la table "normale" contenuta nella XTable. Normalmente viene chiamata alla fine di ogni query.
Esempio 204. Esempio astable
local a = XTable(Orders)
:where(function(x, i) return x.ShipCountry == "USA" and x.CustomerID == "OLDWO" end)
:astable()
alert(a)