ASP.NET SignalR is a new library for ASP.NET developers that makes it incredibly simple to add real-time web functionality to your applications. What is “real-time web” functionality? It’s the ability to have your server-side code push content to the connected clients as it happens, in real-time.
Let’s see how easy it is to use CodeFluent Entities with SignalR! This post introduces SignalR development by using CodeFluent Entities and showing how to create an application that shares the state of an CodeFluent entity (Customer) with other clients in real time.
Setting up the solution
The solution contains 4 projects:
- The CodeFluent Entities model
- A class project to contains the generated Business Object Model
- The SignalR server (Console application)
- The SignalR client (WPF application)
The CodeFluent Entities model
The model is very simple, just one entity:
To generate the server code we add the SQL Server Producer and the Business Object Model…
View original post 237 more words