繁体   English   中英

InvalidCastException:无法将“System.String”类型的对象转换为“System.Int32”类型

[英]InvalidCastException: Unable to cast object of type 'System.String' to type 'System.Int32'

我试图将数据库中的结果显示给前端的用户,但我不断收到以下异常:

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>
}

为什么我会收到此异常以及如何解决它? 提前致谢。

请检查数据库日期数据类型和模型日期数据类型并匹配。 如果您在任何其他属性中出现错误,请使用 F11 进行调试并匹配数据库数据类型和模型数据类型。

InvalidCastException:无法将“System.String”类型的对象转换为“System.Int32”类型:此错误源于表(模型)中列/字段之一的数据类型错误

我会建议您仔细查看您的模型,并确保您用于保存数据的数据类型类型,因为系统不会为您固定指向特定字段或列。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM