<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="http://syndication.webwiz.co.uk/rss_namespace/">
 <channel>
  <title>DevForce Community Forum : Custom Entity Server</title>
  <link>http://www.ideablade.com/forum/</link>
  <description>This is an XML content feed of; DevForce Community Forum : DevForce 2010 : Custom Entity Server</description>
  <pubDate>Mon, 13 Apr 2026 15:56:03 -700</pubDate>
  <lastBuildDate>Tue, 13 Jul 2010 20:38:58 -700</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 9.69</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>www.ideablade.com/forum/RSS_post_feed.asp?TID=1958</WebWizForums:feedURL>
  <image>
   <title>DevForce Community Forum</title>
   <url>http://www.ideablade.com/forum/forum_images/IdeaBlade_logo_tm.png</url>
   <link>http://www.ideablade.com/forum/</link>
  </image>
  <item>
   <title>Custom Entity Server : Yes, the link above was in response...</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=1958&amp;PID=7623#7623</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=477" rel="nofollow">ting</a><br /><strong>Subject:</strong> 1958<br /><strong>Posted:</strong> 13-Jul-2010 at 8:38pm<br /><br />Yes, the link above was in response to your statement about storing test data.<DIV>&nbsp;</DIV><DIV>DevForce works the best when the primary datastore is a relational database.&nbsp; We provide POCO integration to allow people to bring in other adjunct data and have it managed in the same way as a DevForce Entity, but if that is your primary use case, quite a bit of the DevForce value is lost.&nbsp; Do I understand correctly that you want to have the same "schema" hosted by&nbsp;a database sometimes, and by an XML file other times, and you want to be able to toggle between the two?</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Tue, 13 Jul 2010 20:38:58 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=1958&amp;PID=7623#7623</guid>
  </item> 
  <item>
   <title>Custom Entity Server : If I went with a POCO approach,...</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=1958&amp;PID=7608#7608</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=759" rel="nofollow">raustring</a><br /><strong>Subject:</strong> 1958<br /><strong>Posted:</strong> 13-Jul-2010 at 8:40am<br /><br />If I went with a POCO approach, how do I turn off the database access on the server? I would like to generate the 'entity manager' using a database, since I still want the option of running from a database as well and I want the same model objects whether or not I'm running from a database or XML. I can see from your examples and documentation of how the database update logic can be intercepted for saving, but I don't see any method to 'turn off' the database read access on the server or where the 'entity manager' on the server can be initially loaded with the data from the XML files. <br /><br />The link that you referred me to above seems to imply running in a disconnected fashion and saving and loading the 'entity manager' on the client with saved data. I still need communication between the client and the server, but would like to have the option of using XML to store my data on the server. <br /><br />Sorry for the basic questions, but I'm new to your product and still trying to understand if I can use it for my purposes.]]>
   </description>
   <pubDate>Tue, 13 Jul 2010 08:40:10 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=1958&amp;PID=7608#7608</guid>
  </item> 
  <item>
   <title>Custom Entity Server : I&amp;#039;m don&amp;#039;t think creating...</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=1958&amp;PID=7600#7600</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=477" rel="nofollow">ting</a><br /><strong>Subject:</strong> 1958<br /><strong>Posted:</strong> 12-Jul-2010 at 7:38pm<br /><br /><DIV>I'm don't think creating your own Entity Server is going to be the right solution.&nbsp; Our POCO functionality is designed to allow you to work with data from non-database storage.&nbsp; For test&nbsp;entities, you can save EntityManager's cache state to a file, so that you can do testing without a database.&nbsp; This post has some more information about that:<BR><a href="http://www.ideablade.com/forum/forum_posts.asp?TID=1688" target="_blank">http://www.ideablade.com/forum/forum_posts.asp?TID=1688</A><a href="http://www.ideablade.com/forum/forum_posts.asp?TID=1688&amp;KW=test" target="_blank"></A></DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Mon, 12 Jul 2010 19:38:38 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=1958&amp;PID=7600#7600</guid>
  </item> 
  <item>
   <title>Custom Entity Server : Is it possible to write a custom...</title>
   <link>http://www.ideablade.com/forum/forum_posts.asp?TID=1958&amp;PID=7589#7589</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://www.ideablade.com/forum/member_profile.asp?PF=759" rel="nofollow">raustring</a><br /><strong>Subject:</strong> 1958<br /><strong>Posted:</strong> 11-Jul-2010 at 6:24am<br /><br />Is it possible to write a custom 'entity server'? If so, do you have an example that shows how to do this? I'm not sure if creating a custom entity server is the right approach but I essentially would like to create my 'entity manager' using a database (i.e. as is done today in your examples), but have the option of populating those entities from something other than a database (e.g. XML). This would allow the end user of my application to store there data in either a database or XML files. Using XML to store data would be used in scenarios where there is a relatively small amount of data or simply to store test data.]]>
   </description>
   <pubDate>Sun, 11 Jul 2010 06:24:20 -700</pubDate>
   <guid isPermaLink="true">http://www.ideablade.com/forum/forum_posts.asp?TID=1958&amp;PID=7589#7589</guid>
  </item> 
 </channel>
</rss>