I working on a database migration (from Oracle to SQL Server) and in this context, I need to change the DAL layer of an ASP.NET project. Part of this is finding the SQL Server equivalent of the class OracleParameter (From Oracle.DataAccess.dll).
So I would like to know which class I have to use, is it DbParameter or another one?
DbParameter? Then wouldn't it make sense there's an equivalent class in the SQL Server libraries that also inherits from that, and probably has "parameter" in the name? And where does one look for information about the libraries that come with .NET? The documentation!