I have a plugin that is calculating some fields in an entity. I would like to be able to do something like
var batch = new Entity("new_cookiebatch");
context.AddObject(batch);
context.Savechanges();
var foo = batch.new_computedValue();
(Sorry the add code button is not working.)
My problem is that the batch attributs that change in another pulgin don't look like there are showing up. How should I really be going abou this?
Thanks!