All Projects → enisgurkann → ENLOCK

enisgurkann / ENLOCK

Licence: GPL-3.0 license
Efcore with no lock extention

Programming Languages

C#
18002 projects

Projects that are alternatives of or similar to ENLOCK

Efcore.bulkextensions
Entity Framework Core Bulk Batch Extensions for Insert Update Delete Read (CRUD), Truncate and SaveChanges operations on SQL Server, PostgreSQL, SQLite
Stars: ✭ 2,295 (+9080%)
Mutual labels:  efcore, entityframework
Detached-Mapper
An ORM friendly mapper. Allows saving entire entity graphs. Heavily inspired in GraphDiff and AutoMapper.
Stars: ✭ 89 (+256%)
Mutual labels:  efcore, entityframework
Heidisql
A lightweight client for managing MariaDB, MySQL, SQL Server, PostgreSQL and SQLite, written in Delphi
Stars: ✭ 2,864 (+11356%)
Mutual labels:  mssql
BlazorEFCoreMultitenant
Examples of multitenancy using EF Core and Blazor.
Stars: ✭ 67 (+168%)
Mutual labels:  efcore
NHibernate.AspNetCore.Identity
ASP.NET Core Identity Provider for NHibernate
Stars: ✭ 54 (+116%)
Mutual labels:  mssql
Cqrs Clean Eventual Consistency
CQRS, using Clean Architecture, multiple databases and Eventual Consistency
Stars: ✭ 247 (+888%)
Mutual labels:  mssql
EasyProfiler
This repo, provides query profiler for .Net
Stars: ✭ 99 (+296%)
Mutual labels:  efcore
Linq2db
Linq to database provider.
Stars: ✭ 2,211 (+8744%)
Mutual labels:  mssql
EntityFrameworkCore.Triggered
Triggers for EFCore. Respond to changes in your DbContext before and after they are committed to the database.
Stars: ✭ 361 (+1344%)
Mutual labels:  efcore
LYM.NetCore
IdentityServer4+EFCore
Stars: ✭ 17 (-32%)
Mutual labels:  efcore
EF6-DBFirst-Demo
Entity Framework 6 Database-First Demo Project
Stars: ✭ 110 (+340%)
Mutual labels:  entityframework
MoalemYar
A personal project for class management, using various technologies like WPF, Entityframwork, CodeFirst, Sqlite, Migration and more
Stars: ✭ 53 (+112%)
Mutual labels:  entityframework
node-red-contrib-mssql-plus
A Node-RED node to read and write to Microsoft MS SQL Databases
Stars: ✭ 22 (-12%)
Mutual labels:  mssql
EFCore.VisualBasic
Adds VB design-time support to EF Core
Stars: ✭ 20 (-20%)
Mutual labels:  efcore
Redaxscript
A modern, ultra lightweight and rocket fast Content Management System
Stars: ✭ 241 (+864%)
Mutual labels:  mssql
elearning
elearning linux/mac/db/cache/server/tools/人工智能
Stars: ✭ 72 (+188%)
Mutual labels:  mssql
Space Cloud
Open source Firebase + Heroku to develop, scale and secure serverless apps on Kubernetes
Stars: ✭ 3,323 (+13192%)
Mutual labels:  mssql
bizbook-server
The repository of bizbook server web api project
Stars: ✭ 45 (+80%)
Mutual labels:  mssql
eCommerce Shop
eCommerceShop renowned stylish, affordable, new and original fashion to you. our product mainly focuses on women wear’s, but it also offers men's apparel, children clothes, accessories, shoes, bags and other fashion items. BossKinds manufacture and supplier of leisurewear, workwear and school uniforms. we understood the importance of making good…
Stars: ✭ 26 (+4%)
Mutual labels:  mssql
laravel-database-manager
Make your database simple, easier and faster with vuejs.
Stars: ✭ 50 (+100%)
Mutual labels:  mssql

ENLOCK - EFCORE With(No Lock) Tool

GitHub GitHub Repo stars GitHub last commit Contributors Discussions Nuget version Nuget downloads

Entity freamwork kullanırken database kilitlenme yani lock olayını engellemek için kullandığımız transcaction scope olayını basite indirgemek için yaptığım extention dur

Methods

FirstOrDefault,Single,ToList,Any and Async

Efcore Provider Usage

PM> Install-Package ENLOCK
PM> Standart FirstOrDefault
        var customer = await _context
        .Customers
        .Where(x => x.Name == 'Enis' && x.Surname == 'Gürkan')
        .FirstOrDefaultkAsync();
 
PM> Using ToFirstOrDefaultWithNoLockAsync
        var customer = await _context
        .Customers
        .Where(x => x.Name == 'Enis' && x.Surname == 'Gürkan')
        .ToFirstOrDefaultWithNoLockAsync();
 
PM> Using other expressions
        var customers = await _context.NoLock(s => s.Customers.ToListAsync());
 
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].