我是MVC的初学者,正在尝试创建一个页面。。。我在我的数据库中有三个表。。。我使用实体框架DB优先方法,我在我的'Models'文件夹下创建了这三个表作为类。。。我还创建了一个新的类叫做'AllClasses',并在这个新类中定义了这三个类中的每一个。。。 我正在尝试从“tblcharacter”表“characterimageUrl”列中获取3张图片。。。 当我运行代码“return View(myclass)”时,我得到一个错误=>; System.NullReferenceException:System.Web.MVC.WebViewPage.Model.Get返回Null.。。 实际上,我不想像这样使用这个部件,x.CharacterImageUrl!=null)“alt=”“/>;。。。我应该像这样使用它,但我不能在'@item'之后获得”CharacterImageUrl“。
我知道有类似的问题,但没有一个解决方案对我有效。
这是我的控制器部分:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using StarWars.Models;
namespace StarWars.Controllers
{
public class HomeController : Controller
{
StarWarsFunClubDBEntities myobject = new StarWarsFunClubDBEntities();
public ActionResult Index()
{
return View();
}
public ActionResult SWHome()
{
var myclass = new AllClasses();
myclass.Avatars = myobject.tblAvatars.ToList();
myclass.Characters = myobject.tblCharacters.ToList();
myclass.Comments = myobject.tblComments.ToList();
return View(myclass);
}
}
}
这是我的主页swhome.cshtml
@model List<StarWars.Models.AllClasses>
@{
Layout = null;
}
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width" />
<title>SWHome</title>
<link rel="stylesheet" type="text/css" href="~/Content/css.css" />
</head>
<body>
<div class="box">
<div class="header">
<div class="logo"> <img src="~/images/Star_Wars_Logo.png" alt="Alternate Text" /> </div>
<div class="sitename"><h4>Star Wars Fun Club</h4></div>
</div>
<div class="question"><h5>What do you think about the new characters of Star Wars: The Force Awakens(2015)?</h5></div>
<div class="photo">
<div class="innerphoto">
@foreach (var item in Model)
{
<img src="@item.Characters.Where(x=> x.CharacterImageURL != null)" alt="" />
}
</div>
</div>
<div class="comment"></div>
<div class="addcomment"></div>
<div class="footer"></div>
</div>
</body>
</html>
这些是我在EF DB FIRST的帮助下自动生成的类
namespace StarWars.Models
{
using System;
using System.Collections.Generic;
public partial class tblAvatar
{
public int AvatarID { get; set; }
public string AvatarName { get; set; }
public string AvatarImageURL { get; set; }
}
}
namespace StarWars.Models
{
using System;
using System.Collections.Generic;
public partial class tblComment
{
public int CommentID { get; set; }
public string Expression { get; set; }
public System.DateTime DateTime { get; set; }
public int AvatarID { get; set; }
}
}
namespace StarWars.Models
{
using System;
using System.Collections.Generic;
public partial class tblCharacter
{
public int CharacterID { get; set; }
public string CharacterName { get; set; }
public string CharacterImageURL { get; set; }
}
}
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using StarWars.Models;
using StarWars.Controllers;
using System.Data.Entity;
namespace StarWars.Models
{
public class AllClasses
{
public IEnumerable<tblAvatar> Avatars { get; set; }
public IEnumerable<tblCharacter> Characters { get; set; }
public IEnumerable<tblComment> Comments { get; set; }
}
}
您使用SWHOME()
方法返回了对象AllClasss
,但您的视图不包括列表
。
也许这就是你的解决方案:
@model StarWars.Models.AllClasses
而不是
@model List<StarWars.Models.AllClasses>