-
Re: Could not load file or assembly 'PresentationFramework, Version=6.0.2.0
Could you try re-installing .NET 6 Desktop Runtime? https://dotnet.microsoft.com/en-us/download/dotnet/6.01 · -
Re: How do I reassociate *.linq files with Linqpad 7?
Try right-clicking a .linq file in Explorer, choose 'Open With', 'Choose another app', 'More apps', scroll down, and 'Look for another app on this PC'.1 · -
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 ·