Ignore Namespaces #303
-
is there anyway to get it to ignore namespaces when creating the schema? Thanks |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Yup, i mean I've tried digging through the source code and even implementing our own Union and Record binary serializers (see below) In both cases i can see it setting the schema.Namespace to null where it can, but it somehow appears back, i even checked the reference that gets passed into the expression, is there something in the expression that resets it somehow, even if its pass by value, i've already confirmed that what gets passed into it has the null namespace. Running out of solution but we really dont want it serializing the namespace to the schema; hopefully its just something simple we're overlooking thanks. |
Beta Was this translation helpful? Give feedback.
-
RecordSchemaBuilderCase would be the case to override. Should be as easy as returning |
Beta Was this translation helpful? Give feedback.
RecordSchemaBuilderCase would be the case to override. Should be as easy as returning
null
fromGetSchemaNamespace
.