Merge remote-tracking branch 'origin/v11/dev' into v12/dev
# Conflicts: # tests/Umbraco.Tests.Integration/NewBackoffice/OpenAPIContractTest.cs # tests/Umbraco.Tests.Integration/Umbraco.Core/Services/ContentServiceTests.cs
This commit is contained in:
@@ -14,6 +14,7 @@ public class NuCacheSettings
|
||||
internal const string StaticNuCacheSerializerType = "MessagePack";
|
||||
internal const int StaticSqlPageSize = 1000;
|
||||
internal const int StaticKitBatchSize = 1;
|
||||
internal const bool StaticUsePagedSqlQuery = true;
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets a value defining the BTree block size.
|
||||
@@ -39,4 +40,7 @@ public class NuCacheSettings
|
||||
public int KitBatchSize { get; set; } = StaticKitBatchSize;
|
||||
|
||||
public bool UnPublishedContentCompression { get; set; } = false;
|
||||
|
||||
[DefaultValue(StaticUsePagedSqlQuery)]
|
||||
public bool UsePagedSqlQuery { get; set; } = true;
|
||||
}
|
||||
|
||||
@@ -16,11 +16,10 @@ public class DefaultPropertyValueConverterAttribute : Attribute
|
||||
/// a DefaultPropertyValueConverter can be more specific than another one.
|
||||
/// </summary>
|
||||
/// <remarks>
|
||||
/// An example where this is useful is that both the RelatedLiksEditorValueConverter and the JsonValueConverter
|
||||
/// An example where this is useful is that both the MultiUrlPickerValueConverter and the JsonValueConverter
|
||||
/// will be returned as value converters for the Related Links Property editor, however the JsonValueConverter
|
||||
/// is a very generic converter and the RelatedLiksEditorValueConverter is more specific than it, so the
|
||||
/// RelatedLiksEditorValueConverter
|
||||
/// can specify that it 'shadows' the JsonValueConverter.
|
||||
/// is a very generic converter and the MultiUrlPickerValueConverter is more specific than it, so the
|
||||
/// MultiUrlPickerValueConverter can specify that it 'shadows' the JsonValueConverter.
|
||||
/// </remarks>
|
||||
public Type[] DefaultConvertersToShadow { get; }
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user