通过API发布后,值变为空

时间:2019-07-04 14:53:13

标签: c# asp.net asp.net-core

我试图通过API将前端网络中的数据发布到数据库中,但是某些值在发布后变为null。 here is the result

这是我的代码

template<auto First, auto Last, typename Container>
void doSomething(const Container& containter);

template<auto First, typename Container>
void doSomething(const Container& containter) {
    doSomething<First, Container::size()>(containter);
}

template<typename Container>
void doSomething(const Container& containter) {
    doSomething<0, Container::size()>(containter);
}

The result on table.

0 个答案:

没有答案
相关问题