Wednesday 18 January 2017

Export Managed Metadata Terms to CSV File Using Client Object Model

In SharePoint, Managed Metadata service provides the "Import Term Set" Out of the Box.
Unfortunately it does not provide the same "Export Term Set" capability.

So, I have this CSOM code to export the SharePoint Managed Metadata term store into a CSV file.

The Sample CSV File  has the columns "Term Set Name","Term Set Description","LCID","Available for Tagging","Term Description","Level 1 Term","Level 2 Term".




Thanks!!

Wednesday 12 October 2016

How to Like list item in SharePoint 2013 Programmatically using CSOM

In this blog you will learn how to implement Like in SharePoint List Programmatically.
Here in this code we have explored about Likes fields and how users like any Custom List item.
Operations I am performing here
  • Get the List
  • Get the List Items
  • Get Site Users
  • Get Liked Users And Likes Count



Thanks for reading!!