使用webapi发布数据时,我遇到此错误:
我在表格中没有主键如何添加实体键
{"您的SQL语法有错误;检查手册 对应于您的MySQL服务器版本,以便使用正确的语法 靠近'(SELECT \ n
collection
。CustomerID
,\ n
collection
。AmountRecevied
,\ n'在第1行"}
public postUser(collection collection)
{
try
{
cs.collections.Add(collection);
cs.SaveChanges();
}
catch
{
return false;
}
return true;
}
[HttpPost]
public HttpResponseMessage PostUser(collection Collection)
{
if (Collection == null)
return Request.CreateResponse(HttpStatusCode.BadRequest, "not created");
if (obj.PostUser(Collection))
{
return Request.CreateResponse(HttpStatusCode.Created, TheModelFactory.create(Collection));
}
else
return Request.CreateResponse(HttpStatusCode.BadRequest, "Could not save to the database");
}