The following is a code snippet to get a plugin up and running quickly. In NuGet, add: Microsoft.CrmSdk.CoreAssemblies
using System.Collections.Generic; |
using System.Threading.Tasks; |
using Microsoft.Xrm.Sdk.Query; |
namespace Carl.PluginName |
public class PluginName : IPlugin |
public void Execute(IServiceProvider serviceProvider) |
IPluginExecutionContext context = (IPluginExecutionContext)serviceProvider.GetService( typeof (IPluginExecutionContext)); |
IOrganizationServiceFactory serviceFactory = (IOrganizationServiceFactory)serviceProvider.GetService( typeof (IOrganizationServiceFactory)); |
IOrganizationService service = serviceFactory.CreateOrganizationService(context.UserId); |
ITracingService tracingService = (ITracingService)serviceProvider.GetService( typeof (ITracingService)); |
sdsd
THANKS FOR READING. BEFORE YOU LEAVE, I NEED YOUR HELP.
I AM SPENDING MORE TIME THESE DAYS CREATING YOUTUBE VIDEOS TO HELP PEOPLE LEARN THE MICROSOFT POWER PLATFORM.
IF YOU WOULD LIKE TO SEE HOW I BUILD APPS, OR FIND SOMETHING USEFUL READING MY BLOG, I WOULD REALLY APPRECIATE YOU SUBSCRIBING TO MY YOUTUBE CHANNEL.
THANK YOU, AND LET'S KEEP LEARNING TOGETHER.
CARL
https://www.youtube.com/carldesouza