向表添加索引
我有一个表 Person
: id, name
我经常有这样的查询:
select * from Person where name Like "%abc%".
我有 2 个问题:
- 使用 code-first 5 (CTP5) 实现此查询
- 如何 我在名称列上添加索引,以便像查询中那样根据名称更快地检索数据?
I have a table Person
: id, name
I often have queries like:
select * from Person where name Like "%abc%".
I have 2 questions:
- How do I implement this query using code-first 5 (CTP5)
- How do I add an index on the name column to make data retrieval faster based on name like in the query?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Like 运算符可以与 Contains 函数一起执行:
索引必须由 SQL 添加 - EF 中没有特殊的构造来创建索引。您可以从数据库初始化中执行此 SQL。
首先,您必须实现自定义初始化程序:
然后您必须注册新的初始化程序:
Like operator can be performed with Contains function:
Index must be added by SQL - there is no special construction in EF to create index. You can execute this SQL from DB initialization.
First you must implement custom initializer:
Then you must register new initializer:
在 EF 6 中你可以像这样创建索引
in EF 6 you can create indexes like this