Skip to content

Commit f4060d5

Browse files
committed
v8.4
1 parent 47e86e6 commit f4060d5

2 files changed

Lines changed: 25 additions & 0 deletions

File tree

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# cloudscribe.SimpleContent.Storage.EFCore.Common
2+
3+
This package provides the base Entity Framework Core implementation for cloudscribe SimpleContent commands and queries. It is intended to be used as a foundational library for database-specific EFCore storage providers within the cloudscribe.SimpleContent ecosystem.
4+
5+
## Features
6+
- Common command and query logic for EFCore-based storage
7+
- Designed for extension by MSSQL, MySQL, PostgreSQL, SQLite providers
8+
- Used internally by other cloudscribe.SimpleContent.Storage.EFCore.* projects
9+
10+
## Usage
11+
Reference this package from your database-specific provider or application project. Typically, you will not use this package directly, but through one of the database provider packages (e.g., MSSQL, MySQL, PostgreSQL, SQLite).
12+
13+
```
14+
// Example usage (in your DbContext registration)
15+
services.AddSimpleContentEFCoreStorage();
16+
```
17+
18+
## License
19+
This project is licensed under the Apache-2.0 License. See the LICENSE file for details.
20+
21+
## Repository
22+
[cloudscribe.SimpleContent on GitHub](https://github.com/cloudscribe/cloudscribe.SimpleContent)

src/cloudscribe.SimpleContent.Storage.EFCore.Common/cloudscribe.SimpleContent.Storage.EFCore.Common.csproj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,14 @@
1111
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
1212
<RepositoryUrl>https://github.com/cloudscribe/cloudscribe.SimpleContent.git</RepositoryUrl>
1313
<RepositoryType>git</RepositoryType>
14+
<PackageReadmeFile>README.md</PackageReadmeFile>
15+
<PackageReadmeFile>README.md</PackageReadmeFile>
1416

1517
</PropertyGroup>
1618

1719
<ItemGroup>
1820
<None Include="icon.png" Pack="true" PackagePath="\" />
21+
<None Include="README.md" Pack="true" PackagePath="/" />
1922
</ItemGroup>
2023

2124
<ItemGroup>

0 commit comments

Comments
 (0)