4.1.14.0327 SD.LLBLGen.Pro.DQE.SqlServer.dll
4.1.14.0327 SD.LLBLGen.Pro.ODataSupportClasses
4.1.14.0327 SD.LLBLGen.Pro.ORMSupportClasses.dll
4.1.14.0327 SD.LLBLGen.Pro.ORMSupportClasses.Web.dll
DotNet 4.0 vs2013 project
Adapter template
SQL Server 2008 R2
I have started to use the CacheResultset command on Linq collections. This works well. One of the paths is a collection of user updated answers and comments to the top entity collection.
Is there a way to exclude this entity collection from the cache?
Alternatively, can I simply leave the answers prefectch path out of the object and get it separately. The reattach it to the collection so it gets filtered appropriately?
Here is a short version of the code. The RegulationBase collection changes once a month. The answers change dynamically:
var q = metaData.RegulationBase.WithPath(a=>a.Prefetch<AnswerRegulationEntity>(b => b.AnswerRegulation));
Note that the full Linq is very complex and takes 1.5 to 2 seconds to fetch on a good day. This is why I want to cache the parts that don't change much.