toofz Data serves as the data access layer (DAL) for toofz. Retrieving data is done through an Entity Framework Core Code First model.
Modifying data uses a combination of SqlBulkCopy
and raw SQL for performant bulk inserting and upserting.
toofz Data is a component of toofz. Information about other projects that support toofz can be found in the meta-repository.
Add a NuGet.Config to your solution directory with the following content:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<add key="toofz" value="https://www.myget.org/F/toofz/api/v3/index.json" />
</packageSources>
</configuration>
Install-Package 'toofz.Data'
- toofz API
- toofz Leaderboards Service
- toofz Daily Leaderboards Service
- toofz Players Service
- toofz Replays Service
- .NET Framework 4.6.1
- SQL Server
Contributions are welcome for toofz Data.
- Want to report a bug or request a feature? File a new issue.
- Join in design conversations.
- Fix an issue or add a new feature.
- Aside from trivial issues, please raise a discussion before submitting a pull request.
- Visual Studio 2017
Open the solution file and build. Use Test Explorer to run tests.
toofz Data is released under the MIT License.