i want to know what’s the best method to implementing of data access for SharePoint?
can i use Entity Framework for data access of SP2010 or 2007?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I think there is no the best method. You can choose the best one for current situation.
In both 2007 and 2010 versions you can use Server Object Model (in SP 2007 just Object Model) to operate with Sharepoint objects.
You can use CAML and LINQ (in SP2010 only) queries, or get data from web services (standard or custom).
Also in SP2010 you can use Client Object Model to operate with data on remote server.
I think the method you should use realy depends on situation.