ODataModelBuilder builder = new ODataConventionModelBuilder(); EntityTypeConfigurationIn this example, we first create an instance of the ODataModelBuilder class. We then define the Customer type using the EntityTypeConfiguration method and assign it to the customerEntity variable. Finally, we create a new instance of EntitySetConfiguration for the Customer type and specify the name of the EntitySet as "Customers". The example shown uses the `Microsoft.AspNet.OData` package library to use ODataModelBuilder.customerEntity = builder.EntityType (); EntitySetConfiguration customers = builder.EntitySet ("Customers"); customers.EntityType = customerEntity;