向LINQ查询添加索引

时间:2011-04-08 08:12:53

标签: c# linq indexing

我正在试图找出如何为LINQ查询添加索引以加快搜索速度

var confirmation = (from p in _database.Participations where (p.accountID == bulletin.receiverID && p.eventID == @event.ID) select p).FirstOrDefault();

我想在p.eventID字段

上添加索引

谢谢!

1 个答案:

答案 0 :(得分:1)

您需要将索引添加到数据库中的列。

Linq to XXX只生成SQL