Showing category results for Premier Developer

Dec 20, 2016
Post comments count0
Post likes count0

Dissecting the ActionBlock: a Short Story About a Nasty Deadlock

Sergey Tepliakov

I think almost every project in the real world uses some form of producer-consumer queue. The idea behind this problem is very simple. Application needs to decouple consumers of some data from the logic that processes it. Consider, for instance, the thread pool from the CLR: application can schedule some work using ThreadPool.QueueUserWorkItem and ...

seteplia
Dec 20, 2016
Post comments count0
Post likes count0

Dissecting the code: yet another programmer’s blog

Sergey Tepliakov

Hi everyone. My name is Sergey Tepliakov; I’m Senior Software Engineer at TSE(*) team at Microsoft. At my day-to-day job I’m working on a next-gen build engine with tons of very useful capabilities. But don’t worry, I’m not going to dig into this topic. At least for now:) Before joining Microsoft 2 years ago, I’ve been a Microsoft C# MVP. And here ...

seteplia
Dec 19, 2016
Post comments count0
Post likes count0

How to Import Related Data into Dynamics 365

Developer Support

In this post, Senior ADM Justin Scott walks us through how to maintain entity/table relationships when importing data into Dynamics 365. A recent project I was on involved bringing over customer and contact information from another proprietary CRM application. Being newer to the Dynamics platform, one challenge was to figure out how to maintain ...

Team
Nov 1, 2016
Post comments count0
Post likes count0

How to work around an issue with VSTS build agents for the Mac, when building Xamarin Forms apps for iOS

Monu Bambroo

In a recent post from his blog, Premier Developer Consultant Jim Blizzard shows how to work around a potential issue you might run into when building a Xamarin Forms app for iOS on your Mac. Heads up if you’re running VSTS build agent on a Mac for Xamarin.Forms iOS projects. You may see this error message from the NuGet package restore step: "To ...

TeamVSTSxamarin
Oct 17, 2016
Post comments count0
Post likes count0

New project type has XAML forms by default

Pam Lahoud

Recently on his blog, Premier Developer Consultant Joe Healy highlighted some new templates available to Xamarin developers in Visual Studio.  See below for the full article, but also be sure to check out Joe’s DevFish blog for lots more great content! Xamarin has some great documentation. The article at [ https://developer.xamarin.com/guides/xa...

TeamVisual Studioxamarin
Oct 7, 2016
Post comments count0
Post likes count0

Loading paged and related data from MS Graph API into Power BI using a recursive Power Query function

Developer Support

Senior Application Development Manager, Robert Reilly, recently came upon a situation where he needed to provide enhanced, adhoc, and drillable reporting based on a mix of data sources.  Leveraging Microsoft Graph API for customer data and using Power BI, he explores the power of using these technologies together to build a solution and shared his ...

TeamPowerBI
Oct 3, 2016
Post comments count0
Post likes count0

Referencing a PCL project in both ASP.NET Core and Xamarin Forms

Pam Lahoud

Thanks to Premier Developer Consultant Gustavo Varo for this prescriptive guidance on cross-platform development with Xamarin and ASP.NET Core. Back in March while working with Xamarin Forms and ASP.NET Core, I identified the need of sharing some code between both projects. My very first idea was to create a PCL (Portable Class Library) project ...

Team.NETasp.net
Sep 27, 2016
Post comments count0
Post likes count0

Using Azure AD to authenticate public clients to SQL Azure

Monu Bambroo

In a recent post from his blog, Premier Developer Consultant Marius Rochon shows how to use Azure AD to authenticate public clients to SQL Azure. Azure AD enables access authorization to SQL Azure as an alternative to providing username/password information in the connection string: https://azure.microsoft.com/en-us/documentation/articles/sql-da...

TeamAzure ADAuthentication
Sep 20, 2016
Post comments count0
Post likes count0

Docker Blog Series Part 1- Building ASP.NET Core Application using Docker For Windows.

Monu Bambroo

In a recent post from his blog, Premier Developer Consultant Monu Bambroo  shows how to build ASP.NET Core Application using Docker For Windows. Applications and their set of user expectations continue to evolve over the last few years. We have seen various trends like microservices and containerization become mainstream. The enterprises are...

Team
Sep 20, 2016
Post comments count0
Post likes count0

Using Redis as ADAL token cache

Monu Bambroo

In a recent post from his blog, Premier Developer Consultant Marius Rochon  shows how to use Redis as ADAL token cache. Here is a sample TokenCache class implementation using Redis for use with the Active Directory Access Library (ADAL). The library is used for obtaining tokens from Azure AD or AD FS using the OAuth2 protocol. Continue reading ...

TeamADALREDIS