-
Re: Adding a Reference to a Query Doesn't Always Show the Top Level Namespace to Import
Your expectations are correct. However, System.Globalization.dll is a type-forwarding assembly. All that it contains are assembly attributes that redirect types such as System.Globalization.Calendar …1 · -
Re: vi mode - experimental build
I've just uploaded a build that fixes this (and a few other issues).1 · -
Re: vi mode - experimental build
Thanks, Howard. If you have any requests or find any bugs, report them on this thread.1 · -
vi mode - experimental build
I've just uploaded an experimental build with basic vi emulation: X86: http://www.linqpad.net/GetFile.aspx?preview+LINQPad5.zip AnyCPU: http://www.linqpad.net/GetFile.aspx?preview+LINQPad5-AnyCPU.zip…2 · -
Re: How can I use Distinct (C# statement)
How about: query.Distinct().Dump(); Note that you would be better off using association properties.var query = from log in ViewLogs let v = log.Vehicle let s = v.Seller where v.IsActive && v.…1 ·