Example #1
0
        public FilteredQueryOverNaturalIdFilterBuilder(FilteredQueryOver <TEntity> owner, IEnumerable <string> naturalIdProperties)
        {
            owner.ThrowIfNull("owner");
            naturalIdProperties.ThrowIfNull("naturalIdProperties");

            this.owner = owner;
            this.naturalIdProperties = naturalIdProperties;
        }
Example #2
0
        public FilteredQueryOverFilterBuilder(FilteredQueryOver <TEntity> owner, string property)
        {
            owner.ThrowIfNull("owner");
            property.ThrowIfNull("property");

            this.owner    = owner;
            this.property = property;
        }