Hi Chaps,
I created a new solution with 3 projects: My "Client" is a ASP.Net Web Application. This should display the information. My Businesslayer should have all logic in it, it's designed as a normal class libery. My "Server" is a WebService. This connect via Linq to the database and get the Information.
Now only my Server knows Linq and knows the Database (how it should be). But how can I give Linq Objects throug the WebService to my Business and my WebApp Layer to use it There?
For my understand there must be a way, because I have e.g. a complete user object with all needed Information with Linq, so I don't must create a own one, must I?