I am developing a WCF restful service to expose data in json format. Currently I am using taking data into a datatbale and then iterating each row and putting into a list and then returning. However I want to skip this iteration and want to directly cast the datatble to a List.
This way I will no longer required to write every column mapping in my service...
Current Code:
[OperationContract]
[WebInvoke
(
Method = "GET",
BodyStyle = WebMessageBodyStyle.Bare,
ResponseFormat = WebMessageFormat.Json,
UriTemplate = "Id/All"
)
]
DataTable dt = new DataTable();
dt = myData;
List<myCls> lstAllmyCls = new List<myCls>();
foreach (DataRow dr in dt.Rows)
{
DataContactClass DataContactCls= new DataContactClass();
DataContactCls.Id = Convert.ToInt32(dr["Id"]);
DataContactCls.Name = dr["Name"].ToString();
myCls.Add(DataContactCls);
}
return myCls.ToArray();
Changed Code:
var convertlist = (from dr in dt.AsEnumerable()
select new DataContactCls()
{
Id = Convert.ToInt32(dr["Id"]),
Name = dr["Name"].ToString()
}).ToList();
But here also I am providing column name which I want to avoid while retirning list data as json.
Can anyone suggest anything more feasible ?
Can you try the below code
NOTE: There is always a performance impact when using reflection