Microsoft ASP.Net
-
Rename a Sharepoint Web Application
Must be done in Sharepoint Management Shell (Powershell)
$WebApp = SPWebApplication | where {$_.Name -match "OldWebAppName"}$WebApp.Name ="NewWebAppName"$WebApp.Update()# This bit is just to … more
-
CKSDEV for Sharepoint 2013
https://marketplace.visualstudio.com/items?itemName=WesHackett.CKS-DevforVisualStudio2013
-
Convert EF Entity Framework or Linq to SQL
-------------------------------------------
Using code in Visual Studio
-------------------------------------------
.ToString();
.ToTraceString();
dc.GetCommand(query).CommandText
p. … more
-
Sharepoint Set Site Collection Administrator with Powershell
$siteCollectionUrl = "<my site>"$site =new-object Microsoft.SharePoint.SPSite($siteCollectionUrl)$web = $site.RootWeb$primarAdministrator = $web.EnsureUser("domain\sp_admin")$site.Owner = $ … more
-
CLONING SharePoint 2013 ENVIRONMENT
https://community.dynamics.com/ax/b/meritmatters/posts/cloning-sharepoint-2013-environment more
-
Sharepoint Deployment with Powershell
https://collab365.community/general-powershell-script-to-wsp-deployment-and-activating/
-
What is LINQ When Querying Data in C#
https://en.wikipedia.org/wiki/Language_Integrated_Query#LINQ_to_SQL_.28formerly_called_DLINQ.29 more
-
Delegates, Anonymous Method, And Lambda Expression In C#
https://www.c-sharpcorner.com/article/overview-of-delegates-anonymous-method-and-lambda-expression-in-c-sharp/
https://docs.microsoft.com/en-us/dotnet/standard/delegates-lambdas
https://docs. … more
-
Entity Framework: Code-First vs Database-First
https://www.entityframeworktutorial.net/entityframework6/introduction.aspx
-
Entity Framework Performance and What You Can Do About It
https://www.red-gate.com/simple-talk/dotnet/net-tools/entity-framework-performance-and-what-you-can-do-about-it/ more