-
Re: Statement with Joins and Aggregate Count
Not sure if this answers your question, but it may give you something to start with. Table layout:CREATE TABLE Teams ( TeamReference INT IDENTITY PRIMARY KEY NOT NULL, TeamName VARCHAR(128) NOT NULL … (View Post) -
Re: my extensions 101
My Extensions:void Main() { // Write code to test your extensions here. Press F5 to compile and run. } public static class MyExtensions { // Write custom extension methods here. They will be availabl… (View Post) -
Re: Copy .linq files to another computer
From http://www.linqpad.net/faq.aspx : LINQPad encrypts the password securely using the Windows Data Protection API. Not knowing the details of the Windows Data Protection API, I would simply decrypt… (View Post) -
Re: Bug or intentionally removed? (Directory a hrefs no longer work)
Probably some Internet Explorer protection. You can use Hyperlinq to bypass this limitation:new Hyperlinq(path, "link").Dump(path); (View Post) -
Re: Joining an IQueryable with an IEnumerable
Please clarify what isn't working for you and what you expected to get. (View Post)