File tree Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Expand file tree Collapse file tree 3 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -175,7 +175,7 @@ public static string Version
175
175
/// <summary> Should named queries be checked during startup (the default is enabled). </summary>
176
176
/// <remarks>Mainly intended for test environments.</remarks>
177
177
public const string QueryStartupChecking = "query.startup_check" ;
178
- /// <summary> Should never cached entity/collecion query cache throws exception(the default is enabled ). /// </summary>
178
+ /// <summary> Should using a never cached entity/collection in a cacheable query throw an exception (the default is true ). /// </summary>
179
179
public const string QueryThrowNeverCached = "query.throw_never_cached" ;
180
180
181
181
/// <summary> Enable statistics collection</summary>
Original file line number Diff line number Diff line change @@ -139,6 +139,9 @@ public Settings()
139
139
/// </summary>
140
140
public bool ThrowOnSchemaUpdate { get ; internal set ; }
141
141
142
+ /// <summary>
143
+ /// Should using a never cached entity/collection in a cacheable query throw an exception.
144
+ /// </summary>
142
145
public bool QueryThrowNeverCached { get ; internal set ; }
143
146
144
147
#region NH specific
Original file line number Diff line number Diff line change 4
4
5
5
namespace NHibernate . Persister
6
6
{
7
- // TODO 6.0: Make this public and make IEntityPersiser and ICollectionPersister derive it.
7
+ // TODO 6.0: Make this public and make IEntityPersister and ICollectionPersister derive it.
8
8
internal interface IPersister
9
9
{
10
10
/// <summary>
You can’t perform that action at this time.
0 commit comments