Record.RenameFields
Record.RenameFields(record as record, renames as list, optional missingField as nullable number) as record
Επιστρέφει μια εγγραφή μετά τη μετονομασία πεδίων στην record
εισόδου στα νέα ονόματα πεδίων που καθορίζονται στη λίστα renames
. Για πολλές μετονομασία, μπορεί να χρησιμοποιηθεί μια ένθετης λίστα ({ {old1, new1}, {old2, new2} }.
Μετονομάστε το πεδίο "UnitPrice" σε "Price" από την εγγραφή.
χρήσης
Record.RenameFields(
[OrderID = 1, CustomerID = 1, Item = "Fishing rod", UnitPrice = 100.0],
{"UnitPrice", "Price"}
)
εξόδου
[OrderID = 1, CustomerID = 1, Item = "Fishing rod", Price = 100.0]
Μετονομάστε τα πεδία "UnitPrice" σε "Price" και "OrderNum" σε "OrderID" από την εγγραφή.
χρήσης
Record.RenameFields(
[OrderNum = 1, CustomerID = 1, Item = "Fishing rod", UnitPrice = 100.0],
{
{"UnitPrice", "Price"},
{"OrderNum", "OrderID"}
}
)
εξόδου
[OrderID = 1, CustomerID = 1, Item = "Fishing rod", Price = 100.0]