c# – LINQ to Entities – 如何从实体返回单个字符串值

前端之家收集整理的这篇文章主要介绍了c# – LINQ to Entities – 如何从实体返回单个字符串值前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在asp mvc 3 app工作.我有一个名为History的模型/实体.我有一个返回一个值的 linq查询.根据我的操作,当调用方法时,我或者在控制器中得到“对象未设置为实例”错误,或者我得到“无法隐式地从字符串转换为类型Models.History”.所以我在寻求解决方面的帮助,我只需要投射它还是什么?

这是给出“对象未设置”错误方法

public string GetPastAbuseData(int Id)
{

  var query = (from h in _DB.History
              where h.ApplicantId.Equals(Id)
              select h.AbuseComment).FirstOrDefault();

  return query.ToString();
 }

控制器:
vm.HistoryModel.AbuseComment = repo.GetPastAbuseData(Id);

如果我将方法类型从字符串更改为历史记录,我会收到’无法转换’错误

public History GetPastAbuseData(int Id)
{
    return (from h in _DB.History
            where h.ApplicantId.Equals(Id)
            select h.AbuseComment).SingleOrDefault();
}

感谢您的时间.

解决方法

您正在从HistoryObject中选择AbuseComment属性(它是字符串).因此,您的代码尝试将字符串转换为History.只需返回整个历史实体:
public History GetPastAbuseData(int Id)
{
    return (from h in _DB.History
            where h.ApplicantId.Equals(Id)
            select h).SingleOrDefault();
}

同样在第一种情况下,查询将是字符串类型.您不需要在此变量上调用ToString.更重要的是,当你陷入OrDefault()的情况时,你会有NullReferenceException.

public string GetPastAbuseData(int Id)
{
  return (from h in _DB.History
          where h.ApplicantId.Equals(Id)
          select h.AbuseComment).FirstOrDefault();
}
原文链接:https://www.f2er.com/csharp/98955.html

猜你在找的C#相关文章