通过String内容查询返回对象

发布于 2024-11-29 15:20:41 字数 784 浏览 0 评论 0原文

我尝试按字符串类型的内容返回对象:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

居里长安 2024-12-06 15:20:41

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文