在下面的代码中,employee 作为 null 传递给 PostEmployee 函数。如何获取包含 Id、Name 和 EmployeeNumber 的输入 json,当它从另一个实体继承时正确映射到 Employee 实体。
public abstract class Entity
{
public string Id { get; set;}
}
public class Employee: Entity
{
public string Name { get; set; }
public int EmployeeNumber { get; set; }
}
public HttpResponseMessage PostEmployee(Employee employee)
{
}
谢谢!