Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bittacklr/projac
A set of .NET projection libraries
https://github.com/bittacklr/projac
c-sharp event-sourcing projections sql
Last synced: 6 days ago
JSON representation
A set of .NET projection libraries
- Host: GitHub
- URL: https://github.com/bittacklr/projac
- Owner: BitTacklr
- License: bsd-3-clause
- Created: 2013-03-23T10:21:01.000Z (almost 12 years ago)
- Default Branch: develop
- Last Pushed: 2022-12-07T18:37:26.000Z (about 2 years ago)
- Last Synced: 2024-12-14T17:21:57.637Z (11 days ago)
- Topics: c-sharp, event-sourcing, projections, sql
- Language: C#
- Homepage:
- Size: 11 MB
- Stars: 137
- Watchers: 15
- Forks: 20
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Projac
Projac is a set of .NET libraries that allow you to author projections targeting various backing stores and is easy to integrate with existing event stores such as [EventStore](http://www.eventstore.org) and [SQLStreamStore](https://github.com/SQLStreamStore). [![Join the chat at https://gitter.im/yreynhout/Projac](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/yreynhout/Projac?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
- [Projac](https://github.com/BitTacklr/Projac/wiki/projac) allows you to author projections that target any store for which you can bring your own connection (e.g [Redis](http://redis.io), [RavenDB](http://ravendb.net/), [Elasticsearch](http://http://www.elasticsearch.org/), [Microsoft Windows Azure Table Storage](http://azure.microsoft.com/en-us/documentation/services/storage/)).
- [Projac.Sql, Projac.SqlClient and Projac.SQLite](https://github.com/BitTacklr/Projac/wiki/projac.sql) allow you to author projections that target relational databases. Projac.Sql contains common abstractions across all database providers that use the ADO.NET model. Projac.SqlClient targets [Microsoft SQL Server](http://www.microsoft.com/en-us/server-cloud/products/sql-server-editions/overview.aspx). Projac.SQLite targets [SQLite](http://sqlite.org). We welcome contributions for other database providers that follow a similar recipe.
It's available on both NuGet & MyGet:
- Projac: [NuGet](https://www.nuget.org/packages/Projac/) - [MyGet](https://www.myget.org/feed/projac/package/nuget/Projac)
- Projac.Sql: [NuGet](https://www.nuget.org/packages/Projac,Sql/) - [MyGet](https://www.myget.org/feed/projac/package/nuget/Projac.Sql)
- Projac.SqlClient: [NuGet](https://www.nuget.org/packages/Projac.SqlClient/) - [MyGet](https://www.myget.org/feed/projac/package/nuget/Projac.SqlClient)
- [WIP] Projac.SQLite: [NuGet](https://www.nuget.org/packages/Projac,SQLite/) - [MyGet](https://www.myget.org/feed/projac/package/nuget/Projac.SQLite)The custom MyGet feed can be found [here](https://www.myget.org/F/projac/api/v3/index.json).
---
**Important Changes**
If you're using a version prior to 0.1.0, not only has your cheese been moved, it probably has been broken in unexpected places. Please check out the [changes made in 0.1.0](https://github.com/BitTacklr/Projac/wiki/Changes0.1.0) as well as the [how do I upgrade to 0.1.0 guide](https://github.com/BitTacklr/Projac/wiki/UpgradeTo0.1.0). If you want to keep your cheese as is, you can always fork this code base and use the `legacy` branch.
---
# Contributions
* Date, DateTime, DateTime2, Money data types in TSql by [@xt0rted](https://github.com/xt0rted)
* The ``positional syntax`` suggestion by [@tojans](https://github.com/tojans).
* Decimal data type in SqlClientSyntax by [@ritasker](https://github.com/ritasker)