CloneSet746


Previous CloneSetNext CloneSetBack to Main Report
Clone
Mass
Clones in
CloneSet
Parameter
Count
Clone
Similarity
Syntax Category
[Sequence Length]
6220.983non_pp_embedded_statement
Clone AbstractionParameter Bindings
Clone Instance
(Click to see clone)
Line CountSource Line
Source File
162286
src/NHibernate/Persister/Entity/AbstractEntityPersister.cs
262332
src/NHibernate/Persister/Entity/AbstractEntityPersister.cs
Clone Instance
1
Line Count
6
Source Line
2286
Source File
src/NHibernate/Persister/Entity/AbstractEntityPersister.cs

                        // add normal properties
                        for (int i = 0; i < entityMetamodel.PropertySpan; i++)
                        {
                                if (includeProperty[i] && IsPropertyOfTable(i, j))
                                {
                                        // this property belongs on the table and is to be inserted
                                        builder.AddColumns(GetPropertyColumnNames(i), propertyColumnInsertable[i], PropertyTypes[i]);
                                }
                        }


Clone Instance
2
Line Count
6
Source Line
2332
Source File
src/NHibernate/Persister/Entity/AbstractEntityPersister.cs

                        // add normal properties
                        for (int i = 0; i < entityMetamodel.PropertySpan; i++)
                        {
                                if (includeProperty[i] && IsPropertyOfTable(i, 0))
                                {
                                        // this property belongs on the table and is to be inserted
                                        insert.AddColumns(GetPropertyColumnNames(i), propertyColumnInsertable[i], PropertyTypes[i]);
                                }
                        }


Clone AbstractionParameter Count: 2Parameter Bindings

// add normal properties
for (int i = 0; i < entityMetamodel.PropertySpan; i++)
{
   if (includeProperty[i] && IsPropertyOfTable(i, [[#variable56b1c600]]))
   {
       [[#variable56b1c500]].AddColumns(GetPropertyColumnNames(i), propertyColumnInsertable[i], PropertyTypes[i]);
   }
}
 

CloneAbstraction
Parameter Bindings
Parameter
Index
Clone
Instance
Parameter
Name
Value
11[[#56b1c600]]
0 
12[[#56b1c600]]
j 
21[[#56b1c500]]
// this property belongs on the table and is to be inserted
insert 
22[[#56b1c500]]
// this property belongs on the table and is to be inserted
builder