Skip to content
This repository has been archived by the owner on May 7, 2020. It is now read-only.

Commit

Permalink
Merge pull request #167 from jogibear9988/patch-1
Browse files Browse the repository at this point in the history
linq2db
  • Loading branch information
clairernovotny committed Mar 20, 2020
2 parents cfc2b24 + eaa64f4 commit 51d4770
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 3 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,10 @@ There are many projects under the stewardship of the .NET Foundation. The [full

- [Kerberos.NET](https://github.com/dotnet/Kerberos.NET)

**linq2db**

- [linq2db](https://github.com/linq2db/linq2db)

**Microsoft**

- [.NET Core](https://dotnet.github.io/)
Expand Down
22 changes: 22 additions & 0 deletions projects/linq2db.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# linq2db

[linq2db](https://github.com/linq2db/linq2db) - LINQ to DB is the fastest LINQ database access library offering a simple, light, fast, and type-safe layer between your POCO objects and your database.

Architecturally it is one step above micro-ORMs like Dapper, Massive, or PetaPoco, in that you work with LINQ expressions, not with magic strings, while maintaining a thin abstraction layer between your code and the database. Your queries are checked by the C# compiler and allow for easy refactoring.

However, it's not as heavy as LINQ to SQL or Entity Framework. There is no change-tracking, so you have to manage that yourself, but on the positive side you get more control and faster access to your data.

In other words LINQ to DB is type-safe SQL..

## Project Details

* [Project Info Site](https://github.com/linq2db/linq2db)
* [Project Code Site](https://github.com/linq2db/linq2db)
* Project License Type: [MIT](https://github.com/linq2db/linq2db/blob/master/MIT-LICENSE.txt)
* Project Main Contacts: [Igor Tkachev](https://github.com/igor-tkachev), [Svyatoslav Danyliv](https://github.com/sdanyliv), [MaceWindu](https://github.com/MaceWindu), [Ilya Chudin](https://github.com/ili).

## Quicklinks

* [Documentation](https://github.com/linq2db/linq2db/wiki)
* [Blog](http://blog.linq2db.com)
* [Contribute](https://github.com/linq2db/linq2db/blob/master/CONTRIBUTING.md)
10 changes: 7 additions & 3 deletions projects/projects.json
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,9 @@
{"name":"nerdbank-gitversioning.md",
"contributor":"Andrew Arnott"},
{"name":"marten.md",
"contributor":"Marten"}
"contributor":"Marten"},
{"name":"linq2db.md",
"contributor":"linq2db"}
],
"contributors":
[
Expand Down Expand Up @@ -247,6 +249,8 @@
{"name": "Marten",
"logo": "https://martendb.io/content/images/emblem.png",
"web": "https://martendb.io/"},
{"name": "Steve Syfuhs",
"web": "https://syfuhs.net/"}
{"name": "Steve Syfuhs",
"web": "https://syfuhs.net/"},
{"name": "linq2db",
"web": "https://github.com/linq2db/linq2db/"}
]}

0 comments on commit 51d4770

Please sign in to comment.