Hi!
I followed this tutorial https://shashidotnet.wordpress.com/2013/01/15/walkthrough-calling-the-query-service-with-a-dynamics-query-ax-2012/ to create a custom AifQueryBuilderArgs class.
If I go to my C# project and add a service reference I can never see the custom class I created. I tried updating the reference, removing and adding it again, compiling AOT classes and at this moment I'm compiling the Services node. So far, no luck.
UPDATE: Compiling the Services node didn't work as well.
Since I'm not sure this might be the problem, more information: I created a project for that class and saved it at the VAR model layer.
Any ideas on what am I missing here?
If needed, here's the code and the project structure:
[DataContractAttribute]
public class AegirDescriptionParamArgs extends AifQueryBuilderArgs
{
str description;
}
[DataMemberAttribute("Description")]
public str parmDescription(str _description = description)
{
description = _description;
return description;
}

Thanks!
*This post is locked for comments
I have the same question (0)