Microsoft Tech Summit 2017 – Notes
MS Tech Summit 2017 (27-28 March) offered different sessions covering different topics such as : Azure, Office 365, .Net, SQL Server and Xamarin. Sessions took place in different rooms at…
SharePoint, Office 365, C#, .Net, SQL Server News, Tips, Ebooks, Events, Webinars ....etc
MS Tech Summit 2017 (27-28 March) offered different sessions covering different topics such as : Azure, Office 365, .Net, SQL Server and Xamarin. Sessions took place in different rooms at…
Indexers can use params We all know the regular indexer pattern x = something["a"] and to implement it you write: The cool thing is you can have both indexers in…
Develop .NET Framework Apps with Windows Server Core Containers and .NET Core with Linux Containers with the productivity you’d expect from Visual Studio, while maintaining the native Docker experience. Get…
Announcing .NET Core tools are 1.0! Check out the changes in .NET Core tooling such as csproj and the new dotnet commands. Get a recap of recent .NET Core news.…
Visual Studio 2017 aims to make C# development more pleasant and productive than ever. Kasey and Mads take you on a tour of new refactorings, improved navigation, and code style…
In this brief overview, we present some of the new productivity features to come for Microsoft .NET in Visual Studio 2017, including improvements in debugging, unit testing, live code analysis,…
Microsoft .NET Core 1.1 includes support for additional Linux distributions, has many updates, and is the first Current release. Watch a quick command-line interface (CLI) demo on Linux of how…
The lines are getting increasingly blurred between the web and native apps. Operating systems are able to execute JavaScript from a remote web server, web apps are able to reach…
Paging through a query result is the process of returning the results of a query in smaller subsets of data, or pages. This is a common practice for displaying results…
Retrieving data using a DataReader involves creating an instance of the Command object and then creating a DataReader by calling Command.ExecuteReader to retrieve rows from a data source. The following example illustrates using a DataReader where readerrepresents a valid DataReader and command represents…
Find out about the different ways you can use Entity Framework to access a relational database from your .NET application. Presented By: Rowan Miller
public static bool IsChrome(HttpRequest Request) { try { return (Request.UserAgent.Contains("Chrome")); } catch (Exception exp) …
Analyze Navigate Backward Shift+Alt+3 Navigate Forward Shift+Alt+4 Startwith Current Project Shift+Alt+F5 Architecture New Diagram Ctrl+\, Ctrl+N Architecture Context Menus Add Node Ins Both Dependencies B Incoming Dependencies I Outgoing Dependencies…
Hi Guys, if you need to test using C# if a file exist in a certain SharePoint document library ? You can use SharePoint Client Object Modal. Here, I wrote…
Hi guys, If you also have the requirement to programatically go to an anchor location, you can use the following line of code I had to use this, to…
Hi Guys, If you need to test the email sending process from your asp.net application in local dev boxes (i.e. where you can’t connect to an smtp server), don’t worry,…
Hi Guys, In this article we will review how to upload files to SharePoint using the default SharePoint Web service http://site/_vti_bin/copy.asmx. For this example, we will use a C# console…