<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Handling Concurrency with the Entity Framework in an ASP.NET MVC Application (7 of 10)</title><link>http://www.asp.net</link><pubDate>Wed, 24 Aug 2011 09:24:08 GMT</pubDate><generator>umbraco</generator><description>Comments for Handling Concurrency with the Entity Framework in an ASP.NET MVC Application (7 of 10)</description><language>en</language><atom:link href="http://www.asp.net/rss/comments/33314" rel="self" type="application/rss+xml" /><item><title>Comment Posted by mickysmig</title><link>http://www.asp.net/mvc/tutorials/getting-started-with-ef-using-mvc/handling-concurrency-with-the-entity-framework-in-an-asp-net-mvc-application</link><pubDate>Sun, 17 Apr 2011 12:25:31 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-0000000012847</guid><description><![CDATA[ <p>Hi,</p><p></p><p>I&#39;ve tried the tutorial above and I keep getting the error:</p><p></p><p>message &#39;ContosoUniversity.DAL.Department&#39; could not be found. Make sure that the required schemas are loaded and that the namespaces are imported correctly. Near type name, line 1, column 128.</p><p></p><p>I tried downloading the finished application and ran that and got the same error.  Any help would be greatly appreciated.</p><p>  </p>]]></description><enclosure length="0" type="image/png" url="http://i2.asp.net/avatar/mickysmig.jpg?forceidenticon=false&amp;dt=635072533200000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by tdykstra</title><link>http://www.asp.net/mvc/tutorials/getting-started-with-ef-using-mvc/handling-concurrency-with-the-entity-framework-in-an-asp-net-mvc-application</link><pubDate>Mon, 18 Apr 2011 10:15:48 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-0000000012853</guid><description><![CDATA[ <p>Can you find the line of code that is referencing Department in the DAL namespace? That should reference the Models namespace instead. I don&#39;t understand how you could be getting it from the downloaded project. I downloaded it again and compiled it and do not get this error.</p>]]></description><enclosure length="0" type="image/png" url="http://i2.asp.net/avatar/tdykstra.jpg?forceidenticon=false&amp;dt=635072533200000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by JeffCrenshaw</title><link>http://www.asp.net/mvc/tutorials/getting-started-with-ef-using-mvc/handling-concurrency-with-the-entity-framework-in-an-asp-net-mvc-application</link><pubDate>Tue, 19 Apr 2011 22:11:00 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-0000000012873</guid><description><![CDATA[ <p>I am getting the same error, in both my tutorial project completed up to this step, and in the downloaded final project.  I can&#39;t find any line of code that references DAL.Department.</p>]]></description><enclosure length="0" type="image/png" url="http://i1.asp.net/avatar/JeffCrenshaw.jpg?forceidenticon=false&amp;dt=635072533200000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by praetorxyn</title><link>http://www.asp.net/mvc/tutorials/getting-started-with-ef-using-mvc/handling-concurrency-with-the-entity-framework-in-an-asp-net-mvc-application</link><pubDate>Wed, 20 Apr 2011 01:13:11 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-0000000012874</guid><description><![CDATA[ <p>I&#39;m having the same problem.</p><p></p><p>The line of code that throws this exception is</p><p></p><p>var databaseValues = (Department)entry.GetDatabaseValues().ToObject();</p><p></p><p>The particular statement that&#39;s throwing the exception is</p><p>entry.GetDatabaseValues()</p><p>I know because I broke the above statement down into the method call followed by the ToObject method followed by the cast to Department.</p><p></p><p>I have been trying to figure this out for 3 hours.  I put a breakpoint there and looked around for a while, but I didn&#39;t get anything useful.  I tried to view the definition for the GetDatabaseValues method but it takes me to the DLL code where the method is just declared followed by a semicolon.</p>]]></description><enclosure length="0" type="image/png" url="http://i1.asp.net/avatar/praetorxyn.jpg?forceidenticon=false&amp;dt=635072533200000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by praetorxyn</title><link>http://www.asp.net/mvc/tutorials/getting-started-with-ef-using-mvc/handling-concurrency-with-the-entity-framework-in-an-asp-net-mvc-application</link><pubDate>Wed, 20 Apr 2011 01:35:06 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-0000000012875</guid><description><![CDATA[ <p>Quick addendum: Before I broke the statement down, I tried changing the line to</p><p>var databaseValues = (ContosoUniversity.Models.Department)entry.GetDatabaseValues().ToObject();</p><p></p><p>This doesn&#39;t work.  The fact that when you break the code down like this:</p><p></p><p>1 var e = entry.GetDatabaseValues();</p><p>2 var o = e.ToObject();</p><p>3 var d = (Department)o;</p><p>4 var databaseValues = d;</p><p></p><p>Line 1 throws the exception.  That&#39;s proof positive that the screwy namespace reference is coming from either entry or the GetDatabaseValues() statement.</p><p>If you swap the order of the statements around to this:</p><p></p><p>1 var clientValues = (Department)entry.Entity;</p><p>2 var databaseValues = (Department)entry.GetDatabaseValues().ToObject();</p><p></p><p>Line 1 throws the exception.  That says to me the problem is probably with the GetDatabaseValues() method.</p><p></p><p>I suppose it should be possible to use LINQ to grab the record from the database and see if that works.  I&#39;ll try this and make another post if I have success.</p>]]></description><enclosure length="0" type="image/png" url="http://i1.asp.net/avatar/praetorxyn.jpg?forceidenticon=false&amp;dt=635072533200000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by praetorxyn</title><link>http://www.asp.net/mvc/tutorials/getting-started-with-ef-using-mvc/handling-concurrency-with-the-entity-framework-in-an-asp-net-mvc-application</link><pubDate>Wed, 20 Apr 2011 01:40:10 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-0000000012876</guid><description><![CDATA[ <p>Changing the above line to</p><p>var databaseValues = db.Departments.Where(i =&gt; i.DepartmentID == department.DepartmentID).Single();</p><p></p><p>Stops the exception and you get the concurrency error, but if you click Save again to go through with the changes, it just gives you the error again, so this still isn&#39;t right.</p>]]></description><enclosure length="0" type="image/png" url="http://i1.asp.net/avatar/praetorxyn.jpg?forceidenticon=false&amp;dt=635072533200000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by tdykstra</title><link>http://www.asp.net/mvc/tutorials/getting-started-with-ef-using-mvc/handling-concurrency-with-the-entity-framework-in-an-asp-net-mvc-application</link><pubDate>Wed, 20 Apr 2011 20:02:41 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-0000000012897</guid><description><![CDATA[ <p>You can eliminate the error by changing the SchoolContext class to be in the ContosoUniversity.Models namespace.  This should not be necessary and I am still following up with the Entity Framework team, but that will get the code to work.  You will have to add using statements for the Models namespace to Global.asax.cs and HomeController.cs.</p>]]></description><enclosure length="0" type="image/png" url="http://i2.asp.net/avatar/tdykstra.jpg?forceidenticon=false&amp;dt=635072533200000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by tdykstra</title><link>http://www.asp.net/mvc/tutorials/getting-started-with-ef-using-mvc/handling-concurrency-with-the-entity-framework-in-an-asp-net-mvc-application</link><pubDate>Thu, 21 Apr 2011 10:36:11 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-0000000012917</guid><description><![CDATA[ <p>I have changed the tutorial to put the context class in the Models namespace. The current release of Code First assumes that entity classes are in the same namespace as the context class.</p>]]></description><enclosure length="0" type="image/png" url="http://i2.asp.net/avatar/tdykstra.jpg?forceidenticon=false&amp;dt=635072533200000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by JeffCrenshaw</title><link>http://www.asp.net/mvc/tutorials/getting-started-with-ef-using-mvc/handling-concurrency-with-the-entity-framework-in-an-asp-net-mvc-application</link><pubDate>Fri, 22 Apr 2011 00:06:54 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-0000000012929</guid><description><![CDATA[ <p>@tdykstra, thanks for the follow-up with this. Do you know why it worked for you when you first downloaded the project?</p>]]></description><enclosure length="0" type="image/png" url="http://i1.asp.net/avatar/JeffCrenshaw.jpg?forceidenticon=false&amp;dt=635072533200000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by tdykstra</title><link>http://www.asp.net/mvc/tutorials/getting-started-with-ef-using-mvc/handling-concurrency-with-the-entity-framework-in-an-asp-net-mvc-application</link><pubDate>Fri, 22 Apr 2011 16:24:28 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-0000000012936</guid><description><![CDATA[ <p>I&#39;m still working on trying to figure that one out.  The bug isn&#39;t in the Entity Framework Code First .dll after all, because the error doesn&#39;t happen on a machine that has not been updated using the Web Platform Installer SP1 bundle that includes the MVC 3 Tools Update and several other things connected with SP1.  So my statement about the current release requiring the same namespace is incorrect.  Moving the context into the Models namespace eliminates this error but the error itself should not be happening anyway and appears to be a bug somewhere in the way VS or MVC works with EF.</p>]]></description><enclosure length="0" type="image/png" url="http://i2.asp.net/avatar/tdykstra.jpg?forceidenticon=false&amp;dt=635072533200000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by tdykstra</title><link>http://www.asp.net/mvc/tutorials/getting-started-with-ef-using-mvc/handling-concurrency-with-the-entity-framework-in-an-asp-net-mvc-application</link><pubDate>Tue, 10 May 2011 18:33:23 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-0000000013127</guid><description><![CDATA[ <p>The Edit method in this tutorial lets the MVC model binder create the entity instance, which is then set to Modified status. If you prefer to re-read the entity from the database and then use UpdateModel, see this StackOverflow thread for ways to implement that approach:  </p><p><a rel="nofollow" href="http://stackoverflow.com/questions/5946883/asp-net-mvc-entity-framework-with-concurrecncy-check" target="_blank">stackoverflow.com/</a></p><p></p>]]></description><enclosure length="0" type="image/png" url="http://i2.asp.net/avatar/tdykstra.jpg?forceidenticon=false&amp;dt=635072533200000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by assafg2</title><link>http://www.asp.net/mvc/tutorials/getting-started-with-ef-using-mvc/handling-concurrency-with-the-entity-framework-in-an-asp-net-mvc-application</link><pubDate>Sun, 15 May 2011 10:47:26 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-0000000013172</guid><description><![CDATA[ <p>Hello,</p><p>I didn’t understand how exactly you have suggested to fix this error (</p><p>var databaseValues = (Department)entry.GetDatabaseValues().ToObject();</p><p>)</p><p></p>]]></description><enclosure length="0" type="image/png" url="http://i2.asp.net/avatar/assafg2.jpg?forceidenticon=false&amp;dt=635072533200000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by tdykstra</title><link>http://www.asp.net/mvc/tutorials/getting-started-with-ef-using-mvc/handling-concurrency-with-the-entity-framework-in-an-asp-net-mvc-application</link><pubDate>Sun, 22 May 2011 11:12:26 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-0000000013243</guid><description><![CDATA[ <p>The fix is to keep the entity classes and the DbContext class in the same namespace.  This bug has not been a high priority for the EF team to investigate and so the cause has not been determined yet, but even when it is determined, it&#39;s not likely to be fixed until the next release of EF; so as a general rule until then it is best to avoid putting DbContext in a different namespace than the entity classes.</p>]]></description><enclosure length="0" type="image/png" url="http://i2.asp.net/avatar/tdykstra.jpg?forceidenticon=false&amp;dt=635072533200000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by peacockp</title><link>http://www.asp.net/mvc/tutorials/getting-started-with-ef-using-mvc/handling-concurrency-with-the-entity-framework-in-an-asp-net-mvc-application</link><pubDate>Mon, 23 May 2011 10:56:16 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-0000000013250</guid><description><![CDATA[ <p>I&#39;m not seeing this problem and I&#39;ve got the SchoolContext.cs in the DAL folder as the turorial instructs.</p>]]></description><enclosure length="0" type="image/png" url="http://i3.asp.net/avatar/peacockp.jpg?forceidenticon=false&amp;dt=635072533200000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by tdykstra</title><link>http://www.asp.net/mvc/tutorials/getting-started-with-ef-using-mvc/handling-concurrency-with-the-entity-framework-in-an-asp-net-mvc-application</link><pubDate>Wed, 25 May 2011 11:47:40 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-0000000013271</guid><description><![CDATA[ <p>@peacockp - The original version of the tutorial not only had SchoolContext.cs in the DAL folder but also had it in the DAL namespace -- that&#39;s what causes a bug on some systems. It&#39;s still in the DAL folder but the code in the file puts it in the Models namespace which is where all the entity classes are as well.</p>]]></description><enclosure length="0" type="image/png" url="http://i2.asp.net/avatar/tdykstra.jpg?forceidenticon=false&amp;dt=635072533200000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by virshu</title><link>http://www.asp.net/mvc/tutorials/getting-started-with-ef-using-mvc/handling-concurrency-with-the-entity-framework-in-an-asp-net-mvc-application</link><pubDate>Mon, 04 Jul 2011 02:00:01 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-0000000013672</guid><description><![CDATA[ <p>I am trying to implement concurrency for Edit. The simple way it is shown in this article (simply setting state to Modified) works fine. However, say, I also need to update courses or something else a little more complicated. So, I load the original department - context.Departments.Include(...), and then do UpdateModel(). I can see that timestamp gets set back to the obsolete, however SaveChanges() doesn&#39;t throw any exception.</p><p></p><p>Any ideas? Thanks</p>]]></description><enclosure length="0" type="image/png" url="http://i3.asp.net/avatar/virshu.jpg?forceidenticon=false&amp;dt=635072533200000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by tdykstra</title><link>http://www.asp.net/mvc/tutorials/getting-started-with-ef-using-mvc/handling-concurrency-with-the-entity-framework-in-an-asp-net-mvc-application</link><pubDate>Mon, 04 Jul 2011 14:46:02 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-0000000013685</guid><description><![CDATA[ <p>@virshu - Please post your code to the ASP.NET forum (the link is above), and I&#39;ll take a look at it and see if I can come up with a solution.</p>]]></description><enclosure length="0" type="image/png" url="http://i2.asp.net/avatar/tdykstra.jpg?forceidenticon=false&amp;dt=635072533200000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by virshu</title><link>http://www.asp.net/mvc/tutorials/getting-started-with-ef-using-mvc/handling-concurrency-with-the-entity-framework-in-an-asp-net-mvc-application</link><pubDate>Mon, 04 Jul 2011 22:57:12 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-0000000013692</guid><description><![CDATA[ <p>actually, <a rel="nofollow" href="http://stackoverflow.com/questions/5946883/asp-net-mvc-entity-framework-with-concurrency-check" target="_blank">stackoverflow.com/</a> is exactly my experience and the explanation what to do and why not to do what I was doing... StackOverflow is the new Google :)</p><p></p><p>@tdykstra - thanks for such a quick response and Happy Holidays!</p>]]></description><enclosure length="0" type="image/png" url="http://i3.asp.net/avatar/virshu.jpg?forceidenticon=false&amp;dt=635072533200000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by mvcvm</title><link>http://www.asp.net/mvc/tutorials/getting-started-with-ef-using-mvc/handling-concurrency-with-the-entity-framework-in-an-asp-net-mvc-application</link><pubDate>Sat, 16 Jul 2011 06:03:55 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-0000000013770</guid><description><![CDATA[ <p>I&#39;m working from the PDF of this fine tutorial. </p><p></p><p>At the end of the last exercise of Chapter 7 (the concurrency lesson), after the 2nd browser has deleted the Department record, the first browser will still be showing the now deleted Department. </p><p></p><p>If you click Edit in the first browser, the application will show the familiar but ugly &quot;Object reference not set to an instance of an object&quot;</p><p>message because obviously Find(id) will fail .</p><p></p><p>Just something to keep in mind.</p><p></p>]]></description><enclosure length="0" type="image/png" url="http://i2.asp.net/avatar/mvcvm.jpg?forceidenticon=false&amp;dt=635072533200000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by tdykstra</title><link>http://www.asp.net/mvc/tutorials/getting-started-with-ef-using-mvc/handling-concurrency-with-the-entity-framework-in-an-asp-net-mvc-application</link><pubDate>Mon, 18 Jul 2011 15:37:50 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-0000000013780</guid><description><![CDATA[ <p>@mvcvm - Good point and thanks for reporting that. I&#39;ll keep that in mind for the next release of the tutorial, and for an example of one way to make the code more robust see the last tutorial in the MVC 3 intro tutorial series:  <a rel="nofollow" href="http://www.asp.net/mvc/tutorials/getting-started-with-mvc3-part9-cs" target="_blank">www.asp.net/</a></p><p></p>]]></description><enclosure length="0" type="image/png" url="http://i2.asp.net/avatar/tdykstra.jpg?forceidenticon=false&amp;dt=635072533200000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by johnjohn123123</title><link>http://www.asp.net/mvc/tutorials/getting-started-with-ef-using-mvc/handling-concurrency-with-the-entity-framework-in-an-asp-net-mvc-application</link><pubDate>Mon, 08 Aug 2011 01:35:00 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-0000000013922</guid><description><![CDATA[ <p>i am working on an MVC 3 project using EF and database first apprach; but when two users ties to edit the same object at the same time; then both of them can save their chnages and the DbUpdateConcurrencyException excpetion did not fire for the second user.</p><p>i did the folloiwng:-</p><p>1. included a timestamp column in my databse</p><p>2. i have included at time stamp at the  model class </p><p>3.and then i set the concurrency = Fixed for the timestamp.</p><p>4. i provide the timestamp as a hidden field inside the view.</p><p>So might might be the problem?</p><p>Thanks</p><p></p>]]></description><enclosure length="0" type="image/png" url="http://i2.asp.net/avatar/johnjohn123123.jpg?forceidenticon=false&amp;dt=635072533200000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by mvcvm</title><link>http://www.asp.net/mvc/tutorials/getting-started-with-ef-using-mvc/handling-concurrency-with-the-entity-framework-in-an-asp-net-mvc-application</link><pubDate>Wed, 10 Aug 2011 10:11:47 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-0000000013943</guid><description><![CDATA[ <p>@johnjohn - just off the top of my head, check that the argument to your HttpPost methods is not an integer IDs; you must pass a model object so that the model binder can access the original timestamp.</p><p>HTH.</p><p></p><p></p><p></p>]]></description><enclosure length="0" type="image/png" url="http://i2.asp.net/avatar/mvcvm.jpg?forceidenticon=false&amp;dt=635072533200000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by tdykstra</title><link>http://www.asp.net/mvc/tutorials/getting-started-with-ef-using-mvc/handling-concurrency-with-the-entity-framework-in-an-asp-net-mvc-application</link><pubDate>Tue, 23 Aug 2011 15:40:21 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-0000000014028</guid><description><![CDATA[ <p>@johnjohn123123 - If mvcvm&#39;s suggestion doesn&#39;t help, try posting your question to the ASP.NET EF forum (link is at the top of this page).</p>]]></description><enclosure length="0" type="image/png" url="http://i2.asp.net/avatar/tdykstra.jpg?forceidenticon=false&amp;dt=635072533200000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by basbak</title><link>http://www.asp.net/mvc/tutorials/getting-started-with-ef-using-mvc/handling-concurrency-with-the-entity-framework-in-an-asp-net-mvc-application</link><pubDate>Wed, 24 Aug 2011 09:20:20 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-0000000014035</guid><description><![CDATA[ <p>Well guys, I experienced this error too</p><p>message &#39;ContosoUniversity.DAL.Department&#39; could not be found. Make sure that the required schemas are loaded and that the namespaces are imported correctly. Near type name, line 1, column 128.</p><p></p><p>Solution :</p><p></p><p>-I moved the SchoolContext.cs and the &quot;initializer&quot; (&lt;-- no need, but it is ok to move this one) to the DAL folder inside the Models folder.</p><p>- Excluded the DAL folder in the main solution</p><p>-I rewrote the using statments after building the project which gave massive errors and warnings</p><p>-Treated them all back into health</p><p></p><p>AND</p><p></p><p>The concurrency on both Edit and Delete just simply worked.</p><p></p><p>STARNGE huh!!!</p>]]></description><enclosure length="0" type="image/png" url="http://i2.asp.net/avatar/basbak.jpg?forceidenticon=false&amp;dt=635072533200000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item><item><title>Comment Posted by basbak</title><link>http://www.asp.net/mvc/tutorials/getting-started-with-ef-using-mvc/handling-concurrency-with-the-entity-framework-in-an-asp-net-mvc-application</link><pubDate>Wed, 24 Aug 2011 09:24:08 GMT</pubDate><guid isPermaLink="false">00000000-0000-0000-0000000014037</guid><description><![CDATA[ <p>But remember that you will not need to change the namesapces in both files ******.Models and not *******.Models.DAL nor *****.DAL</p>]]></description><enclosure length="0" type="image/png" url="http://i2.asp.net/avatar/basbak.jpg?forceidenticon=false&amp;dt=635072533200000000&amp;enableAvatar=False&amp;cdn_id=2013-05-10-001" /></item></channel></rss>