Kevin Hahn
Kevin Hahn
It looks like the tests failed because some properties are getting selected automatically when there's no select statement. Since these properties can have a setter they will get automatically selected...
I wonder if we can somehow not map any properties with Projectable, for read only properties it's not needed, but for writable properties they need to be marked as Not...
I'd be happy if someone wants to take that on, but I don't have time to do that part right now.
I agree, unfortunately it looks like it would require a huge refactor.
Well it's not perfect but it should get you by https://gist.github.com/hahn-kev/b3e74a07b53c26ddee1b
I'm also seeing this, my query is a little different though. ```C# queryable.GroupBy(s => s.EntityId) .Select(g => g.OrderByDescending(s => s.Commit.DateTime).First()) .Select(s => s.Id) .ToArray() ``` the second Select breaks everything,...
Thanks. Sorry I'm always breaking CTE's lol I ended up working around it by determining the depth server side and then sorting it after the fact, the result set was...
I had a similar issue. [PR](https://github.com/sillsdev/languageforge-lexbox/pull/786/files#diff-26ce97e3a5a3654d4e96e5aa49af9c73f781948f07399b65cff827823f7bc563), I'm not using a dependabot yml to configure it. In my case this was a PR for npm changes, but it lowered the version...
I'd like to get this fixed too, I'd be happy to contribute, same question as above
looking to use skaffold in a github action, does anyone have some advice? do I just need to run a script to download skaffold and put it on the path...