Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/publish-ef.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: publish
name: publish EF
on:
workflow_dispatch:
inputs:
Expand Down
5 changes: 4 additions & 1 deletion src/EFCore.Ydb/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
- Supported connect to Yandex Cloud
- Supported migration tools: initial implementation of EF Core migration tool support.
- Enabled `EntityFrameworkCore.FunctionalTests` for unit and functional testing coverage.
- Supported connections to Yandex Cloud (YDB Cloud) using standard configuration options.
- First provider implementation for YDB: basic CRUD, DbContext mapping, and initial LINQ translation functionality.
4 changes: 2 additions & 2 deletions src/EFCore.Ydb/src/EntityFrameworkCore.Ydb.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.0"/>
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="9.0.0"/>
</ItemGroup>

<ItemGroup>
<ProjectReference Include="../../Ydb.Sdk/src/Ydb.Sdk.csproj"/>
<PackageReference Include="Ydb.Sdk" Version="0.17.0"/>
</ItemGroup>

<ItemGroup>
Expand Down
Loading