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