I’m working on asp.net c# oracle database connection using 3-Tier architecture. On my business layer class I’m getting this error. System.StackOverflowException was unhandled
I followed a tutorial using sql database and all worked fine with no error now I need to implement using oracle database.
Here is part of the code where I’m getting error
public class BusSurvey
{
DbAccess _dbAccess = new DbAccess();
private DataSet _SurveyDS = new DataSet();
public DataSet SurveyDS
{
get
{
return SurveyDS;
}
set
{
SurveyDS = value;
}
}
Name of
propertyandfieldare same so change the field name