通过String内容查询返回对象
我尝试按字符串类型的内容返回对象:
public ObjectQuery<question> getQuestionByContent(String content)
{
DemoDBEntities _context = new DemoDBEntities();
var x = _context.question.Where(p => p.q_content == content);
Debug.WriteLine(((ObjectQuery)x).ToTraceString());
return (ObjectQuery<question>)x;
}
我通过以下方式调用上面的函数
public question BS_GetQuestionByContent(String content)
{
DB_Implementation _dal = new DB_Implementation();
return _dal.getQuestionByContent(content).SingleOrDefault<question>();
}
并得到:
System.Data.EntityCommandExecutionException:“发生错误 执行命令定义。请参阅内部异常 详细信息。”
需要注意的重要事项: 当我使用 Int Type String 执行此函数时,没有问题。
有什么想法吗?
I try to return Object by content which have string type:
public ObjectQuery<question> getQuestionByContent(String content)
{
DemoDBEntities _context = new DemoDBEntities();
var x = _context.question.Where(p => p.q_content == content);
Debug.WriteLine(((ObjectQuery)x).ToTraceString());
return (ObjectQuery<question>)x;
}
I call the function above by:
public question BS_GetQuestionByContent(String content)
{
DB_Implementation _dal = new DB_Implementation();
return _dal.getQuestionByContent(content).SingleOrDefault<question>();
}
and get:
System.Data.EntityCommandExecutionException: "An error occurred while
executing the command definition. See the inner exception for
details."
important to note:
when I do this function whis Int Type String there is no problem.
any idea?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
LINQ 不允许您使用= 将数据库字段与文本数据类型进行比较。有关您可以采取哪些措施的一些想法,请查看这个问题。
LINQ does not allow you to compare database fields with the text datatype using =. For some ideas on what you can do about it, look at this SO question.