Re: BinaryObject with '.' (dots) in field names

2020-10-02 Thread akurbanov
Hello Scott, Unfortunately, there is no workaround available to safely use dot within BinaryObject field name. I am not aware of any other things, dot seems to be the only one symbol that affects how BinaryObject is aligned. Best regards, Anton -- Sent from:

Re: BinaryObject with '.' (dots) in field names

2020-10-02 Thread scottmf
Thanks Anton. We can deal with it by using a placeholder for the dot when interacting with ignite. (Since in our notation we already have dots) Going back to the questions, 1. It sounds like we cannot work around this limitation since it is a reserved character, is that correct? 2. Are there

Re: BinaryObject with '.' (dots) in field names

2020-10-02 Thread akurbanov
Hello Scott, I would recommend to stick with the underscore character, as the dot (.) is reserved for the nested object to be referenced in the QueryEntity. When you mark the query entity field with "org.id", it expects that there is an field with name "org" in this object that has nested field

BinaryObject with '.' (dots) in field names

2020-10-02 Thread scottmf
Hi,Running the code below doesn't work properly unless I change the field names from using to '.' (dots) to use '_' (underscores). Questions: 1. What are the restrictions around field names? In other words, are there other characters that i can't use? 2. Is there a way to work around this and