为什么我在尝试运行以下代码时出现此错误“'System.UInt16' 类型的对象无法转换为'System.Int16' 类型”
public ActionResult List()
{
var x = account.All();
return View(x);
}
当它尝试在我的 List.aspx 文件(下面的代码)中迭代我的模型时,出现了错误。
<% foreach (var item in Model) { %>
我正在使用 Subsonic 3.0.3 和 MySQL 数据库。以下是我的帐户表说明
acc_id smallint(5) unsigned pri
acc_type smallint(5) unsigned
acc_status tinyint(3) unsigned
acc_balance int(11) unsigned
我是否必须修改 MySQL.ttinclude 中的某些内容才能使其正常工作?