haskell - Relational Mapper for C# that keeps the relational model -
currently application uses ado.net , manual mapping of results.
the reasons are:
- many orms seem have rather unpredictable side-effects lazy loading
- orms not give developer power sql can provide
- i dislike code thats generated in build-step
the approach things hand has proven rather (too) tedious, not able find orm solves these problems c#.
a promising appoach seems to map sql programming language used (make edsl database access).
i found several of projects in haskell:
those projects can add type saftey id columns, cannot make join on columns not related.
are there similar projects c# still developed , allow pocos (or otherwise unit-testable design)?
Comments
Post a Comment