Ejemplo n.º 1
0
 public ICompositePredicate AddContainedIn(IAssociationType association, IEnumerable <IObject> containingEnumerable)
 {
     this.CheckUnarity();
     this.extent.FlushCache();
     this.filter = new AssociationContainedInEnumerable(this.extent, association, containingEnumerable);
     return(this);
 }
Ejemplo n.º 2
0
 public ICompositePredicate AddContainedIn(IAssociationType association, Extent containingExtent)
 {
     this.CheckUnarity();
     this.extent.FlushCache();
     this.filter = new AllorsPredicateAssociationInExtentSql(this.extent, association, containingExtent);
     return(this);
 }
Ejemplo n.º 3
0
 public ICompositePredicate AddContains(IAssociationType association, IObject containedObject)
 {
     this.CheckUnarity();
     this.extent.FlushCache();
     this.filter = new AllorsPredicateAssociationContainsSql(this.extent, association, containedObject);
     return(this);
 }
Ejemplo n.º 4
0
 public ICompositePredicate AddContains(IRoleType role, IObject containedObject)
 {
     this.CheckUnarity();
     this.extent.FlushCache();
     this.filter = new AllorsPredicateRoleContainsSql(this.extent, role, containedObject);
     return(this);
 }
Ejemplo n.º 5
0
 public ICompositePredicate AddEquals(IAssociationType association, IObject allorsObject)
 {
     this.CheckUnarity();
     this.extent.FlushCache();
     this.filter = new AllorsPredicateAssociationEqualsSql(this.extent, association, allorsObject);
     return(this);
 }
Ejemplo n.º 6
0
        public ICompositePredicate AddEquals(IRoleType role, object obj)
        {
            this.CheckUnarity();
            this.extent.FlushCache();
            var equalsRole        = obj as IRoleType;
            var equalsAssociation = obj as IAssociationType;

            if (equalsRole != null)
            {
                this.filter = new AllorsPredicateRoleUnitEqualsRoleSql(this.extent, role, equalsRole);
            }
            else if (equalsAssociation != null)
            {
                throw new NotImplementedException();
            }
            else
            {
                if (role.ObjectType is IUnit)
                {
                    this.filter = new AllorsPredicateRoleUnitEqualsValueSql(this.extent, role, obj);
                }
                else
                {
                    this.filter = new AllorsPredicateRoleCompositeEqualsSql(this.extent, role, obj);
                }
            }

            return(this);
        }
Ejemplo n.º 7
0
 public ICompositePredicate AddExists(IAssociationType association)
 {
     this.CheckUnarity();
     this.extent.FlushCache();
     this.filter = new AllorsPredicateAssociationExistsSql(this.extent, association);
     return(this);
 }
Ejemplo n.º 8
0
 public ICompositePredicate AddExists(IRoleType role)
 {
     this.CheckUnarity();
     this.extent.FlushCache();
     this.filter = new AllorsPredicateRoleExistsSql(this.extent, role);
     return(this);
 }
Ejemplo n.º 9
0
 public ICompositePredicate AddInstanceof(IAssociationType association, IComposite type)
 {
     this.CheckUnarity();
     this.extent.FlushCache();
     this.filter = new AllorsPredicateAssociationInstanceofSql(this.extent, association, type, new List <IClass>(type.Classes).ToArray());
     return(this);
 }
Ejemplo n.º 10
0
 public ICompositePredicate AddInstanceof(IRoleType role, IComposite type)
 {
     this.CheckUnarity();
     this.extent.FlushCache();
     this.filter = new AllorsPredicateRoleInstanceofSql(this.extent, role, type, new List <IClass>(type.Classes).ToArray());
     return(this);
 }
Ejemplo n.º 11
0
 public ICompositePredicate AddLike(IRoleType role, string value)
 {
     this.CheckUnarity();
     this.extent.FlushCache();
     this.filter = new AllorsPredicateRoleLikeSql(this.extent, role, value);
     return(this);
 }
Ejemplo n.º 12
0
 public ICompositePredicate AddAnd()
 {
     this.CheckUnarity();
     this.extent.FlushCache();
     this.filter = new AllorsPredicateAndSql(this.extent);
     return((ICompositePredicate)this.filter);
 }
Ejemplo n.º 13
0
 public ICompositePredicate AddContainedIn(IRoleType role, IEnumerable <IObject> containingEnumerable)
 {
     this.CheckUnarity();
     this.extent.FlushCache();
     this.filter = new RoleContainedInEnumerable(this.extent, role, containingEnumerable);
     return(this);
 }
Ejemplo n.º 14
0
 public ICompositePredicate AddContainedIn(IRoleType role, Extent containingExtent)
 {
     this.CheckUnarity();
     this.extent.FlushCache();
     this.filter = new AllorsPredicateRoleInExtentSql(this.extent, role, containingExtent);
     return(this);
 }
Ejemplo n.º 15
0
        public ICompositePredicate AddLessThan(IRoleType role, object value)
        {
            this.CheckUnarity();
            this.extent.FlushCache();
            var lessThanRole        = value as IRoleType;
            var lessThanAssociation = value as IAssociationType;

            if (lessThanRole != null)
            {
                this.filter = new AllorsPredicateRoleLessThanRoleSql(this.extent, role, lessThanRole);
            }
            else if (lessThanAssociation != null)
            {
                throw new NotImplementedException();
            }
            else
            {
                this.filter = new AllorsPredicateRoleLessThanValueSql(this.extent, role, value);
            }

            return(this);
        }
Ejemplo n.º 16
0
        public ICompositePredicate AddBetween(IRoleType role, object firstValue, object secondValue)
        {
            this.CheckUnarity();
            this.extent.FlushCache();
            var betweenRoleA        = firstValue as IRoleType;
            var betweenRoleB        = secondValue as IRoleType;
            var betweenAssociationA = firstValue as IAssociationType;
            var betweenAssociationB = secondValue as IAssociationType;

            if (betweenRoleA != null && betweenRoleB != null)
            {
                this.filter = new AllorsPredicateRoleBetweenRoleSql(this.extent, role, betweenRoleA, betweenRoleB);
            }
            else if (betweenAssociationA != null && betweenAssociationB != null)
            {
                throw new NotImplementedException();
            }
            else
            {
                this.filter = new AllorsPredicateRoleBetweenValueSql(this.extent, role, firstValue, secondValue);
            }

            return(this);
        }
Ejemplo n.º 17
0
        public ICompositePredicate AddBetween(IRoleType role, object firstValue, object secondValue)
        {
            this.CheckUnarity();
            this.extent.FlushCache();
            var betweenRoleA = firstValue as IRoleType;
            var betweenRoleB = secondValue as IRoleType;
            var betweenAssociationA = firstValue as IAssociationType;
            var betweenAssociationB = secondValue as IAssociationType;
            if (betweenRoleA != null && betweenRoleB != null)
            {
                this.filter = new AllorsPredicateRoleBetweenRoleSql(this.extent, role, betweenRoleA, betweenRoleB);
            }
            else if (betweenAssociationA != null && betweenAssociationB != null)
            {
                throw new NotImplementedException();
            }
            else
            {
                this.filter = new AllorsPredicateRoleBetweenValueSql(this.extent, role, firstValue, secondValue);
            }

            return this;
        }
Ejemplo n.º 18
0
 public ICompositePredicate AddContainedIn(IAssociationType association, Extent containingExtent)
 {
     this.CheckUnarity();
     this.extent.FlushCache();
     this.filter = new AllorsPredicateAssociationInExtentSql(this.extent, association, containingExtent);
     return this;
 }
Ejemplo n.º 19
0
 public ICompositePredicate AddContainedIn(IRoleType role, IEnumerable<IObject> containingEnumerable)
 {
     this.CheckUnarity();
     this.extent.FlushCache();
     this.filter = new RoleContainedInEnumerable(this.extent, role, containingEnumerable);
     return this;
 }
Ejemplo n.º 20
0
 public ICompositePredicate AddContains(IRoleType role, IObject containedObject)
 {
     this.CheckUnarity();
     this.extent.FlushCache();
     this.filter = new AllorsPredicateRoleContainsSql(this.extent, role, containedObject);
     return this;
 }
Ejemplo n.º 21
0
 public ICompositePredicate AddContainedIn(IAssociationType association, IEnumerable<IObject> containingEnumerable)
 {
     this.CheckUnarity();
     this.extent.FlushCache();
     this.filter = new AssociationContainedInEnumerable(this.extent, association, containingEnumerable);
     return this;
 }
Ejemplo n.º 22
0
        public ICompositePredicate AddEquals(IRoleType role, object obj)
        {
            this.CheckUnarity();
            this.extent.FlushCache();
            var equalsRole = obj as IRoleType;
            var equalsAssociation = obj as IAssociationType;
            if (equalsRole != null)
            {
                this.filter = new AllorsPredicateRoleUnitEqualsRoleSql(this.extent, role, equalsRole);
            }
            else if (equalsAssociation != null)
            {
                throw new NotImplementedException();
            }
            else
            {
                if (role.ObjectType is IUnit)
                {
                    this.filter = new AllorsPredicateRoleUnitEqualsValueSql(this.extent, role, obj);
                }
                else
                {
                    this.filter = new AllorsPredicateRoleCompositeEqualsSql(this.extent, role, obj);
                }
            }

            return this;
        }
Ejemplo n.º 23
0
 public ICompositePredicate AddContains(IAssociationType association, IObject containedObject)
 {
     this.CheckUnarity();
     this.extent.FlushCache();
     this.filter = new AllorsPredicateAssociationContainsSql(this.extent, association, containedObject);
     return this;
 }
Ejemplo n.º 24
0
 public ICompositePredicate AddExists(IRoleType role)
 {
     this.CheckUnarity();
     this.extent.FlushCache();
     this.filter = new AllorsPredicateRoleExistsSql(this.extent, role);
     return this;
 }
Ejemplo n.º 25
0
 public ICompositePredicate AddEquals(IAssociationType association, IObject allorsObject)
 {
     this.CheckUnarity();
     this.extent.FlushCache();
     this.filter = new AllorsPredicateAssociationEqualsSql(this.extent, association, allorsObject);
     return this;
 }
Ejemplo n.º 26
0
 public ICompositePredicate AddInstanceof(IRoleType role, IComposite type)
 {
     this.CheckUnarity();
     this.extent.FlushCache();
     this.filter = new AllorsPredicateRoleInstanceofSql(this.extent, role, type, new List<IClass>(type.Classes).ToArray());
     return this;
 }
Ejemplo n.º 27
0
 public ICompositePredicate AddExists(IAssociationType association)
 {
     this.CheckUnarity();
     this.extent.FlushCache();
     this.filter = new AllorsPredicateAssociationExistsSql(this.extent, association);
     return this;
 }
Ejemplo n.º 28
0
 public ICompositePredicate AddInstanceof(IAssociationType association, IComposite type)
 {
     this.CheckUnarity();
     this.extent.FlushCache();
     this.filter = new AllorsPredicateAssociationInstanceofSql(this.extent, association, type, new List<IClass>(type.Classes).ToArray());
     return this;
 }
Ejemplo n.º 29
0
        public ICompositePredicate AddLessThan(IRoleType role, object value)
        {
            this.CheckUnarity();
            this.extent.FlushCache();
            var lessThanRole = value as IRoleType;
            var lessThanAssociation = value as IAssociationType;
            if (lessThanRole != null)
            {
                this.filter = new AllorsPredicateRoleLessThanRoleSql(this.extent, role, lessThanRole);
            }
            else if (lessThanAssociation != null)
            {
                throw new NotImplementedException();
            }
            else
            {
                this.filter = new AllorsPredicateRoleLessThanValueSql(this.extent, role, value);
            }

            return this;
        }
Ejemplo n.º 30
0
 public ICompositePredicate AddLike(IRoleType role, string value)
 {
     this.CheckUnarity();
     this.extent.FlushCache();
     this.filter = new AllorsPredicateRoleLikeSql(this.extent, role, value);
     return this;
 }
Ejemplo n.º 31
0
 public ICompositePredicate AddAnd()
 {
     this.CheckUnarity();
     this.extent.FlushCache();
     this.filter = new AllorsPredicateAndSql(this.extent);
     return (ICompositePredicate)this.filter;
 }
Ejemplo n.º 32
0
 public ICompositePredicate AddContainedIn(IRoleType role, Extent containingExtent)
 {
     this.CheckUnarity();
     this.extent.FlushCache();
     this.filter = new AllorsPredicateRoleInExtentSql(this.extent, role, containingExtent);
     return this;
 }