User1979860870 posted
Hi
I have added one Project Class Library to existing project
On below code ' The name ConfigurationManger does not exist in current context.
public static DataSet DataRecords(string SrcSql, SrcType SourceType = SrcType.SqlQuery)
{
DataSet ds = new DataSet();
SqlDataAdapter da = new SqlDataAdapter(SrcSql, ConfigurationManager.ConnectionStrings["Cnn"].ConnectionString);
da.Fill(ds);
return ds;
}
Thanks