CloneSet2609


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
3220.971class_member_declaration
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
13360
src/NHibernate/Criterion/Restrictions.cs
23494
src/NHibernate/Criterion/Restrictions.cs
Clone Instance
1
Line Count
3
Source Line
360
Source File
src/NHibernate/Criterion/Restrictions.cs

                /// <summary>
                /// Apply an "equal" constraint to two properties
                /// </summary>
                /// <param name="propertyName">The lhs Property Name</param>
                /// <param name="otherPropertyName">The rhs Property Name</param>
                /// <returns>A <see cref="EqPropertyExpression"/> .</returns>
                public static AbstractCriterion EqProperty(string propertyName, string otherPropertyName)
                {
                        return new EqPropertyExpression(propertyName, otherPropertyName);
                }



Clone Instance
2
Line Count
3
Source Line
494
Source File
src/NHibernate/Criterion/Restrictions.cs

                /// <summary>
                /// Apply a "greater than or equal" constraint to two properties
                /// </summary>
                /// <param name="propertyName">The lhs Property Name</param>
                /// <param name="otherPropertyName">The rhs Property Name</param>
                /// <returns>A <see cref="LePropertyExpression"/> .</returns>
                public static AbstractCriterion GeProperty(string propertyName, string otherPropertyName)
                {
                        return new GePropertyExpression(propertyName, otherPropertyName);
                }



Clone AbstractionParameter Count: 2Parameter Bindings

/// <summary>
/// Apply an "equal" constraint to two properties
/// Apply a "greater than or equal" constraint to two properties
/// </summary>
/// <param name="propertyName">The lhs Property Name</param>
/// <param name="otherPropertyName">The rhs Property Name</param>
/// <returns>A <see cref="EqPropertyExpression"/> .</returns>
/// <returns>A <see cref="LePropertyExpression"/> .</returns>
public static AbstractCriterion [[#variable583faee0]](string propertyName, string otherPropertyName)
{
   return new [[#variable583fae80]](propertyName, otherPropertyName);
}

 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#583faee0]]
EqProperty 
12[[#583faee0]]
GeProperty 
21[[#583fae80]]
EqPropertyExpression 
22[[#583fae80]]
GePropertyExpression