All Projects → vany0114 → SignalR-Core-SqlTableDependency

vany0114 / SignalR-Core-SqlTableDependency

Licence: MIT License
Shows how the new SignalR Core works with hubs and sockets, also how it can integrate with SqlTableDependency API.

Programming Languages

C#
18002 projects
HTML
75241 projects
CSS
56736 projects
javascript
184084 projects - #8 most used programming language

Projects that are alternatives of or similar to SignalR-Core-SqlTableDependency

XAF Security E4908
This repository contains examples for Role-based Access Control, Permission Management, and OData / Web / REST API Services for Entity Framework and XPO ORM
Stars: ✭ 47 (+30.56%)
Mutual labels:  aspnetcore, netcore, asp-net-core, entityframeworkcore
Gitserver
ASP.NET Core Git HTTP Server
Stars: ✭ 98 (+172.22%)
Mutual labels:  aspnetcore, netcore, asp-net-core
Jwtsecurity
JWT Server for Asp.Net Core and Asp.Net WebAPI2
Stars: ✭ 16 (-55.56%)
Mutual labels:  aspnetcore, asp-net-core, netcore2
Netcorecms
NetCoreCMS is a modular theme supported Content Management System developed using ASP.Net Core 2.0 MVC. Which is also usable as web application framework. This project is still under development. Please do not use before it's first release.
Stars: ✭ 165 (+358.33%)
Mutual labels:  aspnetcore, netcore, asp-net-core
ChatService
ChatService (SignalR).
Stars: ✭ 26 (-27.78%)
Mutual labels:  aspnetcore, asp-net-core, signalr
awesome-dotnet-async
A curated list of awesome articles and resources to learning and practicing about async, threading, and channels in .Net platform. 😉
Stars: ✭ 84 (+133.33%)
Mutual labels:  aspnetcore, netcore, asp-net-core
Formhelper
ASP.NET Core - Transform server-side validations to client-side without writing any javascript code. (Compatible with Fluent Validation)
Stars: ✭ 155 (+330.56%)
Mutual labels:  aspnetcore, netcore, asp-net-core
Signalrsample
Real-time Charts with ASP.NET Core SignalR and Chart.js.
Stars: ✭ 23 (-36.11%)
Mutual labels:  netcore, asp-net-core, signalr
grandnode2
Free, Open source, Fast, Headless, Multi-tenant eCommerce platform built with .NET Core, MongoDB, AWS DocumentDB, Azure CosmosDB, LiteDB, Vue.js.
Stars: ✭ 626 (+1638.89%)
Mutual labels:  aspnetcore, netcore, asp-net-core
OrdersManagementSystem
Project demonstrates usage of Prism composition library, Material design library, SQL Server, Entity Framework in WPF application
Stars: ✭ 29 (-19.44%)
Mutual labels:  aspnetcore, entity-framework, asp-net-core
SQLiteEncryptionUsingEFCore
SQLite Encryption using Entity Framework Core (EFCore)
Stars: ✭ 42 (+16.67%)
Mutual labels:  netcore, asp-net-core, netcore2
react-redux-aspnet-core-webapi
No description or website provided.
Stars: ✭ 34 (-5.56%)
Mutual labels:  aspnetcore, entity-framework, signalr
Efcoreinaction Secondedition
Supporting repo to go with book "Entity Framework Core in Action", second edition
Stars: ✭ 96 (+166.67%)
Mutual labels:  entity-framework, netcore, asp-net-core
Netcorebbs
ASP.NET Core Light forum NETCoreBBS
Stars: ✭ 483 (+1241.67%)
Mutual labels:  aspnetcore, netcore, asp-net-core
Dnczeus
DncZeus 是一个基于ASP.NET Core 3 + Vue.js(iview-admin) 的前后端分离的通用后台权限(页面访问、操作按钮控制)管理系统框架。后端使用.NET Core 3 + Entity Framework Core构建,UI则是目前流行的基于Vue.js的iView(iview-admin)。项目实现了前后端的动态权限管理和控制以及基于JWT的用户令牌认证机制,让前后端的交互更流畅。码云镜像:https://gitee.com/rector/DncZeus 。演示地址(demo):
Stars: ✭ 1,104 (+2966.67%)
Mutual labels:  entity-framework, netcore, netcore2
Elmahcore
ELMAH for Net.Standard and Net.Core
Stars: ✭ 127 (+252.78%)
Mutual labels:  aspnetcore, netcore, asp-net-core
Notify.Me
Simple host application to provide send/receive feature for any kind of notifications and messages between client(s) and the host. The application is based on ASP.NET Core and SignalR to demostrate some features of these things...
Stars: ✭ 28 (-22.22%)
Mutual labels:  asp-net-core, signalr, signalr-core
Onion Architecture Asp.net Core
WhiteApp API solution template which is built on Onion Architecture with all essential feature using .NET 5!
Stars: ✭ 196 (+444.44%)
Mutual labels:  aspnetcore, entity-framework, asp-net-core
Awesome-Nuget-Packages
📦 A collection of awesome and top .NET packages sorted by most popular needs.
Stars: ✭ 87 (+141.67%)
Mutual labels:  aspnetcore, netcore, asp-net-core
TypedSignalR.Client
C# Source Generator to Create Strongly Typed SignalR Client.
Stars: ✭ 16 (-55.56%)
Mutual labels:  signalr, signalr-client, signalr-core

SignalR Core and SqlTableDependency

Is very early to talk about SignalR Core but it's exciting too. With the recent releasing of .netcore 2.0 the last Microsoft Build we can test a lot of great improvements and new features, between of them, the new SignalR Core. (Or at least the aproximation of what the SignalR team wants to build.) I have to warning that SignalR Core is on development process right now (as a matter of fact, while I was doing this demo I faced some issues because of the constant upgrades of SignalR team), so a bunch of things could change, but in some months (6 months at least) we can compare the progress and we could have a stable version of SignalR Core, meanwhile we can enjoy of this "version".

Prerequisites and Installation Requirements

Instructions

  1. Clone this repository.
  2. Compile it.
  3. In order to use the SQL Broker, you must be sure to enable Service Broker for the database. You can use the following command: ALTER DATABASE MyDatabase SET ENABLE_BROKER
  4. Create Products table:
CREATE TABLE [dbo].[Products](
	[Name] [varchar](200) NOT NULL,
	[Quantity] [int] NOT NULL,
 CONSTRAINT [PK_Products] PRIMARY KEY CLUSTERED 
(
	[Name] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]

GO
  1. Execute the SignalRCore.Web project.
  2. Execute the SignalRCore.CommandLine project. You can use dotnet run command.

Support

If you find this project helpful you can support me!

Visit my blog http://elvanydev.com/ to view the whole post about SignalR Core.

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].