using Encompass.Exceptions; using System; using System.Collections.Generic; using System.Linq; namespace Encompass { [AttributeUsage(AttributeTargets.Class)] public class QueryWithout : Attribute { public readonly HashSet QueryWithoutTypes = new HashSet(); public QueryWithout(params Type[] queryWithoutTypes) { foreach (var type in queryWithoutTypes) { QueryWithoutTypes.Add(type); } } } }