Start with plugin development for Dataverse

Sdílet
Vložit
  • čas přidán 24. 07. 2024
  • In this episode, we will look at setting up a plugin project and writing a simple plugin. So let's being your journey into developing a plugin for Dataverse.
    🔥 Useful Links :
    Jonas Rapp's Canary Tracer: github.com/rappen/RappCanary3...
    My version of Plugin Base & Context: github.com/Power-Maverick/Pow...
    🔗 GitHub Page: github.com/Power-Maverick/Pow...
    📖 Table of Contents:
    00:00 - Introduction
    00:31 - Setting Plugin Project
    09:57 - Use Case for Plugin Code
    11:21 - Write the Plugin Code
    16:21 - Sign the assembly
    17:46 - What's in the next video
    🔴 Subscribe for more videos: czcams.com/users/PowerMaverick...
    ⏩ Recommended Playlist: • Power Tips
    -- Power Maverick --
    👩‍💻 Let's Connect:
    CZcams: czcams.com/users/PowerMaverick...
    Website: powermaverick.dev
    LinkedIn: / danishnaglekar
    Twitter: / danzmaverick
    GitHub: github.com/Power-Maverick
    #Developer #Dataverse #PowerApps #PowerPlatform
  • Věda a technologie

Komentáře • 22

  • @SincerelyAkshay
    @SincerelyAkshay Před 2 lety +2

    This was very helpful. I would pay for this.

    • @PowerMaverick
      @PowerMaverick  Před 2 lety

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

  • @nexrm2399
    @nexrm2399 Před rokem +1

    Fantastic! Thanks for your great videos

    • @PowerMaverick
      @PowerMaverick  Před rokem

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

  • @ignacioitza5330
    @ignacioitza5330 Před rokem

    @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  Před rokem

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

  • @kareemtoheeb5932
    @kareemtoheeb5932 Před 2 lety +2

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

    • @PowerMaverick
      @PowerMaverick  Před 2 lety +1

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

  • @user-tz1le4hi7w
    @user-tz1le4hi7w Před rokem

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

    • @PowerMaverick
      @PowerMaverick  Před rokem

      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.

  • @gilbertpradier
    @gilbertpradier Před měsícem

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

  • @ignacioitza5330
    @ignacioitza5330 Před rokem

    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  Před rokem

      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
      czcams.com/video/jwrS32VS4bg/video.html

    • @ignacioitza5330
      @ignacioitza5330 Před rokem

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

  • @cybersoft5316
    @cybersoft5316 Před 5 měsíci

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

    • @PowerMaverick
      @PowerMaverick  Před 5 měsíci

      Chrome extension: Level Up. Developed by: Natraj

  • @Succuub
    @Succuub Před rokem

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

    • @PowerMaverick
      @PowerMaverick  Před rokem

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

  • @exotic80
    @exotic80 Před rokem +1

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

    • @PowerMaverick
      @PowerMaverick  Před rokem

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