Second level cache can be enable using QueryOptions. But how could be enabled in Castle ActiveRecord Linq? ActiveRecordLinq class does not have such a property.
How to enable second level cache in ActiveRecord Linq?
737 Views Asked by Afshar At
1
There are 1 best solutions below
Related Questions in NHIBERNATE
- Deleting Orphans with Fluent NHibernate
- NHibernate ICompositeUserType split string columns
- NHibernate Second Level Cache for Collections is Slow
- NHibernate - using CreateMultiQuery
- NHibernate.Mapping Exception. No persister for Namespace.className
- Trouble combining Linq Expressions into a Func
- Join Tables using Fluent Nhibernate
- NHibernate - NonUniqueObjectException
- Restrictions.Disjunction().Add(Subqueries.WhereValue(1)
- Nhibernate: Exception occurred getter of id
- Mapping to Date part of Sql DateTime
- Select from Table Valued Function nhibernate
- NHibernate Filtered Child Collection Lazy Loaded even with eager fetch specified
- Parallel Transactions in distinct Session in NHibernate / SQL Server
- updating M:N data using session nhibernate .Net MVC
Related Questions in CACHING
- ClassCastException: datastructures.instances.JClass cannot be cast to java.util.ArrayList
- Robospice. How to save data and how to get data from DB?
- Make @lru_cache ignore some of the function arguments
- Xib taking long time (>1s) to load. UIFont cache seems to blame
- Android picasso cache images
- Rails 4 low-level caching not working
- How to cache Exchange web service API autodiscoverurl?
- The process cannot access the file because it is being used by another process asp.net
- Alamofire loading from cache even when cache policy set to ReloadIgnoringLocalAndRemoteCacheData
- Java Heap vs Cache
- In what use cases is locking on ASP.NET cache required/desirable
- Chrome cache overriding angularjs disabling of cache
- AFNetworking 2.0 Cache Issue
- Symfony ESI Cache / Surrogate Listener Issue
- Using getOrElseUpdate of TrieMap in Scala
Related Questions in CASTLE-ACTIVERECORD
- Castle ActiveRecord, C# - Improving performance of ActiveRecordMediator.FindAll method through reducing executed queries
- Load connection strings programmatically
- Generated sql-script in Castle ActiveRecord is missing terminating semicolon
- Get current database server date using Castle ActiveRecord
- ActiveRecordBase.FindAll() does not allow first level cache?
- Is first level cache enabled in my Castle ActiveRecord based application?
- ActiveRecord relational order by
- Joining across databases in Active Record
- How to enable second level cache in ActiveRecord Linq?
- Where to get the source code of castle project
- What are all these DLLs in the Castle ActiveRecord 3.0 beta?
- Connecting to multiple databases in Active Record
- How to update schema in SQL Server database using Active Records and nhibernate?
- Castle ActiveRecord change database in use
- Disable Log4Net logging for Active Record
Related Questions in LINQ-TO-NHIBERNATE
- How would I alter the SQL that Linq-to-Nhibernate generates for specific columns?
- How to get the latest/last record with a group by clause with NHibernate Linq provider
- Expanding collections with EntitySetController in MVC Web Api
- Linq conditional query on same table/object
- NHibernate CreateAlias - Joins on arbitrary columns
- How to enable second level cache in ActiveRecord Linq?
- Statistical query in SQL - is this possible with NHibernate LINQ?
- Translate this Sql query into NHibernate Linq or Criteria?
- Getting count with NHibernate + Linq + Future
- Mapping and Querying UserTypes - Nullable in DB to Not-Nullable in Domain
- LINQ to NHibernate expressions on List<>
- Group by using linq with NHibernate 3.0
- Nhibernate 3.0 Complex queries
- Reference problem?
- How to convert the following query over to linq?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I think QueryOptions applied only for the old Linq provider (pre NH 3). With NH 3 you have to call
Cacheable()on theIQueryable<T>. I'm pretty sure you can apply the same method to an IQueryable returned by ActiveRecord.