Inserting GUID into SQL Server

前端 未结 4 1374
既然无缘
既然无缘 2021-01-01 19:32

I have a stored proc were I want to insert a GUID (user id) into a table in MS SQL but I keep getting an error about the hyphen \'-\' that is part of the guid value, here\'s

4条回答
  •  一整个雨季
    2021-01-01 19:55

    Try using this:

    sql_cmd.Parameters.AddWithValue
    ("@Company_ID",**Guid.Parse**("00000000-0000-0000-0000-000000000000");
    

    That will take a simple string rep. and turn it into a GUID obj.

提交回复
热议问题