i want to use early binding as we have created wrapper class entities.cs using developer toolkit.
protected void ExecutePreCaseCreate(LocalPluginContext localContext)
{
if (localContext == null)
{
throw new ArgumentNullException("localContext");
}
IPluginExecutionContext context = localContext.PluginExecutionContext;
IOrganizationService service = localContext.OrganizationService;
OrganizationServiceContext ServiceContext = new OrganizationServiceContext(service);
//here i want to retrive all tasks associated with Case using early binding, how will query using early binding with Linq
}
I am facing problem query to early binding Linq ?
Prashanth M..J