0

我正在尝试创建一个用于更新简单数据库表的 Web 服务。我有一个更新方法,它接受一个 Employee 类型对象的参数。我已经包含了 Employee 类所属的命名空间的引用。由于我无法理解的原因,我收到以下错误:不一致的可访问性:参数类型“EmployeeDBApplication.Employee”比方法“EmployeeStoreWS.EmployeeStoreService.update(EmployeeDBApplication.Employee)”更难访问

class Employee
{

    private int id;

    public int Id
    {
        get { return id; }
        set { id = value; }
    }

    private double salary;

    public double Salary
    {
        get { return salary; }
        set { salary = value; }
    }
    private string address;

    public string Address
    {
        get { return address; }
        set { address = value; }
    }
    private string firstname;

    public string Firstname
    {
        get { return firstname; }
        set { firstname = value; }
    }
    private string lastname;

    public string Lastname
    {
        get { return lastname; }
        set { lastname = value; }
    }


    public override string ToString() {
        string x;
        x = "Employee ID:" + this.id + "\tName:" + this.firstname + "\t" + this.lastname + "\n\tSalary:" + this.salary + "\t Address:" + this.address; 

        return x;
    }

}

和网络服务:

public class EmployeeStoreService : System.Web.Services.WebService
{
    //id    int(11) NO  PRI 0   
    //firstname varchar(255)    YES         
    //lastname  varchar(255)    YES         
    //address   varchar(255)    YES         
    //salary    double  YES         

    [WebMethod]
    public MySqlConnection getConnection()
    {
        return new MySqlConnection("Database=sakila;Data Source=localhost;User Id=root;Password=george 01");
    }

    [WebMethod]
    public void update(Employee employee)
    {
        MySqlConnection connection = null;
        try
        {
            connection = getConnection();
            connection.Open();

            MySqlCommand myCommand = new MySqlCommand("UPDATE employee SET (?id,?firstname,?lastname,?address,?salary) WHERE employee.id = ?id");
            myCommand.Prepare();

            myCommand.Parameters.AddWithValue("?id", employee.Id);
            myCommand.Parameters.AddWithValue("?firstname", employee.Firstname);
            myCommand.Parameters.AddWithValue("?lastname", employee.Lastname);
            myCommand.Parameters.AddWithValue("?address", employee.Address);
            myCommand.Parameters.AddWithValue("?salary", employee.Salary);

            myCommand.ExecuteNonQuery();

            connection.Close();

        }
        catch (Exception ex)
        {
            Console.WriteLine(ex.Message);
        }
        finally
        {
            if (connection != null)
                connection.Close();
        }
    }
}
4

3 回答 3

2

您需要公开您的课程。

public class Employee

它抱怨你的一些班级成员是公开的,而班级本身不是。默认情况下,类是内部的

于 2013-10-24T18:06:33.450 回答
1

尝试改变这个

class Employee
{

    private int id;
    //...

对此

public class Employee
{

    private int id;
    //...

除非您有特定的理由不这样做,否则定义Employeepublic

于 2013-10-24T18:05:48.080 回答
0

您的更新方法是公开的,因为您的课程是内部的。因此消息。当您不指定访问修饰符时,它是内部的。

于 2013-10-24T18:08:16.403 回答