* Include automatic relation type aliases from factory and fix SQL parameter overflow (#15141) * Include automatic relation type aliases from factory * Remove unnessecary distinct and fix SQL parameter overflow issue * Fixed assertions and test distinct aliases * Simplified collection assertions * Improve logging of invalid reference relations (#15160) * Include automatic relation type aliases from factory * Remove unnessecary distinct and fix SQL parameter overflow issue * Fixed assertions and test distinct aliases * Simplified collection assertions * Improve logging of invalid reference relations * Always get all automatic relation type aliases * Do not set relation type alias for unknown entity types * Get references from recursive (nested/block) properties
17 lines
442 B
C#
17 lines
442 B
C#
namespace Umbraco.Cms.Core.Composing;
|
|
|
|
/// <summary>
|
|
/// Represents a builder collection, ie an immutable enumeration of items.
|
|
/// </summary>
|
|
/// <typeparam name="TItem">The type of the items.</typeparam>
|
|
public interface IBuilderCollection<out TItem> : IEnumerable<TItem>
|
|
{
|
|
/// <summary>
|
|
/// Gets the number of items in the collection.
|
|
/// </summary>
|
|
/// <value>
|
|
/// The count.
|
|
/// </value>
|
|
int Count { get; }
|
|
}
|