Thank you. Hope you would like the future videos and find them helpful.
@nexrm23992 жыл бұрын
Fantastic! Thanks for your great videos
@PowerMaverick2 жыл бұрын
Appreciate the feedback. Hope you like my other videos as well.
@kareemtoheeb59322 жыл бұрын
Nice video, though am new to plugin it is insighful. please do u have any vidoe on c#
@PowerMaverick2 жыл бұрын
I only focus on Microsoft Power Platform pro-dev stuff. So I do not have any specific C# skill videos.
@ericsondomantay83184 ай бұрын
Great video! It was very helpful. I wonder if you have the same Base classes when writing a custom workflow?
@PowerMaverick4 ай бұрын
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
@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 Жыл бұрын
You have to use Retrieve or RetrieveMultiple function provided by the IOrg service
@daizsupa2 жыл бұрын
Nice video, Was the dataverse table referenced in the video generated in another video?
@PowerMaverick2 жыл бұрын
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.
@gilbertpradier5 ай бұрын
What is the latest .NET Framework version supported for PlugIns and on Windows 11..?
@PowerMaverick5 ай бұрын
Currently I believe it supports 4.7.1
@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 Жыл бұрын
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 kzbin.info/www/bejne/oKjVhGZoi7hnmMk
@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
@cybersoft531610 ай бұрын
what is the name of this extension getting logical name in PowerApps
@PowerMaverick9 ай бұрын
Chrome extension: Level Up. Developed by: Natraj
@exotic802 жыл бұрын
hey! just commenting to let you know your base class plugin link is dead
@PowerMaverick2 жыл бұрын
Thanks for bringing it to my attention. Link is now fixed. Thanks again.
@Succuub Жыл бұрын
Seems like plugin base from your github lacks some parts from this awesome video.
@PowerMaverick Жыл бұрын
Actually the GitHub contains an improved version as per some comments provided by fellow community members.