In Microsoft Dynamic CRM, I have a workflow process when a record is created.
When I create a new record using Entity Framework(EF), the workflow is not triggered. But it triggers fine when I create a record using Organization Service Proxy.
Below is my code to create a new record using EF.
Entity e = db.Entity.Create();
//
......
//
e.Entity.Add(e);
e.SaveChanges();
Above code works fine and it creates a new record. But it doesn't trigger the Workflow Process.
What could be the solution in this scenario?
*This post is locked for comments