Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mysteryjeans/crystalmapper
ORM for .NET, that is fast, simple and written for financial industry
https://github.com/mysteryjeans/crystalmapper
database dataset linq orm
Last synced: about 4 hours ago
JSON representation
ORM for .NET, that is fast, simple and written for financial industry
- Host: GitHub
- URL: https://github.com/mysteryjeans/crystalmapper
- Owner: mysteryjeans
- License: bsd-3-clause
- Created: 2013-12-27T13:00:05.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2018-03-22T15:04:01.000Z (over 6 years ago)
- Last Synced: 2024-04-16T06:58:56.031Z (7 months ago)
- Topics: database, dataset, linq, orm
- Language: C#
- Homepage:
- Size: 27.8 MB
- Stars: 0
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: License.txt
Awesome Lists containing this project
README
# Why CrystalMapper?
**CrystalMapper is object relation mapping library for C#, that is fast, simple and encourages rapid development for database driven applications**
Developed for high performance large scale financial systems, used in number of successful projects. It is amazingly fast even with LINQ as compare to other ORMs. It fits very well into MVC pattern and supports multitier applications … please read simple [application architecture breakdown](http://codestand.feedbook.org/2011/02/application-architecture.html) that utilizes CrystalMapper as an ORM. It is design to maintain clean separation of database, where Model only have to understand CrystalMapper API. Templates for generating mapping classes are integral part of the ORM.
## Speed
It competes directly with ADO.NET DataSet, following are some stats for MySQL database. It proves to be faster than other leading ORMs
* DataSet **17.161 sec**
* Crystal Mapper **15.782 sec**
* Crystal Mapper & LINQ **19.261 sec**
## Getting Started* Download lastest release from the download page.
* Open CrystalMapper solution under Implementation folder.
* Run CrystalMapper.Test in debug mode to see it in action; everything just works.