Share via


ODataConventionModelBuilderExtensions.EnableLowerCamelCase Method

Definition

Overloads

EnableLowerCamelCase(ODataConventionModelBuilder)

Enable lower camel case with default NameResolverOptions NameResolverOptions.ProcessReflectedPropertyNames | NameResolverOptions.ProcessDataMemberAttributePropertyNames | NameResolverOptions.ProcessExplicitPropertyNames.

EnableLowerCamelCase(ODataConventionModelBuilder, NameResolverOptions)

Enable lower camel case with given NameResolverOptions.

EnableLowerCamelCase(ODataConventionModelBuilder)

Enable lower camel case with default NameResolverOptions NameResolverOptions.ProcessReflectedPropertyNames | NameResolverOptions.ProcessDataMemberAttributePropertyNames | NameResolverOptions.ProcessExplicitPropertyNames.

public static Microsoft.AspNet.OData.Builder.ODataConventionModelBuilder EnableLowerCamelCase (this Microsoft.AspNet.OData.Builder.ODataConventionModelBuilder builder);
static member EnableLowerCamelCase : Microsoft.AspNet.OData.Builder.ODataConventionModelBuilder -> Microsoft.AspNet.OData.Builder.ODataConventionModelBuilder
<Extension()>
Public Function EnableLowerCamelCase (builder As ODataConventionModelBuilder) As ODataConventionModelBuilder

Parameters

builder
ODataConventionModelBuilder

The ODataConventionModelBuilder to be enabled with lower camel case.

Returns

Returns itself so that multiple calls can be chained.

Applies to

EnableLowerCamelCase(ODataConventionModelBuilder, NameResolverOptions)

Enable lower camel case with given NameResolverOptions.

public static Microsoft.AspNet.OData.Builder.ODataConventionModelBuilder EnableLowerCamelCase (this Microsoft.AspNet.OData.Builder.ODataConventionModelBuilder builder, Microsoft.AspNet.OData.Builder.NameResolverOptions options);
static member EnableLowerCamelCase : Microsoft.AspNet.OData.Builder.ODataConventionModelBuilder * Microsoft.AspNet.OData.Builder.NameResolverOptions -> Microsoft.AspNet.OData.Builder.ODataConventionModelBuilder
<Extension()>
Public Function EnableLowerCamelCase (builder As ODataConventionModelBuilder, options As NameResolverOptions) As ODataConventionModelBuilder

Parameters

builder
ODataConventionModelBuilder

The ODataConventionModelBuilder to be enabled with lower camel case.

options
NameResolverOptions

The NameResolverOptions for the lower camel case.

Returns

Returns itself so that multiple calls can be chained.

Applies to