Here are
267 public repositories
matching this topic...
Sample ASP.NET Core 3.1 reference application, powered by Microsoft, demonstrating a layered application architecture with monolithic deployment model. Download the eBook PDF from docs folder.
Util是一个.net core平台下的应用框架,旨在提升小型团队的开发输出能力,由常用公共操作类(工具类)、分层架构基类、Ui组件,第三方组件封装,第三方业务接口封装,配套代码生成模板,权限等组成。
Entity Framework Core Bulk Batch Extensions for Insert Update Delete and Read (CRUD) operations on SQL Server and SQLite
.NetCore+Vue,前后端分离,支持前后端业务代码扩展的快速开发框架,Vol.Vue为前端项目,Vue.Net后台项目
Asp.Net Core 3.1 & Angular 8 SPA Fullstack application with plenty of examples. Live demo:
基于EF Core的Code First模式的DotNetCore快速开发框架,其中包括DBContext、IOC组件autofac和AspectCore.Injector、代码生成器(也支持DB First)、基于AspectCore的memcache和Redis缓存组件,以及基于ICanPay的支付库和一些日常用的方法和扩展,比如批量插入、更新、删除以及触发器支持,当然还有demo。欢迎提交各种建议、意见和pr~
Entity Framework Core Second Level Caching Library
💗 A crafted toolkit for building cloud-native apps on the .NET platform
🥗 打造一个功能强大的通用型Ids4授权服务中心,配合之前的所有开源项目
Entity Framework visual design surface and code-first code generation for EF6, Core and beyond
Lightweight and Extensible Infrastructure for Building Web Applications - Web Application Framework
Moking Entity Framework Core operations such ToListAsync, FirstOrDefaultAsync etc
A highly customized sample of the ASP.NET Core Identity
EFCore Extension that allows a means to map a stored procedure to a class, fluently.
EF Core Second Level Cache Interceptor
Asp.NET Core 2.0 WebApi JWT Authentication with Identity & MySQL
Projeto ASP.NET Core + Entity Framework Core + Dapper, demonstrando o uso de ambos separadamente e em um cenário híbrido.
The collection of utilities, best practice and fluent method for .NET Core
Updated
Jul 5, 2020
JavaScript
ASP.NET Core application using Command Pattern and Repository Pattern
Extensions, Auditing, Concurrency Checks, JSON properties and Transaction Logs for EntityFramework and EFCore
A very simple .net core 3.1 library (lightweight, easy to use and customize) that supports bulk insert, bulk update, bulk delete and bulk merge database operations. Lambda Expression is also supported.
MultiTenancyServer core library.
Example of a Blazor WebAssembly project that uses Entity Framework Core on the server for data access.
JSON ValueConverter for EF Core 3.0+
Projetos com os novos recursos do Entity Framework Core
This is my graduation project of dotnet core version
Improve this page
Add a description, image, and links to the
efcore
topic page so that developers can more easily learn about it.
Curate this topic
Add this topic to your repo
To associate your repository with the
efcore
topic, visit your repo's landing page and select "manage topics."
Learn more
You can’t perform that action at this time.
You signed in with another tab or window. Reload to refresh your session.
You signed out in another tab or window. Reload to refresh your session.
in the Documentation it says that the connectionString will be specified in the OnConfiguring like so
protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder)
{
optionsBuilder.UseSqlite(ConnectionString);
base.OnConfiguring(optionsBuilder);
}
and i also followed the dataIsolation sample
this is inside setupDb()
var ti =