Skip to content

Commit d1ccfcc

Browse files
authored
chore: Add NuGet version of README (#76)
1 parent 36b8d4f commit d1ccfcc

3 files changed

Lines changed: 57 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,17 @@ All notable changes to this project will be documented in this file. The format
44

55
## [Unreleased]
66

7+
## [0.1.1] - 2025-06-01
8+
9+
## Added
10+
11+
- Added a dedicated README that can be properly rendered on NuGet.
12+
713
## [0.1.0] - 2025-06-01
814

915
### Added
1016

1117
- Support for the ParadeDB query language, index management, and diagnostics.
1218

19+
[0.1.1]: https://github.com/paradedb/efcore-paradedb/releases/tag/v0.1.0...v0.1.1
1320
[0.1.0]: https://github.com/paradedb/efcore-paradedb/releases/tag/v0.1.0

NUGET-README.md

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
# ParadeDB for Entity Framework Core
2+
3+
The official [Entity Framework Core](https://learn.microsoft.com/en-us/ef/core/) integration for [ParadeDB](https://paradedb.com), including first-class support for managing BM25 indexes and running queries using the full ParadeDB API. Follow the [getting started guide](https://docs.paradedb.com/documentation/getting-started/environment#entity-framework-core) to begin.
4+
5+
## Requirements & Compatibility
6+
7+
| Component | Supported |
8+
| ---------- | ----------------------------- |
9+
| .NET | 8.0+ |
10+
| EF Core | 8.0+ |
11+
| ParadeDB | 0.23.0+ |
12+
| PostgreSQL | 15+ (with ParadeDB extension) |
13+
14+
## Examples
15+
16+
- [Quickstart](examples/Quickstart/Program.cs)
17+
- [Faceted Search](examples/FacetedSearch/Program.cs)
18+
- [Autocomplete](examples/Autocomplete/Program.cs)
19+
- [More Like This](examples/MoreLikeThis/Program.cs)
20+
- [Hybrid Search (RRF)](examples/HybridRrf/Program.cs)
21+
- [RAG](examples/Rag/Program.cs)
22+
23+
## Contributing
24+
25+
See [CONTRIBUTING.md](CONTRIBUTING.md) for development setup, running tests, linting, and the PR workflow.
26+
27+
## Support
28+
29+
If you're missing a feature or have found a bug, please open a
30+
[GitHub Issue](https://github.com/paradedb/efcore-paradedb/issues/new/choose).
31+
32+
To get community support, you can:
33+
34+
- Post a question in the [ParadeDB Slack Community](https://paradedb.com/slack)
35+
- Ask for help on our [GitHub Discussions](https://github.com/paradedb/paradedb/discussions)
36+
37+
If you need commercial support, please [contact the ParadeDB team](mailto:sales@paradedb.com).
38+
39+
## Acknowledgments
40+
41+
We would like to thank the following members of the Entity Framework Core community:
42+
43+
- [Nandor Krizbai](https://github.com/nandor23) - for the initial implementation of this project
44+
- [Daniel Oliveira](https://github.com/daniel3303) - for implementing [ParadeDbEntityFrameworkCore](https://github.com/daniel3303/ParadeDbEntityFrameworkCore) which inspired our indexing implementation
45+
46+
## License
47+
48+
ParadeDB for Entity Framework Core is licensed under the [MIT License](LICENSE).

src/Directory.Build.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<Copyright>Copyright (c) ParadeDB, Inc.</Copyright>
1212
<PackageLicenseExpression>MIT</PackageLicenseExpression>
1313
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
14-
<PackageReadmeFile>README.md</PackageReadmeFile>
14+
<PackageReadmeFile>NUGET-README.md</PackageReadmeFile>
1515
<PackageIcon>paradedb-logo.png</PackageIcon>
1616
<PackageProjectUrl>https://github.com/paradedb/efcore-paradedb</PackageProjectUrl>
1717
<RepositoryUrl>https://github.com/paradedb/efcore-paradedb</RepositoryUrl>
@@ -21,7 +21,7 @@
2121
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
2222
</PropertyGroup>
2323
<ItemGroup>
24-
<None Include="..\README.md" Pack="true" PackagePath="\" />
24+
<None Include="..\NUGET-README.md" Pack="true" PackagePath="\" />
2525
<None Include="..\LICENSE" Pack="true" PackagePath="\" />
2626
<None Include="..\assets\paradedb-logo.png" Pack="true" PackagePath="\" />
2727
</ItemGroup>

0 commit comments

Comments
 (0)