Metodología de desarrollo - TDD (desarrollo dirigido por tests)
TDD o Test-Driven Development (desarrollo dirigido por tests) es una práctica de programación que consiste en escribir primero las pruebas (generalmente unitarias), después escribir el código fuente...
View ArticleArquitectura DDD - (Domain Driven Development)
Con esta guía está todo dicho:http://interaktiv.cl/clases/csharp/Guia_Arquitectura_N-Capas_DDD_NET_4_%28Borrador_Marzo_2010%29.pdf
View ArticleBuilding a Custom Web API for use with SharePoint Online
IMPORTANT UPDATE – PLEASE READ: It looks like as of May 1, 2018 Microsoft made changes that invalidate the techniques shown in this post. Attempting to exchange the access token received by the user...
View ArticleBuilding a Restful API With ASP.NET, Web API, and SQL Server
Here, I am using Visual Studio 2017 and Management Studio. These are the steps we need to follow:Create a Blank Web API project.Select Web API in the template selection window.Create a table and Insert...
View ArticleSharepoint 2016 Rest Authentication for on prem from a custom web api
Hi, I am attempting to create an api to repost REST requests to sharepoint.I created a test that used o365 authentication (SharePointOnlineCredentials) to post to o365 but now need to adapt it to work...
View ArticleUpdate SPFx projects to 1.9.1
The SharePoint team has released a new version of SPFx (SharePoint Framework Released 1.9.1)The changes alredy mentioned here:General Availability of Library componentsTooling move from WebPack 3 to...
View ArticleSet list item-level permissions in SharePoint using Flow
I recently came across a scenario where a client requested that when employees submit a certain HR application form (which in fact was a SharePoint Online list), the permissions needed to be removed...
View ArticleHow to manage permissions on a SharePoint List Item using Microsoft Flow –...
This post describes how to add contribute permission for a selected user id to a single item in a list using Microsoft Flow. The flow uses the REST API calls to change the permissions. The walk...
View ArticleSharePoint REST API URL for accessing List items,documents,assign permission...
List related RES APITo get all List itemshttps://{site Url}/_api/web/lists/getbytitle(‘Employee Leave Requests’)/itemsTo get Item by IDhttps://{site Url}/_api/web/lists/getbytitle(‘Employee Leave...
View Article