如何在 linq 和 EF 中制作简单的搜索功能

发布于 2024-10-25 00:17:37 字数 118 浏览 1 评论 0原文

我想简单地在数据库中搜索某个字符串,如何使用 linq 和 EF 来完成此操作(如果使用这些工具不切实际,我愿意接受任何建议)。我只想获取一个字符串并搜索我的用户名,搜索应该能够仅处理用户名的一部分(使用某种“包含”函数)

I want to simply search a database for a certain string, how can i accomplish this using linq and EF (if using these tools for it are not practical I am open to any suggestions). I just want to take a string and search my usernames, the search should be able to handle things only parts of the username (using some sort of 'contains' function)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

听闻余生 2024-11-01 00:17:37

您所要求的基础知识是..

var found = MyContext.Users.Where(user => user.UserName.Contains(searchString));

您需要用实际的实体名称/值替换发布的示例代码。

The basics of what you are asking is..

var found = MyContext.Users.Where(user => user.UserName.Contains(searchString));

You would need to substitute actual entity names/values for the example code posted.

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