How to select the method (MethodName) used by the LINQ LinqRemoteDataAdater GetTable function

How do I select a custom GetData request call in C# .NET?

I tried simply setting the MethodName
remoteDataAdapter_.DataRequestCall.MethodName = “MyGetData”;
but this yields an error
image

Probably the (different) request parameters are causing this.
We do something similar in delphi where we have our own RefreshParams function which uses
FindService and then lService.Default.FindOperation to get the correct parameters in the request

However I don’t find FindOperation in the .NET SDK/documentation

How can one choose his own GetData method?

FYI: Ideally this is a very lightweight action which does not require server access because the function call signature is already somewhere in a client file.
Our current delphi solution (where the entire RODL schema is fetched) is slow.
Function signatures don’t change a lot. They could be made available on the client side similar like the itf files

Hi,

You can use something like

remoteDataAdapter_.DataRequestCall.MethodName = "MyGetData";
remoteDataAdapter_.DataRequestCall.UpdateParamsFromRodl();
remoteDataAdapter_.DataRequestCall.OutgoingTableNamesParameter = "param1";
remoteDataAdapter_.DataRequestCall.IncomingDataParameter = "param2";