PureSourceCode
Skip to content
PureSourceCode
All technologies, only pure source code
  • Home
  • Forum
  • Links
    • Videos
    • Contact
    • Download
  • Services
    • Azure Functions creation
    • Azure support
    • Custom software development
    • Mobile applications
  • Shop
  • Register
  • Profile
    • User Blogs
    • Submit New Blog Post
    • My Profile
    • Search Users
    • Newsletter
    • Compare
    • Wishlist
    • Cart
    • Checkout
    • My orders
  • Groups
    • Group Wall
    • Users Map
    • Write a post
    • Event Sites & Locations
    • Events
    • Booking
    • Submit Event
    • Performers
    • User Profile
    • Event Types
Homepage
.NET
.NET General

Category: .NET General

Connect web application to PowerBI
.NET Core .NET General C#
54321
0 (0 votes)
16
Connect web application to PowerBI
Enrico4 months ago1

How to connect a web application to PowerBI to give users a unique experience across a website using the PowerBI APIs

powerbi
Read more

Share

  • Facebook
  • Twitter
  • Google+
  • LinkedIn
  • Pinterest
Test our code with json
.NET .NET Core .NET General C# Testing
54321
0 (0 votes)
10
Test our code with json
Enrico5 months ago0

Test Driven Development (TDD) helps you to validate your code but something you need to check some result from a json file. Here my solution

azure-functions, json, mstest, nunit, tdd, unit-test
Read more

Share

  • Facebook
  • Twitter
  • Google+
  • LinkedIn
  • Pinterest
Adding Swagger to Web API project
.NET General
54321
0 (0 votes)
9
Adding Swagger to Web API project
Enrico2 years ago2

Adding Swagger to your Web API project does not replace ASP.NET Web API help pages. Or maybe yes? Here how to implement Swagger in your apps

swagger, swagger-ui, webapi
Read more

Share

  • Facebook
  • Twitter
  • Google+
  • LinkedIn
  • Pinterest
.NET General
54321
0 (0 votes)
1
The Last Slice: challenge
Enrico3 years ago0

Beat challenge 1 (download the game, change the code) here. Then beat challenge 2. First five to beat challenge 3 win $10,000 USD each. No joke. Challenge 1 This is…

Read more

Share

  • Facebook
  • Twitter
  • Google+
  • LinkedIn
  • Pinterest
.NET General
54321
0 (0 votes)
3
Happy 15th Birthday .NET!
Enrico4 years ago0

Today marks the 15th anniversary since .NET debuted to the world. On February 13th, 2002, the first version of .NET was released as part of Visual Studio.NET. It seems just…

Read more

Share

  • Facebook
  • Twitter
  • Google+
  • LinkedIn
  • Pinterest
.NET General
54321
0 (0 votes)
0
It’s a Good Day to Be a C# Developer
Enrico4 years ago0

Recently at Connect(), Microsoft made a slew of new announcements. First, the public availability of Visual Studio 2017 Release Candidate. This just isn’t a new version of the signature developer…

Read more

Share

  • Facebook
  • Twitter
  • Google+
  • LinkedIn
  • Pinterest
.NET General C#
54321
0 (0 votes)
1
Dijkstra's Algorithm in C# with Generics
Enrico5 years ago0

I recently needed to to implement a shortest-path algorithm (to identify preferred domain controllers using site link costs) and I found Dijkstra’s Algorithm Path class using System; using System.Collections.Generic; using…

Read more

Share

  • Facebook
  • Twitter
  • Google+
  • LinkedIn
  • Pinterest
.NET General C#
54321
0 (0 votes)
9
DistinctBy in Linq (Find Distinct object by Property)
Enrico5 years ago0

public class Size { public string Name { get; set; } public int Height { get; set; } public int Width { get; set; } } Consider that we have…

Read more

Share

  • Facebook
  • Twitter
  • Google+
  • LinkedIn
  • Pinterest
.NET General
54321
0 (0 votes)
3
Data and data access technologies
Enrico5 years ago0

In my previous post I spoke about key layers of distributed applications. Now we will go through the most crucial layer of any distributed application, the data layer. In this…

Read more

Share

  • Facebook
  • Twitter
  • Google+
  • LinkedIn
  • Pinterest
.NET General
54321
0 (0 votes)
3
Key layers of distributed applications
Enrico5 years ago0

Every application that is going to be used by end users should be designed appropriately as users are expecting to process information from various data sources that might be geographically…

Read more

Share

  • Facebook
  • Twitter
  • Google+
  • LinkedIn
  • Pinterest
.NET General
54321
0 (0 votes)
0
Remove line numbers from code
Enrico5 years ago1

Often you copy from a site some code but it has line numbers and you have to spend some times to remove them. With my simple tool on line, you…

Read more

Share

  • Facebook
  • Twitter
  • Google+
  • LinkedIn
  • Pinterest
.NET General C#
54321
0 (0 votes)
2
Throw vs Throw e
Enrico5 years ago0

Some people asked me the different between those two following code: Code 1 try { ... } catch (Exception ex) { throw ex; } Code 2 try { ... }…

Read more

Share

  • Facebook
  • Twitter
  • Google+
  • LinkedIn
  • Pinterest
.NET General C#
54321
0 (0 votes)
1
C# Faster way to truncate a string
Enrico5 years ago0

Very often I found this problem and now I got a solution! I’ve compared some methods and I was decided which one. But I verified time (if you want to…

Read more

Share

  • Facebook
  • Twitter
  • Google+
  • LinkedIn
  • Pinterest
.NET General C#
54321
0 (0 votes)
4
Calculate the execution time of a method
Enrico5 years ago0

I found a simple code to know the execution time of a method. First of all you have to import the following namespace: using System.Diagnostics; Then you use Stopwatch to…

Read more

Share

  • Facebook
  • Twitter
  • Google+
  • LinkedIn
  • Pinterest
.NET General C#
54321
0 (0 votes)
8
Implementing the Inversion of Control Pattern in C#
Enrico5 years ago0

In my previous post I spoke about the first principle of SOLID. In this post I explain last two principle. I hope it will be clear enough. Dependency Inversion Principle…

Read more

Share

  • Facebook
  • Twitter
  • Google+
  • LinkedIn
  • Pinterest
.NET General
54321
0 (0 votes)
21
Design, Source and Split tabs are missing in Visual Studio 2015?
Enrico5 years ago3

If the HTML file is in Solution Explorer, then right-click and select “Open With”. Otherwise open it with Open File dialog, but click the small dropdown arrow in the Open…

Read more

Share

  • Facebook
  • Twitter
  • Google+
  • LinkedIn
  • Pinterest
.NET General
54321
0 (0 votes)
3
Visual Studio 2015: upgrade all NuGet packages at one time
Enrico5 years ago0

Open the Package Manager Console and use the Update-Package cmd-let to update all packages. If this doesn’t work, you have other two solution. Always in Package Manager Console you type…

Read more

Share

  • Facebook
  • Twitter
  • Google+
  • LinkedIn
  • Pinterest
Universal Windows app samples
.NET General Universal Windows App
54321
0 (0 votes)
0
Universal Windows app samples
Enrico5 years ago0

On GitHub Microsoft have published a lot of examples for Universal Apps: the link is https://github.com/Microsoft/Windows-universal-samples This repo contains the samples that demonstrate the API usage patterns for the Universal…

development, platform, samples
Read more

Share

  • Facebook
  • Twitter
  • Google+
  • LinkedIn
  • Pinterest
.NET General Developers
54321
0 (0 votes)
0
Windows 10: Changing Paradigms
Enrico5 years ago1

Windows 10 is the main discussion topic in the online development communities. This new operating system that is currently in the technical preview (and available through the Microsoft insider program)…

Read more

Share

  • Facebook
  • Twitter
  • Google+
  • LinkedIn
  • Pinterest
.NET General
54321
0 (0 votes)
1
Download ReportViewer 2010, ReportViewer 11 and SQLSysClrTypes
Enrico6 years ago0

Have you tried to install ReportViewer on a server? If you as me receive a similar error, I have a solution. When you have to install the Report Viewer on…

Read more

Share

  • Facebook
  • Twitter
  • Google+
  • LinkedIn
  • Pinterest
.NET General Visual Basic
54321
0 (0 votes)
2
Encrypting QueryStrings with .NET
Enrico6 years ago0

Once upon a time in the tech world, obscurity was security – this being most true in the early years of the industry, when there were gaping holes in privacy…

Read more

Share

  • Facebook
  • Twitter
  • Google+
  • LinkedIn
  • Pinterest
Log record changes in SQL server in an audit table
.NET General Microsoft
54321
0 (0 votes)
7
Log record changes in SQL server in an audit table
Enrico7 years ago1

How to implement a log record changes in SQL server in an audit table and Entity Framework. This is the easy explanation and the code

entity-framework
Read more

Share

  • Facebook
  • Twitter
  • Google+
  • LinkedIn
  • Pinterest

PSC Search

Search for:

Ads

Meta

  • Register
  • Log in
  • Entries feed
  • Comments feed
  • WordPress.org

Tags

accounting-software agile alexa android apps artificial-intelligence azure azure-devops azure-functions bill-gates dotnet entity-framework entity-framework-core fsharp function games github google-play identityserver4 installer integration invoices ios iPhone javascript linux microsoft-excel ms-edge netcore packages password Progressive-Web-Apps pwa security source-generators start tdd tools update website windows10 windows10x xamarin-form xbox xbox-series-s

Ads

Recent Posts

  • Windows10X is the answer to ChromeOS
  • Audit with Entity Framework Core
  • What we know about Microsoft’s new service
  • Now view Grogu in 3D
  • Don’t delete Windows10 root certificate expiring this month

Recent Comments

  • Windows10X is the answer to ChromeOS - PureSourceCode on Microsoft announces new Windows 10 Start menu design and updated Alt-Tab
  • Windows10X is the answer to ChromeOS - PureSourceCode on What we know about Microsoft’s new service
  • Windows10X is the answer to ChromeOS - PureSourceCode on Windows 10X is arriving next year
  • Audit with Entity Framework Core - PureSourceCode on Log record changes in SQL server in an audit table
  • Audit with Entity Framework Core - PureSourceCode on Entity Framework Core and calling a stored procedure

Ads

Archives

  • January 2021
  • December 2020
  • November 2020
  • October 2020
  • September 2020
  • August 2020
  • July 2020
  • June 2020
  • May 2020
  • April 2020
  • March 2020
  • November 2019
  • September 2019
  • August 2019
  • July 2019
  • May 2019
  • April 2019
  • March 2019
  • February 2019
  • January 2019
  • December 2018
  • November 2018
  • October 2018
  • August 2018
  • June 2018
  • May 2018
  • March 2018
  • February 2018
  • January 2018
  • December 2017
  • November 2017
  • October 2017
  • August 2017
  • July 2017
  • June 2017
  • May 2017
  • April 2017
  • March 2017
  • February 2017
  • January 2017
  • December 2016
  • November 2016
  • October 2016
  • September 2016
  • August 2016
  • July 2016
  • June 2016
  • May 2016
  • April 2016
  • March 2016
  • February 2016
  • January 2016
  • December 2015
  • November 2015
  • October 2015
  • September 2015
  • August 2015
  • July 2015
  • June 2015
  • May 2015
  • April 2015
  • March 2015
  • February 2015
  • January 2015
  • November 2014
  • September 2014
  • August 2014
  • July 2014
  • June 2014
  • May 2014
  • April 2014
  • September 2013

Ads

Categories

  • .NET
  • .NET Core
  • .NET General
  • Agile
  • Ajax
  • Amazon
  • Android
  • AngularJs
  • Apple
  • Apps
  • ASP.NET
  • Azure
  • Azure
  • C#
  • Developers
  • F#
  • Framework
  • Games
  • General
  • Google
  • Google
  • HTML
  • IIS
  • Internet
  • iOS
  • JavaScript
  • Linux
  • macOS
  • Microsoft
  • MVC
  • News
  • Other
  • PowerBI
  • Programming languages
  • Projects and ideas
  • R
  • React.JS
  • Security
  • SQL
  • Testing
  • Tips & tricks
  • Tools
  • TypeScript
  • Uncategorized
  • Universal Windows App
  • VB.NET
  • Visual Basic
  • Visual Studio
  • Visual Studio
  • WebAPI
  • Windows
  • Xamarin

Ads

Template MOnsters

My other sites

Pure Source Code
PSC Short Url
Quarantine Culture Club
My CV
GitHub
Bookshop
© Copyright 2021. All rights reserved.
 Tweet
 Tweet
 WhatsApp
 E-mail
 Tweet
 Tweet
 WhatsApp
 E-mail
 Tweet
 Tweet
 LinkedIn
 WhatsApp
 E-mail