explanation:
I have fetched list items based on conditions. Like this.
var query = from SPListItem oItem in splist.Items
where Convert.ToDateTime(oItem["Status"]).Equals("Completed")
select oItem;
foreach (SPListItem item in query)
{
// I get each SPListItem based on my condition
// Now i want add/copy each list items to same list
}
How do i add SPListItem whole object to same list?


