Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
133 changes: 133 additions & 0 deletions images/dotnetfoundation.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 12 additions & 5 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,18 @@
<div class="article row grid">
<div class="col-md-10">
<article class="content wrap" id="_content" data-uid="">
<h1 id="linq-to-db">LINQ to DB</h1>

<p><a href="https://www.nuget.org/profiles/LinqToDB"><img src="https://buildstats.info/nuget/linq2db" alt="NuGet Version and Downloads count"></a>
<a href="https://stackoverflow.com/questions/tagged/linq2db"><img src="https://img.shields.io/stackexchange/stackoverflow/t/linq2db.svg?label=stackoverflow" alt="Stack Exchange questions"></a> </p>
<p><a href="https://twitter.com/linq2db"><img src="https://img.shields.io/twitter/follow/linq2db.svg?style=social" alt="Follow @linq2db"></a></p>
<div class="row">
<div class="col-sm-9">
<h1 id="linq-to-db">LINQ to DB</h1>
<p><a href="https://www.nuget.org/profiles/LinqToDB"><img src="https://buildstats.info/nuget/linq2db" alt="NuGet Version and Downloads count"></a>
<a href="https://stackoverflow.com/questions/tagged/linq2db"><img src="https://img.shields.io/stackexchange/stackoverflow/t/linq2db.svg?label=stackoverflow" alt="Stack Exchange questions"></a> </p>
<p><a href="https://twitter.com/linq2db"><img src="https://img.shields.io/twitter/follow/linq2db.svg?style=social" alt="Follow @linq2db"></a></p>
</div>
<div class="col-sm-3" style="margin-top: 15px;">
<p><small>Supported by the</small></p>
<a href="https://dotnetfoundation.org/" target="_blank"><img src="./images/dotnetfoundation.svg" alt=".NET Foundation" class="foundation-logo"></a>
</div>
</div>
<p>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. </p>
<p>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.</p>
<p>However, it&#39;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.</p>
Expand Down