查询某表所有字段
查询某表所有字段
select * from information_schema.columns
where table_schema模式名称 and table_name表名;模式 查询某表字段个数
select count(*) from information_schema.columns
where table_schema模式名称 and table_name表名;
1、新建ToDoController.cs继承基础控制器BaseApiController,但是一般业务代码不写在控制器内,业务代码写在Service,先新建统一返回值格式ApiResponse.cs:
public class ApiResponse{public ApiResponse(bool status, string mess…