How to add into dropdownlist through mapper
<asp:DropDownList ID="ddl" runat="server"></asp:DropDownList>
ddlmapper ddm;
page_load
{
ddm=new ddlmapper();
loaddropdown();
}
private void loaddropdown()
{
ddl.datasource=ddm.mapperfunction("abc");
}
//mapperfunction is a function in linqmapper where i called storedprocedure which contains
single column information
//I need ddm.mapperfunction("abc") to be added into dropdownlist,ddl.
How to add it??