Stuart Turner

Results 161 comments of Stuart Turner

Breaking this out... The subquery is expected. The only way to implement a `TOP`/`ORDER BY` (aka `.OrderBy()`/`.Take()`) that gets used later is to do a subquery or a CTE. The...

If you check out my template [here](https://github.com/viceroypenguin/VsaTemplate), I have implemented a simple migration management system. 1. In the [DbContextInitialization](https://github.com/viceroypenguin/VsaTemplate/blob/master/Services/Database/DbContext.InitializeDatabase.cs), under the Services project, the application will self-migrate on startup based...

@igor-tkachev I don't think this has anything to do with 4252. This is about a bug in the generation, such that it is generating a constant column of `0` and...

After each query, you can examine `context.LastQuery` to see the statement; or you can use `TraceSwitchConnection` to enable tracing and `OnTraceConnection` to receive trace information about each action to then...

> In sqlserver, the datetime type consumes 8 bytes. > > I want to change this to int type and save it as UnixTimestamp type to reduce table capacity. I...

As far as CommunityToolkit.Diagnostics support goes, it supports netstandard2.0, which implicitly supports net462. Given that we've dropped support for anything pre-net462, I'm not sure we care about pre-netstandard2.0?

I'll create the branch, that way we can each work on it. Honestly, they should all be `TestingSequence` regardless, and then it doesn't matter.

Ah, I remember this one. I used it as a foundation for some of the changes I did in SuperLinq to handle this consistency. I'll pull in the commits here...

Created the first draft in e3c5554. This should be a good foundation to start editing the other tests to match. After review, I didn't see that much in #475 that...

What about the following with the existing api: ```cs seq.GroupAdjacent( x => (x.aKey, x.a1, x.a2, x.a3), x => new B(x.b1, x.b2, x.b3), (k, g) => (new A(k.aKey, k.a1, k.a2, k.a3),...