我在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(); }