consider the code below:\[code\]DataView deletedLOV = new DataView(tbltmp, "prociLOV_Deleted=1", "prociLOV_ID", DataViewRowState.CurrentRows);DataView addedLOV = new DataView(tbltmp, "prociLOV_Id>1", "prociLOV_ID", DataViewRowState.CurrentRows);int deletedLOVcount=deletedLOV.Table.Rows.Count;int addedLOVcount=addedLOV.Table.Rows.Count;\[/code\]prociLOV_Deleted is set to 1 when a record is deletedbut here both deletedLOV view and addedLOV view has the same tables.row.count and deletedLOV contains same element as addedLOV even though the ro filter conditon is false