Trushal - Tuesday, March 15, 2016 2:17 AM:
Hi All,
I am new to Aras and don't have idea about aras objects and methods. I am using C# .net to to show the data from ARAS. I want to fetch complete data in the form of xml using aml query. I have aml query, which when executed through nash shows complete data in xml format. But how can I get this complete data in aras object and assign it to list?
I tried to using below code, but it seems AMLResult shows single row for the same query that is fetching multiple data when used in nash:
Aras.IOM.Item AMLResult;
aml = aml.Replace(" ", "");
AMLResult = MyInnovator.applyAML(aml);
return AMLResult;
Thanks for help!!