Let me explain the title.
I\'m using Entity Framework Code First in an application (TestApp). For debugging purposes the TestApp connects t
There is nothing you can use to notify clients using entity framework. You can write an overload for SaveChanges
, or create extension method but as far as you do not have client->server architecture I can not imagine how you can achieve this.
If you use WCF as your gateway to the database, you could create duplex communication between your client and server and as new records are available clients would be notified using Callback Channel.
Another approach is to use MS SQL Service Broker Overview (Service Broker)
Despite the fact, that there are many different ways to get desired result, none of them are related to entity framework as it is ORM nor a application framework or Communication framework for applications built with .NET.