using zero.Core.Collections; namespace zero.Core.Extensions { public static class CollectionExtensions { /// /// Shared scope for the current collection instance /// public static CollectionScope SharedScope(this T collection) where T : ICollectionBase { return new CollectionScope(collection, "shared"); } } }