daelmo wrote:
Ok. Let us know if you make it
Yes, it did work with a couple of exceptions:
CreateDynamicQueryEngine had to be overridden as follows:
protected override DynamicQueryEngineBase CreateDynamicQueryEngine()
{
return this.PostProcessNewDynamicQueryEngine(new DynamicQueryEngineInsensitive());
}
and the stored procedure names (schema.package.procedure format) were coming in quoted in CreateValidAlias. So we had to do a rawAlias.Trim('"');
With that it's working fine.
Thanks for the help.