-
Notifications
You must be signed in to change notification settings - Fork 34
Closed
Description
For Unit testing, I am using:
IGremlinQuerySource _g = g
.UseCosmosDb<Vertex, Edge>(configurator => configurator
.UseNewtonsoftJson())
.ConfigureEnvironment(env => env
.ConfigureModel(modelTransformation => modelTransformation
.ConfigureVertices(transformation => transformation.UseCamelCaseLabels())
.ConfigureEdges(transformation => transformation.UseCamelCaseLabels())
)
);
However, for an ASP.NET app, using the config:
services.AddGremlinq(setup => setup
.UseCosmosDb<Vertex, Edge>()
.UseNewtonsoftJson()
);
I can't see how to configure CamelCase?
Metadata
Metadata
Assignees
Labels
No labels