https://github.com/robsmitha/dotnet-warehouse
A dotnet library for managing ETL processing and data warehouse management in EF Core.
https://github.com/robsmitha/dotnet-warehouse
Last synced: over 1 year ago
JSON representation
A dotnet library for managing ETL processing and data warehouse management in EF Core.
- Host: GitHub
- URL: https://github.com/robsmitha/dotnet-warehouse
- Owner: robsmitha
- Created: 2021-09-30T01:09:09.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-12-09T01:43:10.000Z (over 4 years ago)
- Last Synced: 2025-02-09T11:11:57.783Z (over 1 year ago)
- Language: C#
- Homepage:
- Size: 111 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# dotnet-warehouse
A dotnet library for managing ETL processing and data warehouse management in EF Core.
## Tools
- .NET Core
- Entity Framework Core
- Xunit, Moq
## Running the SqlServer sample
1. Create a sample sql server database named ``SqlServerApp``
2. Create a sample sql server database named ``SqlServerAppWarehouse``
3. Add ``appsettings.json`` file to [SqlServer.App](https://github.com/robsmitha/dotnet-warehouse/tree/master/samples/SqlServer.App)
```
{
"ConnectionStrings": {
"DefaultConnection": "Server=localhost;Database=SqlServerApp;Trusted_Connection=True;",
"WarehouseConnection": "Server=localhost;Database=SqlServerAppWarehouse;Trusted_Connection=True;"
}
}
```
4. Run the sample