Start with plugin development for Dataverse

Поділитися
Вставка
  • Опубліковано 26 січ 2025

КОМЕНТАРІ • 24

  • @SincerelyAkshay
    @SincerelyAkshay 2 роки тому +2

    This was very helpful. I would pay for this.

    • @PowerMaverick
      @PowerMaverick  2 роки тому

      Thank you. Hope you would like the future videos and find them helpful.

  • @nexrm2399
    @nexrm2399 2 роки тому +1

    Fantastic! Thanks for your great videos

    • @PowerMaverick
      @PowerMaverick  2 роки тому

      Appreciate the feedback. Hope you like my other videos as well.

  • @kareemtoheeb5932
    @kareemtoheeb5932 2 роки тому +2

    Nice video, though am new to plugin it is insighful. please do u have any vidoe on c#

    • @PowerMaverick
      @PowerMaverick  2 роки тому +1

      I only focus on Microsoft Power Platform pro-dev stuff. So I do not have any specific C# skill videos.

  • @ericsondomantay8318
    @ericsondomantay8318 5 місяців тому

    Great video! It was very helpful. I wonder if you have the same Base classes when writing a custom workflow?

    • @PowerMaverick
      @PowerMaverick  5 місяців тому

      Normally I dont use workflows anymore but in case you wanna use it then you’ll have to inherit appropriate Workflow class on a similar base class as plugins

  • @daizsupa
    @daizsupa 2 роки тому

    Nice video, Was the dataverse table referenced in the video generated in another video?

    • @PowerMaverick
      @PowerMaverick  2 роки тому

      No. The idea is to show you how to write a plugin on any table. For learning you can use Account or Contact table as well.

  • @ignacioitza5330
    @ignacioitza5330 Рік тому

    I am trying to read a json at the begining of my code but it says that it cant find the assembly, and as well I tried to read a .txt but it does not allow me due to permissions, how can I solve this? Many thanks in advance

    • @PowerMaverick
      @PowerMaverick  Рік тому

      If you are using any external NuGet package like Newtonsoft it won’t work with a plugin project because all plugins runs in a Sandbox that doesn’t have these packages and there is no way to add a reference unless you use ILMerge which is unsupported by MSFT. On the other hand DataContractJsonSerializer would work.
      There is a new preview feature released by MSFT which will allow you to use external packages. You can see this feature implemented in my latest video - Creating Dataverse Plugin Package
      ua-cam.com/video/jwrS32VS4bg/v-deo.html

    • @ignacioitza5330
      @ignacioitza5330 Рік тому

      @@PowerMaverick Many may thanks for your information, I would have one more question, is it possible to get info from an specific table and then do something with that info in other different table in the same Dataverse enviroment¿? How can I do it? because I only can get the info from one context

  • @gilbertpradier
    @gilbertpradier 7 місяців тому

    What is the latest .NET Framework version supported for PlugIns and on Windows 11..?

    • @PowerMaverick
      @PowerMaverick  7 місяців тому

      Currently I believe it supports 4.7.1

  • @ignacioitza5330
    @ignacioitza5330 Рік тому

    @PowerMaverick , is it possible to get info from an specific table and then do something with that info in other different table in the same Dataverse enviroment¿? How can I do it? because I only can get the info from one context

    • @PowerMaverick
      @PowerMaverick  Рік тому

      You have to use Retrieve or RetrieveMultiple function provided by the IOrg service

  • @cybersoft5316
    @cybersoft5316 11 місяців тому

    what is the name of this extension getting logical name in PowerApps

    • @PowerMaverick
      @PowerMaverick  11 місяців тому

      Chrome extension: Level Up. Developed by: Natraj

  • @exotic80
    @exotic80 2 роки тому +1

    hey! just commenting to let you know your base class plugin link is dead

    • @PowerMaverick
      @PowerMaverick  2 роки тому

      Thanks for bringing it to my attention. Link is now fixed. Thanks again.

  • @Succuub
    @Succuub Рік тому

    Seems like plugin base from your github lacks some parts from this awesome video.

    • @PowerMaverick
      @PowerMaverick  Рік тому

      Actually the GitHub contains an improved version as per some comments provided by fellow community members.