Author |
Share Topic Topic Search Topic Options
|
caine.chow
Newbie
Joined: 08-Jul-2009
Posts: 3
|
Post Options
Quote Reply
Topic: Serialize EF Entity Properties as XML Posted: 09-Jul-2009 at 11:14am |
We are trying to serialize some of our EF Entities as XML so that we can persist that XML when we want to save the data but not commit that data to the database.
Apart from implementing IXMLSerializable on every entity to be serialized, do we have any built in DevForce options? Is it possible to mark our generated EF Entity members with [DataMember] (http://www.ideablade.com/forum/forum_posts.asp?TID=1238&KW=datamember&PID=4462#4462 suggests that this is not possible and very bad)?
Any help would be greatly appreciated.
CC
|
 |
kimj
IdeaBlade
Joined: 09-May-2007
Posts: 1391
|
Post Options
Quote Reply
Posted: 10-Jul-2009 at 6:36pm |
DevForce entities are not currently serializable to XML. This is a long-standing planned feature which always seems to get bumped when prioritizing. It is not currently possible using the Object Mapper to add a DataMember attribute to members to be serialized.
You should be able to do what you need with the EntityCacheState, however. You can save some or all entities loaded into the EntityManager cache to a file using:
entityManager.CacheStateManager.SaveCacheState(@"c:\temp\entitycache.bin");
And load a saved EnttyCacheState back into an EntityManager with:
entityManager.CacheStateManager.RestoreCacheState(@"c:\temp\entitycache.bin");
There are other overloads available, so check the documentation for more information.
|
 |
caine.chow
Newbie
Joined: 08-Jul-2009
Posts: 3
|
Post Options
Quote Reply
Posted: 13-Jul-2009 at 7:45am |
Thanks Kimj,
I did eventually get to the entityManager.CacheStateManager and saving and restoration from file works perfectly. However, when I try to save and restore to and from a MemoryStream it does not restore properly and fails with the following error:
System.Runtime.Serialization.SerializationException : There was an error deserializing the object . Unexpected end of file. Following elements are not closed: PersistenceOrderWrapper, SaveOptionsSurrogate, EntityCacheState.
----> System.Xml.XmlException : Unexpected end of file. Following elements are not closed: PersistenceOrderWrapper, SaveOptionsSurrogate, EntityCacheState.
My test code looks like the following:
System.IO.MemoryStream ms = new System.IO.MemoryStream();
IdeaBlade.EntityModel.v4.EntityManager entityMgr = new EntityManager();
entityMgr.AddEntity(workflowEntity);
entityMgr.CacheStateManager.SaveCacheState(ms, false);
ms.Position = 0;
IdeaBlade.EntityModel.v4.EntityManager entityMgr2 = new EntityManager();
entityMgr2.CacheStateManager.RestoreCacheState(ms, RestoreStrategy.Normal, false);
I have also been trying to serialize the CachedState using NetDataContractSerialization as well as DataContractSerialization w/o success.
Any ideas as to why saving and restoring to/from a memory stream isn't working for me?
Thanks very much.
|
 |
kimj
IdeaBlade
Joined: 09-May-2007
Posts: 1391
|
Post Options
Quote Reply
Posted: 13-Jul-2009 at 11:25am |
We had a problem with not flushing the stream correctly, which was fixed in version 5.1.1. The workaround in prior versions is to pass 'true' for the closeOnExit argument to SaveCacheState.
|
 |
caine.chow
Newbie
Joined: 08-Jul-2009
Posts: 3
|
Post Options
Quote Reply
Posted: 10-Aug-2009 at 2:23pm |
I'll give that a try.
Thanks very much.
|
 |
mtx_252
Newbie
Joined: 11-Aug-2009
Posts: 8
|
Post Options
Quote Reply
Posted: 05-Nov-2009 at 6:19am |
Hello,
I am using version 5.2.3.1 and having the same problem with RestoreCacheState. Is there another workaround or a fix fore this issue?
Thanks
|
 |
kimj
IdeaBlade
Joined: 09-May-2007
Posts: 1391
|
Post Options
Quote Reply
Posted: 05-Nov-2009 at 1:36pm |
The problem mentioned in the earlier post should be fixed in the 5.2.3.1 release (it was actually fixed in an earlier release), and there are no "known" issues right now. Can you provide some more information on the error you're seeing? Also, are you working in WinClient/Universal or Silverlight?
|
 |
mtx_252
Newbie
Joined: 11-Aug-2009
Posts: 8
|
Post Options
Quote Reply
Posted: 06-Nov-2009 at 7:42am |
Hello,
I am working in Silverlight - devForce version 5.2.3.1.
I am trying to restore from a memory stream using the following code:
MemoryStream cacheStream = (MemoryStream)ISManager.get_ISStream(cENTITYMANAGER); entityManager.CacheStateManager.RestoreCacheState(cacheStream, RestoreStrategy.Normal, false); cacheStream.Close();
It seems like once I get an exception thrown by the CacheStateManager, I cant restore from Stream even if I re-add the reference DLLs and do a clean build. I had the same problem in version 5.2.2.0, the very first time restore cache was working and once I got this error(not sure how) it stopped working on my machine, however the same project worked on a different computer until the error was thrown. I switched from version 5.2.2 to 5.2.3 and the same project was restoring from cache but stopped working after few test runs of the application. I have built a new project but still unable to use the RestoreCache method properly.
I am getting the following exception thrown from the CacheStateManager:
A first chance exception of type 'System.Runtime.Serialization.SerializationException' occurred in IdeaBlade.EntityModel.SL A first chance exception of type 'System.IO.IsolatedStorage.IsolatedStorageException' occurred in mscorlib.dll
There was an error deserializing the object of type IdeaBlade.EntityModel.EntityCacheState. The input source is not correctly formatted. at System.Runtime.Serialization.XmlObjectSerializer.ReadObjectHandleExceptions(XmlReaderDelegator reader, Boolean verifyObjectName) at System.Runtime.Serialization.XmlObjectSerializer.ReadObject(XmlDictionaryReader reader) at IdeaBlade.EntityModel.EntityCacheState.Load(Stream stream, Boolean closeOnExit) at IdeaBlade.EntityModel.CacheStateManager.RestoreCacheState(Stream stream, RestoreStrategy strategy, Boolean closeOnExit)
|
 |
kimj
IdeaBlade
Joined: 09-May-2007
Posts: 1391
|
Post Options
Quote Reply
Posted: 06-Nov-2009 at 10:22am |
mtx_252, can you provide a larger code sample showing how you're converting from an IsolatedStorageFileStream to a MemoryStream, and also how you're doing the SaveCacheState? If you can't post it here, please send to IdeaBladeSupportTrack@. Also, because it works for a few test runs, is there any possibility you're hitting the storage limits for that store? Do you delete the file after the cache is restored?
|
 |