我正在尝试使用新的用户定义输入来更新我的数据库。我已经在要更新的表中创建了一个列(bios)。将我的查询作为字符串,在尝试执行它时出现错误
CS0103:当前上下文中不存在名称“bios”
相关代码和平贴如下:
if(IsPost){
userbio = @Request["Bio"];
currentuser = @Request.Form["currentuser"];
var db = Database.Open("ResearchA");
var insertbio = "UPDATE usernameb SET bios = userbio WHERE username = currentuser"; //Update the table with 'userbio' when a username is selected.
db.Execute(insertbio,bios);
}
有什么想法或建议吗?多谢 :))