c63205;
When flag sets to true, the EntityCacheState is written into a binary xml format.
When flag sets to false, the EntityCacheState is written into a text xml format.
I have tested the following code and made sure that the output was correct for each option.
var mgr = new NorthwindIBEntityManager();
var customers = mgr.Customers.FirstOrNullEntity();
mgr.CacheStateManager.SaveCacheState(@"C:\temp\EntityCacheStateXml.xml", false);
mgr.CacheStateManager.SaveCacheState(@"C:\temp\EntityCacheStateBin.bin", true);
Edited by DenisK - 06-Jan-2011 at 4:01pm