Hi,
I am just creating my first Project in C#,be patient if you can.
My objective is to create a GUI that will interact with the sql server db.
I have created 'Client' project, so far so good.
I added a project 'DataAccess' that includes all classes that do the connection to the db.
Now, my problem is to connect between the client and the DataAccess projects.
In the Client side I added -
Using DataAccess.Connection
Building the solution raised an error:
"The type or namespace name 'DataAccess' could not be found (are you missing a using directive or an assembly reference?)".
How can I connect with the DataAccess project?
Thanks
Yossi
I am just creating my first Project in C#,be patient if you can.
My objective is to create a GUI that will interact with the sql server db.
I have created 'Client' project, so far so good.
I added a project 'DataAccess' that includes all classes that do the connection to the db.
Now, my problem is to connect between the client and the DataAccess projects.
In the Client side I added -
Using DataAccess.Connection
Building the solution raised an error:
"The type or namespace name 'DataAccess' could not be found (are you missing a using directive or an assembly reference?)".
How can I connect with the DataAccess project?
Thanks
Yossi