Pass Record variable to .NET library

224 Views Asked by At

Is there a way to pass variable of Record (or RecordRef) type as a parameter to method of .NET object?

1

There are 1 best solutions below

0
On

In theory it is not possible pass like datatable or something else. What you can do is to create a public class in .NET that is visible in NAV, complete the data of that class and pass the .NET class as a parameter with the data in the NAV table.

For example table 18 (Customer) you can create a .NET class with the same structure, call this class in NAV code, complete the data in NAV and then pass this class with the same fields data as table 18 to .NET

If you need pass a parameter multiples registers of the same table create a Array of this .NET class perform a loop, assing the values and pass one by one to .NET

I made a code similar to the one I told you about and it works correctly.