Ganesh,
From your question I gather that you have a microflow published as a webservice that has an input parameter (list of a certain entity) and in your microflow you create the object after some modifications. If this is correct then you probably are looping through the input list and creating the entity records after modifying them. You can do the modifications and just commit the changes to the objaects as they are already created. That way you'll only have the modified objects in your table once in stead of twice.
From the documentation:
Web service parameter handling:
Depending on which types of parameters are inputs to the published Microflow, two things can happen.
If an input is a Domain Entity, the XML is translated to the entity using an XML-to-Domain mapping. Note that these mappings create actual domain objects, depending on the mapping.
Normal parameters (integer, string etc) aren't converted in any way and used as inputs directly.
Microflow is executed
Once the parameters have been parsed from the XML, the microflow call proceeds as normal.