Aaron Sherber
Aaron Sherber
I'm happy to put together a PR if you let me know which way you'd like to go. Note that moving some public methods to protected or private, as I...
(Under sematic versioning, probably 6.1 should have been when stored procs were added, and 6.2 should be async. A breaking change would mean 7.0.)
Note that the same exception can be thrown, legitimately, even without indexed arguments. ```c# ObjectWithConditionProperty myObj = null; db.Fetch("select 1 where Foo = @condition", myObj); ``` If we change the...
Although PP targets 2.1 as well as 2.0, changing the method signature for 2.1 would involve more `#if`s, and I think would be a breaking change anyway -- an application...
@MaceWindu LP added a workaround after the issue was confirmed here (see [forum post](https://forum.linqpad.net/discussion/2429/lp6-error-with-linq-to-db-and-ms-access)). I suspect the root cause may still be in linq2db.
I've got this coded, but I'm waiting on a response from Bitbucket support. The [docs](https://developer.atlassian.com/bitbucket/api/2/reference/resource/repositories/%7Busername%7D/%7Brepo_slug%7D/diff/%7Bspec%7D) say that the `path` parameter "can be repeated for multiple paths", but I can't seem...
Still going back and forth with Bitbucket support. They have acknowledged that there are some problems on their side; they said they put a fix in, but it's still not...
I'm curious, did anything ever happen with this issue? I'm facing the same issue, especially since I'm trying to follow https://codingforsmarties.wordpress.com/2016/01/21/how-to-version-assemblies-destined-for-nuget/ IOW, I want to have something like this: ```...
I'm not able to reproduce using `Fetch` with two consecutive `SELECT` statements that return different columns, so it might have something to do with the stored proc as intermediary. I'll...
Yes, I can reproduce using a stored proc, even if I'm using `FetchProc()` instead of `Fetch()` with `EXEC`. It's very curious that this happens with stored procs but not with...