when i try to build this file
this error is showing how to solve this
public Table<ClsCustomer> getcustomers(out string msg)
{
try
{
DataContext Db = new DataContext("Data Source=BAIJU;Initial Catalog=baiju;Integrated Security=True");
Table<ClsCustomer> customer = Db.GetTable<ClsCustomer>();
msg = "Success";
return customer;
}
catch (Exception ex)
{
msg= ex.Message;
}
}