Hi all,
i am getting the following type of errors please some one help me .
ERRORS::
the type or namespace SQLParams could not be found
.
the type or namespace QueryEngine could not be found
the type or namespace StoreProcedurecould not be found
private string dbInstance = string.Empty;
private DML objDML = new DML();
private SQLParams objParam = new SQLParams();
private QueryEngine objQuery = new QueryEngine();
private StoreProcedure objSPs = new StoreProcedure();
// Methods
Tuhin PaulPosted Mar 16, 2023, 2:46 PM
It seems that SQLParam class doesn't belong to any built-in .NET namespace. It's possible that you are using a custom-made data access library. If this library has already been added as a reference in your project, I can guide you on how to find the namespace for the SQLParam class. You can hover your cursor over the SQLParam word and press "ctrl" and "." keys at the same time. This will open the intellisense list of all possible namespaces that contain the selected class. I hope this helps you.
Rajeev KumarPosted Mar 16, 2023, 9:57 AM
SqlParameter[] Param = new SqlParameter[3];
Param[0] = new SqlParameter("@PayerId", payerId);
here is no namespace in .NET for SQLParam class. I think you are using some custom made DAL library.
Pradeep ShetPosted Jul 13, 2015, 7:56 AM
Sanjeeb LenkaPosted Jul 13, 2015, 7:51 AM