We have an Entity Data Model which is used by a WCF Data Service that needs to run some business logic after persisting an entity to the database. In this case it needs to pass the id generated for the persisted entity to another service via a WCF web service call.
The question is how do we run some business logic after saving the entity. Part of this business logic will be a call to another web service with the generated id.
Thanks in advance.