CloneSet2119


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

                /// <summary>
                /// Apply a "between" constraint to the named property
                /// </summary>
                /// <param name="propertyName">The name of the Property in the class.</param>
                /// <param name="lo">The low value for the Property.</param>
                /// <param name="hi">The high value for the Property.</param>
                /// <returns>A <see cref="BetweenExpression" />.</returns>
                public static AbstractCriterion Between(string propertyName, object lo, object hi)
                {
                        return new BetweenExpression(propertyName, lo, hi);
                }



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

                /// <summary>
                /// Apply a "between" constraint to the projection
                /// </summary>
                /// <param name="projection">The projection.</param>
                /// <param name="lo">The low value for the Property.</param>
                /// <param name="hi">The high value for the Property.</param>
                /// <returns>A <see cref="BetweenExpression"/>.</returns>
                public static AbstractCriterion Between(IProjection projection, object lo, object hi)
                {
                        return new BetweenExpression(projection, lo, hi);
                }



Clone AbstractionParameter Count: 2Parameter Bindings

/// <summary>
/// Apply a "between" constraint to the projection
/// Apply a "between" constraint to the named property
/// </summary>
/// <param name="projection">The projection.</param>
/// <param name="propertyName">The name of the Property in the class.</param>
/// <param name="lo">The low value for the Property.</param>
/// <param name="hi">The high value for the Property.</param>
/// <returns>A <see cref="BetweenExpression"/>.</returns>
/// <returns>A <see cref="BetweenExpression" />.</returns>
public static AbstractCriterion Between( [[#variable5eb997c0]] [[#variable5eb99740]], object lo, object hi)
{
   return new BetweenExpression( [[#variable5eb99740]], lo, hi);
}

 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#5eb997c0]]
IProjection 
12[[#5eb997c0]]
string 
21[[#5eb99740]]
projection 
22[[#5eb99740]]
propertyName