关于' iEnumerable的错误不包含''的定义。 ....''接受类型的第一个论点可以找到

发布于 2025-02-02 12:51:06 字数 1004 浏览 1 评论 0原文

我只面临着提到的用户名的错误,但不针对密码?我对自己可能做错的事情感到困惑。

在index.cshtml中:

  <input id = "Username" asp-for="Username" type="text" class="form-control" placeholder="Username" required>
  <span asp-validation-for="Username" class="text-danger"></span>
</div>
<div class="form-group">
  <input id="Password" asp-for="Password" type="password" class="form-control" placeholder="Password" required>
  <span toggle="Password" class="fa fa-fw fa-eye field-icon toggle-password"></span>
  <span asp-validation-for="Password" class="text-danger"></span>
</div> 

在登录中:

    public class LoginCredentials
    {
        [Required]
        public string Password { get; set; }
        
        [Key]
        public string Username { get; set; }    

    }

错误本身状态

iEnumerable'不包含“用户名”的定义,也不包含扩展方法“用户名”接受类型“ iEnumerable”的第一个参数(您是否缺少使用指令或汇编引用?)

预先感谢您!!!

I'm facing the mentioned error for Username only, but not for password? I am confused as to what I could be doing wrong.

In index.cshtml:

  <input id = "Username" asp-for="Username" type="text" class="form-control" placeholder="Username" required>
  <span asp-validation-for="Username" class="text-danger"></span>
</div>
<div class="form-group">
  <input id="Password" asp-for="Password" type="password" class="form-control" placeholder="Password" required>
  <span toggle="Password" class="fa fa-fw fa-eye field-icon toggle-password"></span>
  <span asp-validation-for="Password" class="text-danger"></span>
</div> 

And in LoginCredentials:

    public class LoginCredentials
    {
        [Required]
        public string Password { get; set; }
        
        [Key]
        public string Username { get; set; }    

    }

The error itself states

IEnumerable' does not contain a definition for 'Username' and no extension method 'Username' accepting a first argument of type 'IEnumerable' could be found (are you missing a using directive or an assembly reference?)

Thank you in advance!!!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文