我试图将数据库的结果显示给前端的用户,但是我不断收到以下异常:
InvalidCastException:无法转换类型为'System.String'的对象 至 键入“ System.Int32”
和
System.InvalidOperationException:'读取时发生异常 一种 属性“ CList.CourseCategory”的数据库值。预期的类型为“ LearnAngebot.Models.Courscategory”,但实际值为 类型为“ System.String”。
我不知道出了什么问题。
我有一个类似的代码来显示这些课程,并且看起来运行良好。我为此使用了相同的格式,但是不断出现此错误。
C#代码:
public class IndexModel : PageModel
{
public CUser User { get; set; }
public bool empty { get; set; }
public readonly IHostingEnvironment _env;
private readonly CDataContext _context;
private readonly IUserService _UserService;
public IndexModel(CFE_CrazyLabContext context, IUserService UserService, IHostingEnvironment hostingEnvironment)
{
_env = hostingEnvironment;
_context = context;
_UserService = UserService;
User = UserService.GetUser();
}
public IList<CList> ResultList { get; set; }
public CUser StudentUser { get; set; }
public CStudent Student { get; set; }
public void LoadList(CList list)
{
StudentUser = _UserService.GetUser(list.StudentUser);
}
public void OnGet()
{
ResultList = _context.Result.Where(o => EF.Functions.Like(o.StudentUser, User.UserName)).ToList();
}
}
HTML代码:
@if(Model.ResultList.Count == 0)
{
<div>
<h2> No Result yet </h2>
</div>
}
@if(Model.ResultList.Count > 0)
{
<div class="Custom-Table Custom-Table-Big">
<table>
<tbody>
<tr id="head">
<th><a href="index.pgp?">Student UserName</a></th>
<th><a href="index.php?">Course Name</a></th>
<th><a href="index.pgp?">Category</a></th>
<th><a href="index.pgp?">Date</a></th>
</tr>
@foreach(var item in Model.ResultList)
{
Model.LoadList(item);
<tr>
<td>
@item.StudentUser
</td>
<td>
@item.CourseName
</td>
<td>
@item.CourseCategory
</td>
<td>
@item.Date
</td>
</tr>
}
</tbody>
</table>
</div>
}
为什么我确切地收到此异常以及如何解决它?预先感谢。
答案 0 :(得分:1)
请检查数据库日期数据类型和模型日期数据类型,并将其匹配。如果您在任何其他属性中遇到错误,请使用F11进行调试,并与数据库数据类型和模型数据类型匹配。
答案 1 :(得分:0)
InvalidCastException: Unable to cast object of type 'System.String' to type 'System.Int32': 此错误源于表(模型)中的列/字段之一的数据类型错误
我会建议您仔细查看您的模型,并确保您用于保存数据的数据类型类型,因为系统不会为您固定指向特定字段或列。