我正在试图找出如何为LINQ查询添加索引以加快搜索速度
var confirmation = (from p in _database.Participations where (p.accountID == bulletin.receiverID && p.eventID == @event.ID) select p).FirstOrDefault();
我想在p.eventID字段
上添加索引谢谢!
答案 0 :(得分:1)
您需要将索引添加到数据库中的列。
Linq to XXX只生成SQL