Our delphi code sets service.AllowuWhereSql to true to use this but this property is not available in our .NET RO version.
I have tried AllowDynamicWhere but this does not do anything.
I have tried tableRequestInfoV7.WhereClause but this gives an errors
The tableRequestInfoV5.WhereClause has type XmlNode which I do not know how to create
WhereExpression lCondition =
new BinaryExpression(
new FieldExpression("Role"),
new ConstantExpression("%Manager%", DataType.String),
BinaryOperator.Like
);
lRequestInfo.WhereClause = lCondition.ToXmlNode();
For V7 it was some kind of (xml) parsing error. For V7 the WhereClause property is of type string. I passed raw SQL to it. This failed. How is the WhereClause property interpreted for V7?
The method of creating an XML and putting it in the WhereClause (V7) works
Can you however still explain how raw SQL works for .NET DA service (i won’t be using it now but maybe the need comes in the future)
What is the function of the UserFilter field? It is still in the documentation online