Record.Combine
Verilen listedeki kayıtları birleştirir.
Syntax
Record.Combine(
records as list
) as record
Remarks
Verilen records
içindeki kayıtları birleştirir. records
kayıt olmayan değerler içeriyorsa hata döndürülür.
Examples
Example #1
Kayıtlardan birleşik bir kayıt oluşturur.
Record.Combine({
[CustomerID = 1, Name = "Bob"],
[Phone = "123-4567"]
})
Result:
[CustomerID = 1, Name = "Bob", Phone = "123-4567"]
Category
Record.Transformations