Record.AddField
Record.AddField(record as record, fieldName as text, value as any, optional delayed as nullable logical) as record
필드 이름과 값이 지정된 경우 레코드 record
에 필드를 fieldName
추가합니다 value
.
레코드에 필드 주소를 추가합니다.
사용법
Record.AddField([CustomerID = 1, Name = "Bob", Phone = "123-4567"], "Address", "123 Main St.")
출력
[CustomerID = 1, Name = "Bob", Phone = "123-4567", Address = "123 Main St."]