Start with plugin development for Dataverse

Поделиться
HTML-код
  • Опубликовано: 14 дек 2024

Комментарии • 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 4 месяца назад

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

    • @PowerMaverick
      @PowerMaverick  4 месяца назад

      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

  • @gilbertpradier
    @gilbertpradier 5 месяцев назад

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

    • @PowerMaverick
      @PowerMaverick  5 месяцев назад

      Currently I believe it supports 4.7.1

  • @cybersoft5316
    @cybersoft5316 9 месяцев назад

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

    • @PowerMaverick
      @PowerMaverick  9 месяцев назад

      Chrome extension: Level Up. Developed by: Natraj

  • @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
      ruclips.net/video/jwrS32VS4bg/видео.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

  • @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

  • @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.

  • @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.