I need to write just write one line of AML wrapped in C# and store the ID of the item in a variable
code:
Innovator inn = this.getInnovator();
string amlString= @"<AML><Item type='Document' action='get' where='item_number='MADL002828'' select='Document.id'/></AML>";
Item results = inn.applyAML(amlString);
return results;
Everything works except for the "where" clause in it. Just can' figure out the what kind of quotation marks does this require.
Thanks!