SharePoint Client OM Tutorials? - sharepoint-2010

I'm looking for a good tutorial on how to use the SharePoint 2010 Client Object Model. All I've been able to find on the web is some snippets about getting all the list names.
I'm looking for functionality such as:
Adding an item to a list
Querying a list for a specific field value
Deleting a row from a list
Any help would be appreciated!

Using the SharePoint Foundation 2010 Managed Client Object Model should be helpful.
Also, I did a course for the Pluralsight On-Demand Library on the topic.

Check this MSDN Video by Andrew Connell

Related

I want to create item into SharePoint list through .Net core console or Web API

I want to create an item into SharePoint online list through the .Net core console or Web API through CSOM, so is it possible? If yes then How?
Thanks in advance!
I believe MS Graph API would be the best way to achieve that: https://developer.microsoft.com/en-us/graph/get-started/dotnet-core
With Graph API you can access most of MS services: One Drive, Sharepoint, Teams ...
You can start by checking the Graph Explorer: https://developer.microsoft.com/en-us/graph/graph-explorer I see a Sharepoint List section in there which should suit your need.
.NET Core is a good language to use it.

Request for examples of VB.net code to retrieve Amazon orders via MWS API

I have been tasked to generate a VB.net application to download our Amazon orders and order items using the API.
Can anyone point me in the direction of any samples to assist. The API documentation is very thorough but thought it would save time if I could look at some existing code.
Any offers would be gratefully received.
A great resource for API support is the MWS forums located here. Not much VB code has been posted there, but there are some users who are versed in it.
You may also want to check out the code converter at telerik as other MWS users have had success with it. With the converter you'll be able to take the sample applications provided in C# and convert it to VB.net.

Sharepoint 2010 discussion board user creation/authentication for internet (public) sites

We are creating a internet site (with anonymous access) in SharePoint 2010. One of the features requested is a discussion forum (not anonymous). We very much want to use the built in SharePoint Discussion Board (the look is dull, but we are OK with it). What I don't quite understand is how to implement user authentication and creation. Will every user have that participates in the discussion be a domain user? If I use a different authentication provider, how do I integrate external roles to SharePoint roles/permissions. Any tips or links on how to implement user management for public SharePoint sites would be great. Thanks.
Similar question, but not what I was looking for:
share point 2010 :how to create forum website , using in team discussion question and answerig?
https://stackoverflow.com/questions/5098521/any-decent-reference-materials-for-sharepoint-2010-for-internet-sites
Perhaps I didn't search well enough (or didn't use the correct terms) but I eventually found what I was looking for: SharePoint 2010 FBA Pack. With this, I am able to create all my users via SharePoint and manage permissions using the role provider. Very easy and powerful solution.

How to install Form Based Authentication in SharePoint 2010

I would like users to have the ability of signing in without being Windows users. This means, either using Form Based Authentication or a better option, which I'm now aware right now.
Could anybody tell me how to install FBA in Share Point 2010, or recommend me a good article about it?
I've read several articles about this, but almost all of them tell me to modify several web.config files, and I really don't like the idea of touching things without being sure of what I'm doing.
Note: I'm not using Active Directory...just in case.
EDIT:
I've followed this tutorial, but I still cannot sign in using FBA. Also, I've noticed I don't have any users on SQL-Auth database (it's explained in that tutorial). Is that normal, or automatic?
Thanks,
Brian
I read quite a few articles about FBA configuration and followed instruction provided by them. But it wasn't until I found Configuring Forms Based Authentication for SharePoint 2010 using IIS7 I finally managed to make FBA work - I highly recommend this article.
The users are not created automatically - you can create them:
using IIS Manager,
programmatically (Membership.CreateUser),
using the MembershipSeeder tool mentioned in the tutorial you linked in your question.
This one has lots of screenshots and step-by-step explanations and might be helpful too.
http://kbochevski.blogspot.com/2011/01/setup-fba-for-sharepoint-2010-using-vs.html

How to activate a solution in SharePoint 2010 using client object model?

Here's the situation:
I have a customized SharePoint2010 site created.
I saved that site as a site template, which has created a solution.
I want to be able to activate that solution using SharePoint2010 client object model.
Is that possible? If yes, could you show me how to do it? If no, then could you show me how it can be done using standard SharePoint object model, or any other method?
Thank you for all the help.
Can look at an example here