我已在我的视图中使用
定义了变量var ___ = "____"
我已经定义了这些变量:querypeople,where,city,lo,app,order。
在下面的db.query中,它识别querypeople和order,但我不知道为什么它不识别其他的,或者它识别了多少
@foreach (var row in db.Query(querypeople,where,city,lo,app,order))
是否有理由不承认这些变量?
我尝试过这样的事情
<h3>@querypeople@where@city@lo@app@order</h3>
我确切地想看到我想看到的内容。
所有帮助表示赞赏!
答案 0 :(得分:0)
显然我在使用附加符号时使用逗号。
@foreach (var row in db.Query(querypeople + where + city + lo + app + order))
这给了我正在寻找的东西。如果有人有解释,请分享!