Skip to content Skip to sidebar Skip to footer

How Do I Solve This Compile Error?

I'm getting this compile error message. How do I solve it? Error 28 'WindowsFormsApplication1.SqlCommand' does not contain a definition for 'Parameters' and no extension meth

Solution 1:

add

using System.Data;
using System.Data.SqlClient;

namespace to your file

Post a Comment for "How Do I Solve This Compile Error?"