// Adds a Customer EntitySet with no key properties
 public static ODataModelBuilder Add_Customers_No_Keys_EntitySet(this ODataModelBuilder builder)
 {
     builder.Add_Customer_No_Keys_EntityType().EntitySet <Customer>("Customers");
     return(builder);
 }