var action = builder
.Action("RegisterEmployee")
.ReturnsFromEntitySet<Employee>("Employees");
action.Parameter<string>("UserEmail");
action.Parameter<string>("EmployeeEmail");
results in two separate parameters instead of the expected body parameter:
The following global function definition:
var function = builder
.Function("GetEmployeeForRegistration")
.ReturnsFromEntitySet<Employee>("Employees");
function.Parameter<string>("UserEmail");
function.Parameter<string>("EmployeeEmail");
The following global action definition:
results in two separate parameters instead of the expected body parameter:
The following global function definition:
gives two operations instead of one: