how to list value convert to another list in c# using linq code example
Example: linq convert list to another list
List<objA> listA = GetObjAList();
List<objB> listB = objA.Select(oA => new objB()
{
prop1 = oA.prop1,
nextProp = oA.someProp
}).ToList();