Results 3 issues of 贾建军

可以使用开窗函数达成要求: `` SELECT Score, DENSE_RANK() OVER (ORDER BY Score DESC) `Rank` FROM Scores; `` 如果需求是两个相同分数并列排名1,第三个分数排名为3,则将 DENSE_RANK 更改为 RANK 即可

# Description Look this: ```csharp using Microsoft.Extensions.DependencyInjection; var services = new ServiceCollection(); services.AddAutoInject(); var sp = services.BuildServiceProvider(); var userServices = sp.GetServices(); // We expect to output only UserService1, but it...

### Is there an existing issue for this? - [X] I have searched the existing issues ### Description When I use api versioning, the apis can't show in swagger ui,like...

bug