Browse by Tags

Filter Outlook Items by Date with LINQ to DASL
03 March 08 07:02 PM | PhillipHoff | 5 Comments   
I received an email over the weekend asking why the following LINQ to DASL query threw an exception: Outlook. Folder folder = (Outlook. Folder )Application.Session.GetDefaultFolder(Outlook. OlDefaultFolders .olFolderCalendar); var appointments = from Read More...
LINQ to DASL Walkthrough
25 February 08 06:44 PM | PhillipHoff | 0 Comments   
Now that the Office Interop API Extensions have been released , I thought I would post a complete walkthrough of a simple LINQ to DASL application. Let's start with my fictitious Outlook calendar: This calendar shows that I have four appointments today. Read More...
Extending LINQ to DASL with Custom DASL Properties
20 February 08 04:25 PM | PhillipHoff | 1 Comments   
In an earlier post I discussed LINQ to DASL, part of the Office Interop API Extensions, which is one of the forthcoming VSTO Power Tools. LINQ to DASL allows you to write LINQ expressions against Outlook item collections. I also mentioned that many known Read More...
Using LINQ with the Office Object Model
19 February 08 01:15 PM | PhillipHoff | 0 Comments   
In my last post I talked about LINQ to DASL, a LINQ provider that converts query expressions into their DASL equivalent in order to efficiently filter item collections in Outlook. But LINQ to DASL solves only a very specific problem for one particular Read More...
Query your Outlook Inbox with LINQ to DASL
18 February 08 03:15 PM | PhillipHoff | 13 Comments   
Quick, tell me what the following code does: Outlook. Folder folder = (Outlook. Folder ) this .Application.Session.GetDefaultFolder(Outlook. OlDefaultFolders .olFolderInbox); string subject = "VSTO" ; string filter = @"@SQL=(""urn:schemas:httpmail:subject"" Read More...
Page view tracker