Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/slo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ jobs:
- AdoNet
- Dapper
- EF
- Linq2db.Slo
include:
- workload: AdoNet
read_rps: 1000
Expand All @@ -30,7 +31,10 @@ jobs:
- workload: EF
read_rps: 1000
write_rps: 100

- workload: Linq2db.Slo
read_rps: 1000
write_rps: 100

concurrency:
group: slo-${{ github.ref }}-${{ matrix.workload }}
cancel-in-progress: true
Expand Down
21 changes: 21 additions & 0 deletions examples/Linq2db.QuickStart/Linq2db.QuickStart.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\Linq2db.Ydb\src\Linq2db.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="linq2db" Version="6.0.0-rc.3" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.8.0"/>
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="5.0.0"/>
<PackageReference Include="Microsoft.Extensions.Logging" Version="5.0.0"/>
<PackageReference Include="Polly" Version="8.4.1" />
</ItemGroup>
</Project>
Loading
Loading