Hello guys. Anyone here can discuss about the sql to linq in WCF? Im using Sql to Linq but in Windows App only.
Anyone here can discuss.
Tnx.
Sai
what do you want to do here? you can certainly use LINQ to SQL as your backend data access mechanism for a WCF service operation.
I agree to @cruizerYou could just simply create a separte project (Class Library) for your data access and reference it to your WFC project, instantiate it.Reusable codes can help a lot too.
; ) cheers
sai, you can use the Linq to SQL at the Data Access Layer. means to say, you create something like a class library that contains the code needed to access you database... and there, you will be using Linq to SQL. well, this is just one approach.