-
Re: Connection to Windows search?
There's no custom driver for this. You could make it easier to use by writing a query such as this: void Main(){ // Test call: WinSearch (@"SELECT TOP 10 System.ItemPathDisplay, System.ItemUrl F…1 · -
Re: Connection to Windows search?
You could write a query like this: using (var connection = new OleDbConnection ("Provider=Search.CollatorDSO;Extended Properties=\"Application=Windows\"")){ connection.Open(); var…1 · -
Re: Stored Procedures with optional parameters
Use named arguments: EventCreate (1, _organizationId, "Title", SeasonID:_seasonId, StartDate:_startDate, ...) This works because the method that LINQPad generates to call the stored procedu…1 · -
Re: Custom config file with separate configs sections
What else is in LINQPadQuery.dll.custom.config, besides what's in AppSettings.config? The reason that LINQPad will create this file is to add extra config that is necessary to make your query work, m…1 · -
Re: LINQPad support for .NET 7.0 Preview 1?
The .NET 7 preview is now supported in 7.3.4 (along with C# 11 preview features).1 ·