直接上代码,我是这样插入信息的
string sql = string.Format(@" INSERT INTO T_Log ( UserId , ProValue ) VALUES ( @uid , '{1}' )", Content); return db.Execute(sql, new {uid = userId});
如果content是邮箱地址的话就会报错。
比如我插入的是12453566@qq.com,那么就会报"@qq"参数异常,其实我们没有打算让@qq作为参数,而是作为值传入进来插入到数据库中的。
我们可以在代码里面处理把@替换为@@,就可以避免这个错误了!
例子:
Content = Content.Replace("@", "@@");
这样就行了!