Register & Debug a Dataverse Plugin

Поділитися
Вставка
  • Опубліковано 15 вер 2024

КОМЕНТАРІ • 19

  • @shauntaejones9311
    @shauntaejones9311 11 місяців тому +1

    I'm still relatively new to Power Apps and Microsoft Power Platform in general, and sometimes the learning paths just have soo much information and limited to no examples or use cases. I really appreciate your visualization of these concepts, examples and step-by-step approach you've taken in these videos. Thank you so much!

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

      Great to hear! Hope to produce more such content in coming months.

  • @shrirangmirajkar7711
    @shrirangmirajkar7711 6 днів тому

    Excellent

  • @Muhammad13389
    @Muhammad13389 Рік тому +5

    Sir can you make a video to teach us a more advanced use case plugin like getting records from multiple tables and then showing it somewhere in the form.

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

      Next video will be about this. Make sure you subscribe and enable notifications so you can get the alerts. 😊

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

      @@PowerMaverick Sure sir! I have already subscribed to the channel and click the bell icon as well to get the latest notification of your channel too.

  • @vohoanghaduong6639
    @vohoanghaduong6639 Рік тому +2

    Thanks so much sir. Wish best for you

  • @shrirangmirajkar7711
    @shrirangmirajkar7711 4 дні тому

    I hope you plan to do a video on how to extend the vs 2022 solution to create project for developing javascripts including methods to create proxy classes for intellisense

  • @kannankarmegam-bne
    @kannankarmegam-bne Рік тому +2

    Excellent video

  • @arianibraimi2607
    @arianibraimi2607 Рік тому +1

    Great video! Thanks a lot for giving a very thorough explanation of plugins.
    I though have a question I want to ask regarding the limitations of plugins.
    Is it possible to make a plugin that gets data from two separate tables, and compares them to one another?

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

      Yes you can absolutely do that. Keep in mind though plugins execution timeout is 2 minutes so make them perform well. If anything that’s time or process consuming and not dependent on any other execution (can run async) then make them execute outside Dataverse

  • @sgeorge1642
    @sgeorge1642 8 місяців тому

    Great Video. Would you thing the plugin should be registered on pre operation instead of post-operation to avoid another update to the same entity.

    • @PowerMaverick
      @PowerMaverick  8 місяців тому +1

      Yes definitely need a pre-op. This was just a demo focused on registering and debugging.

    • @sgeorge1642
      @sgeorge1642 8 місяців тому

      @@PowerMaverick Great Demo. Thanks.

  • @bertnatenstedt7071
    @bertnatenstedt7071 8 місяців тому

    Hi Trying to use your Plugin Framework for adding a plugin to support customAPI (so not based on entity events usingt the target proeprty) Any suggestion how to link this to the IServiceProviders context GetService ?

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

      Custom API is a plugin so you can inherit from the PluginBase class. Do you get any error when you inherit from PluginBase like you do for a regular plugin?

    • @bertnatenstedt7071
      @bertnatenstedt7071 8 місяців тому

      HI @@PowerMaverick Probably my knowledge of C# but from the MS CustomApi example I need an iServicePRovider object to get e link to the received input/outputparams. If I create a new class based on your pluginbase class this attribute is not available ?