Hi Mike,
Using the c# types generated by 7.182 is producing a list of compiler errors for any property listed as Nullable, and reports as
Severity Code Description Project File Line Suppression State
Error CS0722 'Nullable': static types cannot be used as return types WebApplication1.ServiceModel 6110 Active
Severity Code Description Project File Line Suppression State
Error CS0721 'Nullable': static types cannot be used as parameters WebApplication1.ServiceModel 6110 Active
It starts at AR_HistoryQuery property StatusBetween, then StatusIn etc.
Replacing Nullable with string[] makes everything compile but obviously is not the best course of action but worked since I wasn't looking at those objects with original errors.


