查看与您的MySQL服务器版本对应的手册,以获得在webapi中使用的正确语法

时间:2014-06-04 12:56:02

标签: asp.net-web-api

使用webapi发布数据时,我遇到此错误:

我在表格中没有主键如何添加实体键

  

{"您的SQL语法有错误;检查手册   对应于您的MySQL服务器版本,以便使用正确的语法   靠近'(SELECT \ n collectionCustomerID,\ n
  collectionAmountRecevied,\ 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");
    }

0 个答案:

没有答案