Record.Combine

Sözdizimi

Record.Combine(records as list) as record

Hakkında

Verilen recordsiçindeki kayıtları birleştirir. records kayıt dışı değerler içeriyorsa bir hata döndürülür.

Örnek 1

Kayıtlardan birleşik bir kayıt oluşturun.

Kullanım

Record.Combine({
    [CustomerID = 1, Name = "Bob"],
    [Phone = "123-4567"]
})

Çıkış

[CustomerID = 1, Name = "Bob", Phone = "123-4567"]