मुख्य कंटेंट तक स्किप करें

Record.Combine

दी गई सूची के रिकॉर्ड संयोजित करता है.

Syntax

Record.Combine(
records as list
) as record

Remarks

दी गई records के रिकॉर्ड संयोजित करता है. अगर records में गैर-रिकॉर्ड वाले मान हैं, तो एक त्रुटि लौटाई जाती है.

Examples

Example #1

रिकॉर्ड से एक संयोजित रिकॉर्ड बनाएँ.

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

Result:

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

Category

Record.Transformations