Hello ..
when i search about hot to call read operation in AIF services or write i found a lot of example ..
my problem to understand some terms like..
EntityKey[] keys;
EntityKey key = new EntityKey();
KeyField fld = new KeyField();
and other wrote the code like
EntityKey[] readRespKeys = new EntityKey[1];
readRespKeys[0] = new EntityKey();
readRespKeys[0].KeyData = new KeyField[1];
readRespKeys[0].KeyData[0] = new KeyField();
readRespKeys[0].KeyData[0].Field = "TransferId";
in the previous code there new EntityKey[1] and new EntityKey() what is different between the two
other term is
// Create the service client proxy
InventTransferOrderServiceClient client = new InventTransferOrderServiceClient();
there is comment Said client proxy . is it to open connection to AX service
last thing is
// Add the result to the entity key value.
readRespKeys[0].KeyData[0].Value = Console.ReadLine();
what entity key and key field means .
thank you
*This post is locked for comments
I have the same question (0)