Cant see where the connection to my SQL database are done in the genereted Class? do i have to change somthing in Sharpcore code? or do i have to put the connection string somwhere in the generated code?
SqlClientUtility.ExecuteNonQuery("AC450Delete", dBDUMP, aC450); this is generated whit your tool.. but where do i specify the server to conect to?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Cant see where the connection to my SQL database are done in the genereted Class? do i have to change somthing in Sharpcore code? or do i have to put the connection string somwhere in the generated code?
SqlClientUtility.ExecuteNonQuery("AC450Delete", dBDUMP, aC450); this is generated whit your tool.. but where do i specify the server to conect to?
I use the class like that
public SalesBD bd = new SalesBD("Conexion");
where Conexion is the name of my conecction in the app.config or web.config
and i Use the object like that
List<Sales> datos;
datos=bd.SelectAll();