You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Support CamelCase as first class construct in CosmoClient.
Describe the solution you'd like
CamelCase as option in CosmosClientBuilder
CustomSerializer and CamelCase are exclusive and can't co-exist
Typed point operations will do CamelCase serialization
Stream API will just pass through the payload (no conversion even if CamelCase is opted)
LINQ will generate a cancelCases queries
SPROC/UDF etc...: N/A and customer is expected to author them in CamelCase way.
Describe alternatives you've considered
Extended custom CosmosJsonSerializer can be used for point operations but will not be integrated into LINQ. LINQ extension can be a separate option but better abstraction to have it across CosmosClient.
Additional context
Add any other context or screenshots about the feature request here.
The text was updated successfully, but these errors were encountered:
Would it be better to expose some form of interface for a contract resolver that converts member info into json field name? That way it can be extended for other cases, and we can provide a default camel case version.
Below two PR's address this issue #650 Enabling serialization customization through CosmosSerializerOptions #716 Adding camel case serialization on LINQ query generation (#716)
Is your feature request related to a problem? Please describe.
Support CamelCase as first class construct in CosmoClient.
Describe the solution you'd like
Describe alternatives you've considered
Extended custom CosmosJsonSerializer can be used for point operations but will not be integrated into LINQ. LINQ extension can be a separate option but better abstraction to have it across CosmosClient.
Additional context
Add any other context or screenshots about the feature request here.
The text was updated successfully, but these errors were encountered: