#
aspnetcore3
Here are 30 public repositories matching this topic...
ASP.NET Core 3.1 JWT Authentication API
-
Updated
Jun 11, 2020 - C#
ASP.NET Core 3.1 API for User Management, Authentication and Registration
-
Updated
Jun 11, 2020 - C#
ASP.NET Core 3.1 - Role Based Authorization API
-
Updated
Dec 12, 2019 - C#
*SPA template* ASP.NET Core 3.1 / React + Redux + TypeScript + Hot Module Replacement (HMR)
react
redux
typescript
styled-components
hmr
aspnetcore
aspnet
ssr
netcore
dotnet-core
signalr
healthchecks
dotnet-template
netcore3
aspnetcore3
react-functional-select
spa-template
netcore31
-
Updated
Jul 3, 2020 - TypeScript
ASP.NET Core 3.1 - Basic HTTP Authentication API
-
Updated
Dec 12, 2019 - C#
*SPA template* ASP.NET Core 3.1 / Vue + Vuex + TypeScript + Hot Module Replacement (HMR)
typescript
vue
hmr
aspnetcore
aspnet
vuex
netcore
dotnet-core
vue-styled-components
dotnet-template
vue-snotify
vuex-module-decorators
netcore3
aspnetcore3
netcore31
-
Updated
Jul 3, 2020 - TypeScript
-
Updated
Jun 6, 2020 - C#
使用 Asp.net core + React 写的 可视化编辑,所见即所得 的 CMS
-
Updated
Jun 29, 2020 - JavaScript
AlphaBot - a Twitch/Slack/Discord Chat Bot used on-stream. The project includes building an old school text adventure.
slack
bot
graphql
twitch
discord
streamer
text-adventure
hangfire
netstandard20
netcore3
aspnetcore3
codebasealpha
-
Updated
Apr 20, 2020 - C#
AspNET Core 3.1 Scaffolding with log, serializer, all structure to work good for me :D
template
aspnetcore
structure
scaffolding
all-in-one
aspnet-web-api
netcore3
aspnetcore3
aspnet-core-3
structured-project
-
Updated
Jul 10, 2020 - C#
-
Updated
Aug 9, 2019 - HTML
An implementation of ASP.NET Core 3.1 web application with MVC architecture using Entity Framework Core in memory database for default user identity
-
Updated
Jun 10, 2020 - C#
This repo is a part of the ASP.NET Core: Custom Authorization Policies With Multiple Requirements article published at Medium
-
Updated
Mar 3, 2020 - C#
ASP.Net Core 3 with Entity Framework Core 3 project using Automapper, DTOs, Entities, Navigations with Looping Handling and Raw SQL the new way
-
Updated
Oct 20, 2019 - C#
Identity Server integration with AspNetCore Identity
-
Updated
Jun 7, 2020 - C#
Personal homepage written in Blazor (WASM), for fun and profit.
-
Updated
Jun 7, 2020 - CSS
Just an attempt to move the default Identity pages into MVC.
-
Updated
Feb 28, 2020 - C#
[PoC] REST API built with ASP.NET Core 3.0, MongoDB, Swagger, Docker and Docker Compose
-
Updated
Dec 2, 2019 - C#
Rolling File Logging with Serilog in ASP.NET Core 3.1
-
Updated
Jun 15, 2020 - HTML
Get started with CouchBase with ASP.NET Core using Linq2CouchBase AND Dependency Injection
-
Updated
Jan 19, 2020 - C#
-
Updated
Jan 24, 2019 - C#
Hello World sample on gRPC with .NET Core 3.0 preview 6
-
Updated
Jun 24, 2019 - C#
Demo repo containing the brand new functionality of Visual Studio 2019 like : Data breakpoints, Search for Objects and Properties in the Watch, Code Cleanup. More info: Leslie Richardson's reading list repo: https://github.com/leslierichardson95/reading-list
-
Updated
Jun 5, 2019 - HTML
Avast prime multiplication assignment implementation
-
Updated
Jun 23, 2020 - C#
A demo build based on aspnetcore3.x
-
Updated
Jun 11, 2020 - C#
Improve this page
Add a description, image, and links to the aspnetcore3 topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the aspnetcore3 topic, visit your repo's landing page and select "manage topics."
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 =