我想从 FileContentResult 结果方法返回一个“默认图像”,而不是 null。基本上,我在整个项目的多个视图中调用以下方法。但问题是当没有 Image 用于检索它的方法时,它会返回 null 并在调用它的每个页面上导致错误。如果没有检索到图像,我想使用保存在项目中的图像来显示。我不想在数据库中保存默认图像。
任何帮助表示赞赏...
[AllowAnonymous]
public FileContentResult GetLogoImage()
{
var logo = _adminPractice.GetAll().FirstOrDefault();
if (logo != null)
{
return new FileContentResult(logo.PracticeLogo, "image/jpeg");
}
else
{
return null;
}
}