我想通过c#和windows窗体模仿Outlook的最新版本的搜索功能。具体来说,我想要“搜索所有邮箱”获取给定的字符串。有超过50个文件夹和90,000封电子邮件。
目前,我可以使用LINQ搜索任何一个文件夹并获取结果。我写了一些代码来遍历所有文件夹并创建一个我可以查询的大量IEnumberable。
public IEnumerable<MailItem> SharedInbox
{
get
{
outlook.ActiveExplorer().Session.GetDefaultFolder(OlDefaultFolders.olFolderInbox);
Outlook.Recipient recip = Outlook.Application.Session.CreateRecipient("TOCCard@Capitalone.Com");
Microsoft.Office.Interop.Outlook.MAPIFolder folder =
outlook.GetNamespace("MAPI").GetSharedDefaultFolder(recip, OlDefaultFolders.olFolderInbox);
Folders subFolders = folder.Folders;
IEnumerable<MailItem> mItems = folder.Folders[1].Items.OfType<MailItem>();
if (recip.Resolve())
{
System.Diagnostics.Debug.WriteLine("Email Address Resolve Successful.\r\n");
try
{
foreach (MAPIFolder fold in subFolders)
{
System.Diagnostics.Debug.WriteLine("Try Folder: " + fold.Name + " \r\n");
try
{
mItems = mItems.Concat(fold.Items.OfType<MailItem>());
}
catch
{ System.Diagnostics.Debug.WriteLine("No items found:\r\n"); }
}
return mItems;
}
catch
{
return null;
}
}
else
{
System.Diagnostics.Debug.WriteLine("ELSE");
return null;
}
}
这最终会起作用,但你可以想象这种情况极其缓慢,因此毫无用处。 我是LINQ的新手,我觉得必须有更快的方法。可以调整此代码吗?我不是Exchange管理员,无法访问我自己的收件箱之外的Exchange服务器。此外,我没有与LINQ结婚,并乐意使用其他方法。我将非常感谢你的帮助。
注意:我刚注意到上面的代码是通过文件夹[1]两次。我可以解决这个问题,但它并没有显着影响它所花费的时间。
答案 0 :(得分:0)
不能将LINQ与OOM一起使用。使用Items.Find/FindNext
或Items.Restrict
。
您也可以使用Aplication.AdvancedSearch
(请记住它是异步的)。