* src/DbLinq/Data/Linq/Sugar/Implementation/QueryCache.cs: Temporarily
authorJonathan Pryor <jpryor@novell.com>
Thu, 14 May 2009 16:36:54 +0000 (16:36 -0000)
committerJonathan Pryor <jpryor@novell.com>
Thu, 14 May 2009 16:36:54 +0000 (16:36 -0000)
  disable QueryCache.GetFromSelectCache(), as the cache keeps breaking
  for currently undiagnosed reasons.  With this disabled, NerdDinner
  seems to work properly.

svn path=/trunk/mcs/; revision=134143

mcs/class/System.Data.Linq/ChangeLog
mcs/class/System.Data.Linq/src/DbLinq/Data/Linq/Sugar/Implementation/QueryCache.cs

index a343e105f8f6939cbdc8b6e3e66b0f156b4c5d8a..0e91dff2adc29698729266f1abe4c00de4676674 100755 (executable)
@@ -1,3 +1,10 @@
+2009-05-14  Jonathan Pryor  <jpryor@novell.com>
+
+       * src/DbLinq/Data/Linq/Sugar/Implementation/QueryCache.cs: Temporarily
+         disable QueryCache.GetFromSelectCache(), as the cache keeps breaking
+         for currently undiagnosed reasons.  With this disabled, NerdDinner
+         seems to work properly.
+
 2009-05-14  Jonathan Pryor  <jpryor@novell.com>
 
        * Makefile: Add 'update-dblinq' target, which copies files from my
index 2f5b68cbff3937b5ae5f8e6c7a56049fbcad094a..33028510c430d89d71fba078721ca13db37f6312 100644 (file)
@@ -71,6 +71,7 @@ namespace DbLinq.Data.Linq.Sugar.Implementation
 \r
         public SelectQuery GetFromSelectCache(ExpressionChain expressions)\r
         {\r
+            return null;\r
             SelectQuery selectQuery;\r
             selectQueries.TryGetValue(expressions, out selectQuery);\r
             return selectQuery;\r