Using v10.0p_2015-11-20/EVAL Deployment in order to evaluate the CubeGrid
The FacetValue object appears to support FacetValue Ids that are of Integer type (there is a SetId method that takes an int argument). This leads to a couple questions...
1) Why isn't there a Constructor that takes an int Id and String Title such as there is for the String Id, String Title?
2) Why doesn't FacetValueMap also support Integer FacetValue Ids?
Having an Int FacetValue is important because the SQL generated by Load on Demand for the CubeGrid appears to automatically wildcard the Facet Values if they are of String type, but doesn't appear to do so when they are of Int type. Which leads to another question...Is it possible to force the Load on Demand to use an exact match for String Facet Values as opposed to wildcard? I've tried setting the AutoFecthTextMatchStyle to Exact, but that had no effect. I also tried using the ignoreTextMatchStyle="true" option on the fields in the DataSource (which are defined as Int), but that didn't work either.
The FacetValue object appears to support FacetValue Ids that are of Integer type (there is a SetId method that takes an int argument). This leads to a couple questions...
1) Why isn't there a Constructor that takes an int Id and String Title such as there is for the String Id, String Title?
2) Why doesn't FacetValueMap also support Integer FacetValue Ids?
Having an Int FacetValue is important because the SQL generated by Load on Demand for the CubeGrid appears to automatically wildcard the Facet Values if they are of String type, but doesn't appear to do so when they are of Int type. Which leads to another question...Is it possible to force the Load on Demand to use an exact match for String Facet Values as opposed to wildcard? I've tried setting the AutoFecthTextMatchStyle to Exact, but that had no effect. I also tried using the ignoreTextMatchStyle="true" option on the fields in the DataSource (which are defined as Int), but that didn't work either.
Comment