Recently, at GopherCon, Microsoft shared its work for Go community and announced its contributions to Project Athens and participation in GopherSource.
source https://www.c-sharpcorner.com/news/microsoft-announces-project-athens-and-gophersource-for-the-go-community
Friday, August 31, 2018
Communication Between Angular Components
As we know Angular is a component-based framework, so, it is mandatory for us that we easily communicate between these components. In this article, I am going to explain that how can we pass data from one component to another component.
source https://www.c-sharpcorner.com/article/communication-between-angulars-components/
source https://www.c-sharpcorner.com/article/communication-between-angulars-components/
Machine Learning With SQL Server 2017 And Python
We will cover the steps for installing SQL Server 2017 in Windows system with Machine Learning Server (In-Database) with Python & R language. Then we call the Python scripts from SQL server and get SQL data from Python also. Later we create a machine learning model for SQL server and train the model with Python scripts. Finally, we will predict a result from sample data.
source https://www.c-sharpcorner.com/article/machine-learning-with-sql-server-2017-and-python/
source https://www.c-sharpcorner.com/article/machine-learning-with-sql-server-2017-and-python/
Pipes In Angular 6
In this article, we are going to learn about Pipes in Angular 6.
source https://www.c-sharpcorner.com/article/pipes-in-angular-6/
source https://www.c-sharpcorner.com/article/pipes-in-angular-6/
Populate Picker Using MVVM
In this article, I’m going to show you how to populate the picker view using MVVM, Model View View-Model (MVVM) is a UI Based Design Pattern. The main object of MVVM is to provide a rich UI, testability features, code more reusability and complex data binding.
source https://www.c-sharpcorner.com/article/populate-picker-using-mvvm/
source https://www.c-sharpcorner.com/article/populate-picker-using-mvvm/
Publish Your Own Package To NPM
Ever wondered if you can create your own Angular packages and can download them in your project anytime? This can be very useful if you require any module every time you create an Angular application.
source https://www.c-sharpcorner.com/article/publish-your-own-package-to-npm/
source https://www.c-sharpcorner.com/article/publish-your-own-package-to-npm/
Query Intersect Entity And Its Attribute - Sample Code
When we setup system N:N relationship between two entities an intersect entity is created internally, which is not accessible directly. Let’s say we have N:N relationship between case and workorder entity.
source https://www.c-sharpcorner.com/article/query-intersect-entity-and-its-attribute-sample-code/
source https://www.c-sharpcorner.com/article/query-intersect-entity-and-its-attribute-sample-code/
Using Caller Information Attributes In C#
Caller Information attributes are newly introduced in Framework 4.0. There are three attributes which are more helpful in tracing, debugging and diagnosis the application.
source https://www.c-sharpcorner.com/article/using-caller-information-attributes-in-c-sharp/
source https://www.c-sharpcorner.com/article/using-caller-information-attributes-in-c-sharp/
How To Check If SharePoint Feature Is Activated In All The Site Collections Or Not Using PowerShell
Let us see how to check if the SharePoint feature is activated In all the Site Collection or not using PowerShell. A feature is a major component in the development and deployment of the solution in the SharePoint environment and is composed as an XML file.
source https://www.c-sharpcorner.com/Blogs/how-to-check-the-sharepoint-feature-activated-in-all-the-site-collection-or-not-using-powershell
source https://www.c-sharpcorner.com/Blogs/how-to-check-the-sharepoint-feature-activated-in-all-the-site-collection-or-not-using-powershell
Babel 7 Released
Babel has finally released Babel 7 after a wait of almost 2 years. The new version is faster, has an upgrade tool, JS configs, config “overrides”, and more.
source https://www.c-sharpcorner.com/news/babel-7-recently-released
source https://www.c-sharpcorner.com/news/babel-7-recently-released
GitHub Introduces Project Paper Cuts To Fix Not So Important - Important Issues
In a bid to reassure the existing user base and to reinforce the quality of the workspace, GitHub announced on Tuesday a refining addition to the platform, Project Paper Cuts. The new project aims at fixing smaller bits of code and related UI issues that users face during any project development workflow.
source https://www.c-sharpcorner.com/news/github-introduces-project-paper-cuts-to-fix-not-so-important-important-issues
source https://www.c-sharpcorner.com/news/github-introduces-project-paper-cuts-to-fix-not-so-important-important-issues
Thursday, August 30, 2018
AES Encryption In C#
AesManaged class is a managed implementation of AES algorithm. This article demonstrates how to use AesManaged class to apply AES algorithm to encrypt and decrypt data in .NET and C#.
source https://www.c-sharpcorner.com/article/aes-encryption-in-c-sharp/
source https://www.c-sharpcorner.com/article/aes-encryption-in-c-sharp/
How To Improve Execution Performance Of An Application
For every application could be small or medium or a big enterprises application the major non-functional requirement will be a good code performance. In some cases, companies will hire a special team or outsource to improve their existing application's performance.
source https://www.c-sharpcorner.com/article/how-to-improve-applications-execution-performance/
source https://www.c-sharpcorner.com/article/how-to-improve-applications-execution-performance/
Streaming In ASP.NET Core SignalR
In this post, we’ll see how to stream the data in ASP.NET Core SignalR. With ASP.NET Core 2.1 released, SignalR now supports streaming content.
source https://www.c-sharpcorner.com/article/streaming-in-asp-net-core-signalr2/
source https://www.c-sharpcorner.com/article/streaming-in-asp-net-core-signalr2/
Leadership Challenge 008 - Lead Like The Great Conductors
I have come across a great video by Itay Talgam – Lead like the great conductors. There are some great take-aways from all the different examples. Consider how to lead within your own world.
source https://www.c-sharpcorner.com/article/leadership-challenge-008-lead-like-the-great-conductors/
source https://www.c-sharpcorner.com/article/leadership-challenge-008-lead-like-the-great-conductors/
Call Static Class Constructor
This blog explains How we can explicitly call the Static class constructor.
source https://www.c-sharpcorner.com/Blogs/call-static-class-constructor2
source https://www.c-sharpcorner.com/Blogs/call-static-class-constructor2
Indexes In SQL Server
In this post, we will discuss how to work with Indexes in SQL and explain the concepts with an example in a simple way. I hope this is very useful for beginners and intermediates to help them understand the basic concept.
source https://www.c-sharpcorner.com/Blogs/indexes-in-sql-server2
source https://www.c-sharpcorner.com/Blogs/indexes-in-sql-server2
Cross Domain Using CORS And JSONP
This article will cover the issues regarding cross-domain calls. what is JSONP? What is the use of JSONP? What is CORS?
source https://www.c-sharpcorner.com/Blogs/cross-domain-using-cors-and-jsonp
source https://www.c-sharpcorner.com/Blogs/cross-domain-using-cors-and-jsonp
Accessing REST API In PowerBI Report Server
The URL of the REST API service for PowerBI report server is highlighted below. This is same for SQL server Reporting Services 2016 onwards.
source https://www.c-sharpcorner.com/Blogs/powerbi-report-server-rest-api
source https://www.c-sharpcorner.com/Blogs/powerbi-report-server-rest-api
How To Work With Views In SQL Server
In this blog, we will discuss how to work with Views in SQL Server and explain concepts with an example in a simple way. I hope this is very useful for beginners to help them understand the basic concept.
source https://www.c-sharpcorner.com/Blogs/view-in-sql-server-depth
source https://www.c-sharpcorner.com/Blogs/view-in-sql-server-depth
Manage Team Project Using Scrum Workflow Process In Visual Studio Team Service
In this article, we will learn what Scrum workflow is in VSTS and how to manage Scrum Project workflow in VSTS.
source https://www.c-sharpcorner.com/article/manage-team-project-using-scrum-workflow-process-in-visual-studio-team-service/
source https://www.c-sharpcorner.com/article/manage-team-project-using-scrum-workflow-process-in-visual-studio-team-service/
Sending Emails Using C#
In this article, I will explain how you can send mail with data using c#.
source https://www.c-sharpcorner.com/article/sending-email-using-c-sharp/
source https://www.c-sharpcorner.com/article/sending-email-using-c-sharp/
SharePoint Framework - Consume Microsoft Graph API Using MSGraphClient
In the previous article, we developed the basic SharePoint client web part which can run independently without any interaction with SharePoint. Here, we will explore to consume the Microsoft Graph in SharePoint Framework client side web parts.
source https://www.c-sharpcorner.com/article/sharepoint-framework-consume-microsoft-graph-api-using-msgraphclient/
source https://www.c-sharpcorner.com/article/sharepoint-framework-consume-microsoft-graph-api-using-msgraphclient/
Uploading Data To Dynamics 365 Using Microsoft Flow
In this article, we will discuss how we can upload data from an Excel File to Dynamics 365 CE using Microsoft Flow.
source https://www.c-sharpcorner.com/article/uploading-data-to-dynamics-365-using-microsoft-flow/
source https://www.c-sharpcorner.com/article/uploading-data-to-dynamics-365-using-microsoft-flow/
Power Of JSON/jQuery
In this article, you see the real power of jQuery and JSON. I will show you how you can get the values of all the fields on the page in a single line and insert all the fields in a single query dynamically without knowing and writing the table column name.
source https://www.c-sharpcorner.com/article/power-of-jsonjquery/
source https://www.c-sharpcorner.com/article/power-of-jsonjquery/
VMware Announces Amazon RDS On VMware
Amazon Web Services and VMware have tied-up to provide - Amazon Relational Database Service (Amazon RDS) on VMware, publicly announced by both at VMworld 2018 meet, Las Vegas.
source https://www.c-sharpcorner.com/news/vmware-announces-amazon-rds-on-vmware
source https://www.c-sharpcorner.com/news/vmware-announces-amazon-rds-on-vmware
Get Deeper Insights With Google Play Console Acquisition Reports
Google has recently updated their Play Console acquisition reports to help the users by giving them new, and deeper insights.
source https://www.c-sharpcorner.com/news/get-deeper-insights-with-google-play-console-acquisition-reports
source https://www.c-sharpcorner.com/news/get-deeper-insights-with-google-play-console-acquisition-reports
Wednesday, August 29, 2018
How To Implement AutoMapper In ASP.NET Core MVC Application
In a nutshell, AutoMapper is an object-object mapper. It transforms the input object of one type into an output object of another type.
source https://www.c-sharpcorner.com/article/how-to-implement-automapper-in-asp-net-core-mvc-application/
source https://www.c-sharpcorner.com/article/how-to-implement-automapper-in-asp-net-core-mvc-application/
Blockchain Basics - Node
When we are talking about Blockchain, we describe it with a lot of new terms, such as Node, Full Node, Light Node, Miner, etc. Without understanding them and telling the difference, you will not be able to understand Blockchain. This article is to help readers understand the aforementioned terms.
source https://www.c-sharpcorner.com/article/blockchain-basic-node/
source https://www.c-sharpcorner.com/article/blockchain-basic-node/
Command Design Pattern
Command design pattern is part of Behavioral Design Patterns from Gang of Four(GoF) Design Patterns. Behavioral Design patterns concerned with communication Between Objects. It is used to cover/envelop a request as an object and pass to a User. A user doesn’t know how to service the request but use encapsulated command object to perform the action.
source https://www.c-sharpcorner.com/article/command-design-pattern/
source https://www.c-sharpcorner.com/article/command-design-pattern/
DBCC CLONEDATABASE And Query Store
Anyway, by now, you probably have seen documentation on Query Store and DBCC Clonedatabase. Query Store, introduced in SQL Server 2016, is considered the “black box” or “flight recorder” of queries. It retains a history of executed queries, including run-time statistics as well as execution plans from query store enabled databases. This flight recorder helps to diagnosis and pinpoint query performance issues.
source https://www.c-sharpcorner.com/article/dbcc-clonedatabase-and-query-store/
source https://www.c-sharpcorner.com/article/dbcc-clonedatabase-and-query-store/
Error While Enabling The Rating Features On List Or Library
We got a call from the user that he is unable to enable the rating features on list/libraries, he tried with different site collection but same error. Actually, when you are trying to enable the rating feature on your list, when you go to the list settings > Rating Settings > Check “Yes” Radio Button > Press OK.
source https://www.c-sharpcorner.com/article/error-while-enabling-the-rating-features-on-list-or-library/
source https://www.c-sharpcorner.com/article/error-while-enabling-the-rating-features-on-list-or-library/
External Tables In SQL Server 2016 Or 2017 And Working With PolyBase
We will see how to create an external data source in SQL Server 2016/2017 and then we will create an external table with Parquet file format. Later, we will push the data to the external table. Automatically, we get the data in our mapped Parquet file of Blob storage.
source https://www.c-sharpcorner.com/article/external-tables-in-sql-server-2016-or-2017-and-work-with-polybase/
source https://www.c-sharpcorner.com/article/external-tables-in-sql-server-2016-or-2017-and-work-with-polybase/
How To Make Your Home Smart With The Help Of Google Home
Do you often forget to switch off the fan when you leave the room? Or forget to turn off the lights before crawling into your bed? Or cannot find the remote when you need to adjust the temperature of your air-conditioner? These are the moments when we miss the presence of some sort of magic to automatically do these tasks for us. And this is where Google’s offering, the Google Home is trying to make a niche for itself. It can control a lot of things in your home, including thermostats, air-conditioners, lights, and garage doors amongst others, through the help of Google Assistant.
source https://www.c-sharpcorner.com/article/how-to-make-your-home-smart-with-the-help-of-google-home/
source https://www.c-sharpcorner.com/article/how-to-make-your-home-smart-with-the-help-of-google-home/
Solution Deployment Failed On One Or More Servers In Farm
When deploying a solution in multi-server SharePoint farm, it did not deploy to all servers in the farm. During deployment, it misses one or more servers and status of the solution "Not Deployed".
source https://www.c-sharpcorner.com/article/solution-deployment-failed-on-one-or-more-servers-in-farm/
source https://www.c-sharpcorner.com/article/solution-deployment-failed-on-one-or-more-servers-in-farm/
What Is Automatic Tuning In Azure SQL Database
Microsoft has long given us DBA tools and suggestions to help tune databases, to fix queries with indexes, and many times they were of questionable merit. We have all seen the dreaded dta_index names in a database and rolled our eyes knowing that sometimes these indexes are not what is needed. While the Database Tuning Advisor, has gotten better over time it is still not a tool more senior DBAs use. Microsoft made big steps in helping DBAs with performance with the introduction of Query Store in both Azure SQL Database and SQL Server 2016. Query Store collects execution and run-time performance information. Microsoft has taken an additional leap with the introduction of Automatic Tuning. Automatic Tuning is an intelligent performance tuning service which is the results of machine learning processes being applied directly to data generated by Query Store.
source https://www.c-sharpcorner.com/article/what-is-automatic-tuning-in-azure-sql-database/
source https://www.c-sharpcorner.com/article/what-is-automatic-tuning-in-azure-sql-database/
Why Investing In Cloud Engineering Is Good For Your Company
Adobe, the maker of the creative software suite, saw a three-fold increase in stock value after introducing its cloud-based subscription business model. Heineken was able to reach 10.5 million customers on a global scale swiftly using cloud services. Salesforce, Amazon, Microsoft, why, even Google - every IT behemoth you can think now lives on the cloud. Forrester expects the public cloud platform will size up to $178 Billion in 2018.
source https://www.c-sharpcorner.com/article/why-investing-in-cloud-engineering-is-good-for-your-company/
source https://www.c-sharpcorner.com/article/why-investing-in-cloud-engineering-is-good-for-your-company/
Working With SQLite In Xamarin.Forms Application
In this article, we will learn how to create a simple Registration form and save the data in SQLite and retrieve this data.
source https://www.c-sharpcorner.com/article/working-with-sqlite-in-xamarine-forms-application/
source https://www.c-sharpcorner.com/article/working-with-sqlite-in-xamarine-forms-application/
Angular - Request Life Cycle
The purpose of this article is to explain how your request gets processed in Angular 4, what is the entry point for all Angular requests.
source https://www.c-sharpcorner.com/Blogs/angular-4-request-life-cycle
source https://www.c-sharpcorner.com/Blogs/angular-4-request-life-cycle
Triangle/Diamond Pattern Programming In C#
In almost every interview, the interviewer asks you to write a program to print diamond/ triangle with star/ number.
source https://www.c-sharpcorner.com/Blogs/triangle-diamond-pattern-programming-in-c-sharp
source https://www.c-sharpcorner.com/Blogs/triangle-diamond-pattern-programming-in-c-sharp
How To Pass Value From Parent To Child Component
During development, we normally face situations where we need to pass the value from one component to another. Angular has provided various ways to pass such values.
source https://www.c-sharpcorner.com/Blogs/how-to-pass-value-from-parent-to-child-component
source https://www.c-sharpcorner.com/Blogs/how-to-pass-value-from-parent-to-child-component
SharePoint Modern UI - File Viewer Webpart
In this blog, you will see how to use File Viewer webpart in Modern SharePoint site page.
source https://www.c-sharpcorner.com/Blogs/sharepoint-modern-ui-file-viewer-webpart
source https://www.c-sharpcorner.com/Blogs/sharepoint-modern-ui-file-viewer-webpart
How To Enable Or Disable Comments In A Modern SharePoint Site Page
In this blog, you will see how to enable or disable comments in Modern SharePoint Site Page.
source https://www.c-sharpcorner.com/Blogs/how-to-enable-or-disable-comments-in-modern-sharepoint-site-page
source https://www.c-sharpcorner.com/Blogs/how-to-enable-or-disable-comments-in-modern-sharepoint-site-page
Tuesday, August 28, 2018
Get The SharePoint Online Sub-Sites Using PowerShell
Here, we will learn how to populate the SharePoint sub-sites information’s like Title, URL, Template, etc. in SharePoint Online. By default, SharePoint Online Management Shell doesn’t have the cmdlets called Get-SPOWeb. So, we need to find a SPOWeb module to import to the PowerShell.
source https://www.c-sharpcorner.com/Blogs/get-the-sharepoint-online-subsites-using-powershell
source https://www.c-sharpcorner.com/Blogs/get-the-sharepoint-online-subsites-using-powershell
Add Site Collection Administrator Using Powershell In SharePoint Online
This blog may help you to understand how to add site collection administrator using SharePoint Online Management Shell.
source https://www.c-sharpcorner.com/Blogs/add-site-collection-administrator-using-powershell-in-sharepoint-online
source https://www.c-sharpcorner.com/Blogs/add-site-collection-administrator-using-powershell-in-sharepoint-online
How To Change The Favicon In SharePoint Online
In this blog, we will learn how to change the favicon in the Sharepoint Online environment, so before proceeding, let us know the definition of favicon.
source https://www.c-sharpcorner.com/Blogs/how-to-change-the-favicon-in-the-sharepoint-online
source https://www.c-sharpcorner.com/Blogs/how-to-change-the-favicon-in-the-sharepoint-online
ASP.NET MVC Project Integration With Github
In this article, I will explain how to integrate ASP.NET MVC project with GitHub.
source https://www.c-sharpcorner.com/article/asp-net-mvc-project-integration-with-github/
source https://www.c-sharpcorner.com/article/asp-net-mvc-project-integration-with-github/
Content Type Hub In SharePoint Online
In this article, I am going to explain how we can use the content type hub in SharePoint Online.
source https://www.c-sharpcorner.com/article/content-type-hub-in-sharepoint-online/
source https://www.c-sharpcorner.com/article/content-type-hub-in-sharepoint-online/
Getting Started With SignalR Using ASP.NET Core - Using Message Pack
In this article, We'll learn how to use message pack protocol with SignalR using ASP.NET Core and Angular. The message pack is used for binary data transmission over the protocol and binary data is light-weight in compare of text data.
source https://www.c-sharpcorner.com/article/getting-started-with-signalr-using-aspnet-core-using-message-pack/
source https://www.c-sharpcorner.com/article/getting-started-with-signalr-using-aspnet-core-using-message-pack/
How A React Application Gets Loaded Or Started
We know that we can run any React application by "npm start" but which page renders first? In this article, I am going to explain that how a React application gets started.
source https://www.c-sharpcorner.com/article/how-react-application-gets-loaded-or-started/
source https://www.c-sharpcorner.com/article/how-react-application-gets-loaded-or-started/
Overview Of SharePoint Migration Limitations
Versioning enables you to store, track, and restore items in a list and files in a library as they are changed. The SharePoint migration migrates the currently used version of items and files. The other versions are not migrated.
source https://www.c-sharpcorner.com/article/overview-of-sharepoint-migration-limitations/
source https://www.c-sharpcorner.com/article/overview-of-sharepoint-migration-limitations/
Searching The Index In Azure Portal And Implementation Using Visual Studio
In This Article we will see how to do searching in Azure portal and searching implementation through visual studio.
source https://www.c-sharpcorner.com/article/part-3-searching-the-index/
source https://www.c-sharpcorner.com/article/part-3-searching-the-index/
Reactive Forms And Validation In Angular With Typescript
This article will give you extensive information about Reactive Forms or Model Driven Forms and how to create the form using Reactive Forms approach and implement validation with Angular 6 and TypeScript.
source https://www.c-sharpcorner.com/article/reactive-forms-and-validation-in-angular-with-typescript/
source https://www.c-sharpcorner.com/article/reactive-forms-and-validation-in-angular-with-typescript/
Routing And WildCard Route In Angular
In this article, we will learn about Routing and Wild Card Routes in Angular v6. We will learn from the beginning, i.e., how we set up Angular 6 environment in VS Code.
source https://www.c-sharpcorner.com/article/routing-and-wildcard-route-in-angular-6/
source https://www.c-sharpcorner.com/article/routing-and-wildcard-route-in-angular-6/
TransmogrifAI Now A Part Of The Open Source Community
As a solution for the scarcity of enterprise-scale machine learning systems, Salesforce Engineering has come up with TransmogrifAI (pronounced trans-mog-ri-phi)?.
source https://www.c-sharpcorner.com/news/transmogrifai-now-a-part-of-the-open-source-community
source https://www.c-sharpcorner.com/news/transmogrifai-now-a-part-of-the-open-source-community
Significance Of Custom Table In Angular
Let’s consider we are developing an application which is having multiple pages with grids. You can design as a component and use it as child view.
source https://www.c-sharpcorner.com/article/significance-of-custom-table-in-angular/
source https://www.c-sharpcorner.com/article/significance-of-custom-table-in-angular/
Monday, August 27, 2018
How To Split/Separate Numbers And Alphabets From Alpha Numeric String In SQL Server
Today I am going to Explain how you can split/separate numbers and alphabets from an alphanumeric string in SQL server. When you work with any database related application either that is in web or windows application sometime based on your requirement you have alphanumeric string and you just want only numbers from that string and want to use that numbers in your entire application as per your need like either use like as a variable, parameter or also use like as a string concatenation.
source https://www.c-sharpcorner.com/Blogs/how-to-splitseparate-numbers-and-alphabets-from-alpha-numeric-string-in-sql-server
source https://www.c-sharpcorner.com/Blogs/how-to-splitseparate-numbers-and-alphabets-from-alpha-numeric-string-in-sql-server
How To Convert Image To The Base64 String
In this blog, I am going to explain you the below two concepts. I will be using jQuery, AJAX, SQL Server, and ASP.NET technologies. 1. How to convert an image to the base64 string and save to the database. 2. Display image on the webpage from the base64 string.
source https://www.c-sharpcorner.com/Blogs/how-to-convert-image-to-the-base64-string
source https://www.c-sharpcorner.com/Blogs/how-to-convert-image-to-the-base64-string
Scopes In Angular
$Scope is a core fundamental of an Angular app. Scopes of the Angular app refer to the model. Scopes provide bridge between the controller and the view. Just before our app renders the view to the user, the view template links to the scope, and the app sets up the DOM to notify Angular for property changes.
source https://www.c-sharpcorner.com/Blogs/scopes-in-angularjs
source https://www.c-sharpcorner.com/Blogs/scopes-in-angularjs
Get Profile Properties Used In Microsoft Office Delve Site Of A Particular User
In this blog, we will see how to get all the properties that the Microsoft Office Delve site is using for any particular user.
source https://www.c-sharpcorner.com/Blogs/get-profile-properties-used-in-delve-site-of-particular-user
source https://www.c-sharpcorner.com/Blogs/get-profile-properties-used-in-delve-site-of-particular-user
How To Display Date And Time In Duration (Such As One Hour Ago) In SQL Server
Today, in this post, I am going to explain the SQL statement which is used to to get the date and time difference in a valid format like 1 hr ago, or 30 min ago, or 1 week ago, 1 month ago, and so on.
source https://www.c-sharpcorner.com/Blogs/how-to-display-date-and-time-like-1-hr-ago-or-30-min-ago-in-sql-server
source https://www.c-sharpcorner.com/Blogs/how-to-display-date-and-time-like-1-hr-ago-or-30-min-ago-in-sql-server
Installation And Configuration Of Exchange 2019 On Core 2019
We know nowadays everything with IT is going toward Cloud Computing. But many companies preferred their Email to be on-Premise due to privacy concerns.
source https://www.c-sharpcorner.com/article/installation-and-configuration-of-exchange-2019-on-core-2019/
source https://www.c-sharpcorner.com/article/installation-and-configuration-of-exchange-2019-on-core-2019/
Create Web App In Azure
In this article, I am going to describe how to create the Web App from Azure. In a web app, we can deploy either .NET application, Java-based application, PHP based application.
source https://www.c-sharpcorner.com/article/create-web-app-in-azure/
source https://www.c-sharpcorner.com/article/create-web-app-in-azure/
Email Etiquette For Students - Part One - Choosing The Right Email Address
Over the years, I’ve seen a lot of email addresses through various event registration databases, from the emails I received especially of students. Most students use to submit their resume or application using an unprofessional email address which can have a have seriously unfortunate effects on their job search. Whenever you create a new email address, think of it as your online identity and how it will sound in 10-15 years. Think about what it says about you are as a person and a professional. Below are some of my observations and recommendations.
source https://www.c-sharpcorner.com/article/email-etiquette-for-students-part-1-choosing-the-right-email-address/
source https://www.c-sharpcorner.com/article/email-etiquette-for-students-part-1-choosing-the-right-email-address/
Overview Of Azure Logic Apps
With no code solutions being advocated and lauded these days, features like Azure Logic Apps and Microsoft Flow are the go to solutions to orchestrate a workflow of tasks that encompasses various applications. In this article, I will discuss about creating a workflow using Azure Logic Apps to keep Azure Blob Storage and a SharePoint Document Library in sync.
source https://www.c-sharpcorner.com/article/overview-of-azure-logic-apps/
source https://www.c-sharpcorner.com/article/overview-of-azure-logic-apps/
Querying Azure SQL Databases In Databricks Spark Cluster
We will see the entire steps for creating an Azure Databricks Spark Cluster and querying data from Azure SQL DB using JDBC driver. Later we will save one table data from SQL to a CSV file.
source https://www.c-sharpcorner.com/article/querying-azure-sql-databases-in-databricks-spark-cluster/
source https://www.c-sharpcorner.com/article/querying-azure-sql-databases-in-databricks-spark-cluster/
Custom Configuration Sections Using ConfigurationSection : web.config
This tutorial tells about how you can create a custom section in web.config file to keep all your module specific settings at a single place.
source https://www.c-sharpcorner.com/article/custom-configuration-sections-using-configurationsection-web-config/
source https://www.c-sharpcorner.com/article/custom-configuration-sections-using-configurationsection-web-config/
Get Option Set Value Based On Label In Microsoft Flow
In this article, we will discuss how we can get option set value in Microsoft Flow using String Map Entity.
source https://www.c-sharpcorner.com/article/get-option-set-value-based-on-label-in-microsoft-flow/
source https://www.c-sharpcorner.com/article/get-option-set-value-based-on-label-in-microsoft-flow/
Sunday, August 26, 2018
Auditing Data Changes In Microsoft SQL Server
Tracking changes in data over time is a common problem, and deciding on your approach relies on answering questions such as “Do I want to track every field or just some fields?”, “Does it need to be ‘live’ or is it okay to detect changes within a period of time?” and “What audit fields are available to me and what degree of tracking is needed (e.g. deletions vs. just updates)?”
source https://www.c-sharpcorner.com/article/auditing-data-changes-in-microsoft-sql-server/
source https://www.c-sharpcorner.com/article/auditing-data-changes-in-microsoft-sql-server/
Code Coverage In xUnit.net Unit Tests Projects In Visual Studio Enterprise 2017
In this tutorial, we will understand the code coverage concepts in Visual Studio 2017 Enterprise and how to include and exclude the necessary part of the code.
source https://www.c-sharpcorner.com/article/unit-testicode-coverage/
source https://www.c-sharpcorner.com/article/unit-testicode-coverage/
What Is Azure IoT Hub
Azure IoT hub allows you to get on with developing cool IoT stuff, and not worry about how it all gets connected up and managed.
source https://www.c-sharpcorner.com/article/what-is-azure-iot-hub/
source https://www.c-sharpcorner.com/article/what-is-azure-iot-hub/
Difference Between =, == And === In JavaScript
In this article I am going to explain what is difference between =, == and === in JavaScript.
source https://www.c-sharpcorner.com/article/difference-between-and-in-javascript2/
source https://www.c-sharpcorner.com/article/difference-between-and-in-javascript2/
Saturday, August 25, 2018
Consuming ASP.NET Web API Using jQuery - Part Three
In this article you will come know to about How to consume / use Web API in Asp.Net MVC step by step.
source https://www.c-sharpcorner.com/article/consuming-asp-net-web-api-from-jquery-part-three/
source https://www.c-sharpcorner.com/article/consuming-asp-net-web-api-from-jquery-part-three/
Azure AD Apps
Hey guys, I want to talk to you today about a good thing that I’m using a lot at the project that I’m currently working, the Azure AD apps.
source https://www.c-sharpcorner.com/article/meeting-the-azure-ad-apps/
source https://www.c-sharpcorner.com/article/meeting-the-azure-ad-apps/
Querying Cosmos DB In Azure Databricks Using Cosmos DB Spark Connector
We will create a Cosmos DB service using SQL API and query the data in our existing Azure Databricks Spark cluster using Scala notebook. We use Azure Cosmos DB Spark Connector for this.
source https://www.c-sharpcorner.com/article/querying-azure-cosmos-db-in-azure-databricks-using-cosmos-db-spark-connector/
source https://www.c-sharpcorner.com/article/querying-azure-cosmos-db-in-azure-databricks-using-cosmos-db-spark-connector/
How Public And Private Keys Are Generated In Blockchain Networks
Blockchain networks uses asymmetric encryption technique, the public and private key is used for verification and signing of transactions.
source https://www.c-sharpcorner.com/Blogs/how-are-public-and-private-key-generated-in-blockchain-network
source https://www.c-sharpcorner.com/Blogs/how-are-public-and-private-key-generated-in-blockchain-network
Friday, August 24, 2018
An Overview Of Azure Databricks Cluster Creation
We will cover the steps for creating Azure Databricks workspace and configure a Spark cluster. Later we will create a simple data table from an existing CSV file and query the data using SQL notebook.
source https://www.c-sharpcorner.com/article/an-overview-of-azure-databricks/
source https://www.c-sharpcorner.com/article/an-overview-of-azure-databricks/
How To Download Azure BLOB Storage Using Azure PowerShell
Step by step instructions to download Azure BLOB storage using Azure PowerShell. Azure resources are helpful for building automation scripts.
source https://www.c-sharpcorner.com/article/how-to-download-azure-blob-storage-using-azure-powershell/
source https://www.c-sharpcorner.com/article/how-to-download-azure-blob-storage-using-azure-powershell/
How To Install Azure PowerShell Module
Azure PowerShell contains sets of modules that provide multiple cmdlets to manage Azure with Windows PowerShell. It will build automation scripts for the Azure resources.
source https://www.c-sharpcorner.com/article/how-to-install-azure-powershell-module/
source https://www.c-sharpcorner.com/article/how-to-install-azure-powershell-module/
The New SharePoint Developer Profile
If you are like me, who used to be a SharePoint developer, working with C# and .NET who didn’t like to do things using Javascript that much and who had headaches when Microsoft changed the development mode for Apps, the new modern SharePoint experience is even a bigger change and I’m here to talk a little bit about it.
source https://www.c-sharpcorner.com/article/the-new-sharepoint-developer-profile/
source https://www.c-sharpcorner.com/article/the-new-sharepoint-developer-profile/
Xamarin.Forms - Image Slider Using Image Carousel Plugin
In this article, you will learn how to slide images Using Image Carousel in Xamarin Forms.
source https://www.c-sharpcorner.com/article/xamarin-forms-image-slider-using-image-carousel-plugin/
source https://www.c-sharpcorner.com/article/xamarin-forms-image-slider-using-image-carousel-plugin/
Dedicated Server Vs VPS For Game Hosting
Dedicated servers and virtual private servers are popular options for hosting games like Minecraft, but which is right for you. We cover the pros and cons of each platform, and lay out what you need to know about choosing a game server.
source https://www.c-sharpcorner.com/Blogs/dedicated-server-vs-vps-for-game-hosting
source https://www.c-sharpcorner.com/Blogs/dedicated-server-vs-vps-for-game-hosting
Folder Structure Of React Application
In this article, I am going to explain folder structure of react application, i.e. by default, what kind of files and folders they provide us for working.
source https://www.c-sharpcorner.com/article/folder-structure-of-react-application/
source https://www.c-sharpcorner.com/article/folder-structure-of-react-application/
Thursday, August 23, 2018
Consuming Web API In ASP.NET MVC - Part Two
In this article, you will come to know how to consume/use Web API in ASP.NET MVC.
source https://www.c-sharpcorner.com/article/consuming-web-api-in-asp-net-mvc-part-two/
source https://www.c-sharpcorner.com/article/consuming-web-api-in-asp-net-mvc-part-two/
Microsoft Visual Studio releases LibMan CLI
Microsoft has announced the release of Command Line Interface (CLI) for Microsoft Library Manager (LibMan), a cross-platform program which can be used across Windows, Mac, and Linux provided the .NET Core is supported, on Wednesday.
source https://www.c-sharpcorner.com/news/microsoft-visual-studio-releases-libman-cli
source https://www.c-sharpcorner.com/news/microsoft-visual-studio-releases-libman-cli
First Preview Of ASP.NET Core 2.2 Released
The first preview of ASP.NET Core 2.2 has been released and is available for trial and error. to test it and provide their experiences and issues to help revamp and advance the product.
source https://www.c-sharpcorner.com/news/first-preview-of-asp-net-core-22-released
source https://www.c-sharpcorner.com/news/first-preview-of-asp-net-core-22-released
How To Secure Your Entire MVC Application With Authorize Attribute
If you would like to secure your admin pages, you need to add “Authorize” attribute for all your admin controllers. However, you might get a situation like; you need to secure your entire MVC application without using any login page. For vast applications, it would be difficult to add “Authorize” attribute for each controller and manage it.
source https://www.c-sharpcorner.com/Blogs/how-to-secure-your-entire-mvc-application-with-authorize-attribute
source https://www.c-sharpcorner.com/Blogs/how-to-secure-your-entire-mvc-application-with-authorize-attribute
Naming Conventions In C#.Net
For any developer, Naming Convention is a best practice to work on any development project. Let’s discuss more about the naming convention in this article.
source https://www.c-sharpcorner.com/Blogs/naming-conventions-in-c-sharpnet
source https://www.c-sharpcorner.com/Blogs/naming-conventions-in-c-sharpnet
Learn About Azure SQL Server Using VS Code
Microsoft Azure is providing cloud-based SQL Server. it can quickly scale up or down of database size as business needs.
source https://www.c-sharpcorner.com/Blogs/learn-about-azure-sql-server-using-vs-code
source https://www.c-sharpcorner.com/Blogs/learn-about-azure-sql-server-using-vs-code
Angular Console UI For Developers
Nowadays most of the developers like to use Angular CLI. But sometimes it will make a pain of typing the commands for running, testing & deploying code in command prompt to build their Angular Application.
source https://www.c-sharpcorner.com/Blogs/angular-console-ui-for-developer
source https://www.c-sharpcorner.com/Blogs/angular-console-ui-for-developer
Windows Application Automation Testing Using Winapp Driver And C# Beginner
This blog is for a beginner, its mainly to automate a Windows Application using C#, Winnapp driver (Appium) & Selenium. In this blog, we are going to automate the Calculator app.
source https://www.c-sharpcorner.com/Blogs/windows-application-automation-testing-using-winapp-driver-c-sharp-beginner
source https://www.c-sharpcorner.com/Blogs/windows-application-automation-testing-using-winapp-driver-c-sharp-beginner
Bitcoin Blockchain - Genesis
Imagine if an infrastructure were there where everyone could securely process transactional code and access the data that can never be tampered with. All the transactions are stored in a form of a block which is very hard to manipulate or tamper with, once they are stored on a blockchain.
source https://www.c-sharpcorner.com/article/bitcoin-blockchain-genesis/
source https://www.c-sharpcorner.com/article/bitcoin-blockchain-genesis/
Firebase Google Plus Authentication In Android
As discussed in our previous posts, we have learned how to perform email authentication and phone number authentication with firebase in android. In this article, we will how to perform Google Plus authentication in Android.
source https://www.c-sharpcorner.com/article/firebase-google-plus-authentication-in-android/
source https://www.c-sharpcorner.com/article/firebase-google-plus-authentication-in-android/
Creating React Applications
As we know,React is a JavaScript library for building user interfaces.In this article I am going to explain that how can we install and create a react application.
source https://www.c-sharpcorner.com/article/how-to-create-react-application/
source https://www.c-sharpcorner.com/article/how-to-create-react-application/
How To Save An Image To A Specific Path In Ionic 3 Using Native Camera Plugin
In this article demonstrates how to take picture in camera and save a picture specific path in ionic 3 using native camera plugin. The following tools and requirements should prepare before starting this article.
source https://www.c-sharpcorner.com/article/how-to-save-picture-to-specific-path-in-ionic-3-using-native-camera-plugin/
source https://www.c-sharpcorner.com/article/how-to-save-picture-to-specific-path-in-ionic-3-using-native-camera-plugin/
Learn SharePoint In Series - Part Thirty Five - Standard View And Datasheet View
This article explains brief information about Standard Views and Datasheet Views. This article also contains the reason why the datasheet view is not available sometimes.
source https://www.c-sharpcorner.com/article/learn-sharepoint-in-series-part-thirty-five-standard-view-and-datasheet-view/
source https://www.c-sharpcorner.com/article/learn-sharepoint-in-series-part-thirty-five-standard-view-and-datasheet-view/
Libman Microsoft Library Manager For Client Side Libraries
LibMan(libman.json) is for managing client-side libraries in projects. It is a way of organizing client-side libraries into a specific folder without much hassle.
source https://www.c-sharpcorner.com/article/libman-microsoft-library-manager-for-client-side-libraries/
source https://www.c-sharpcorner.com/article/libman-microsoft-library-manager-for-client-side-libraries/
Resource Group In Azure
According to MSDN definition, Resource group is a logical container into Azure resources like web app, databases, storage accounts, logical apps and functions are deployed and managed.
source https://www.c-sharpcorner.com/article/resource-group-in-azure/
source https://www.c-sharpcorner.com/article/resource-group-in-azure/
Taking A Career Risk - The Big Leap
This post isn’t entirely about my career life in general, but it’s more of a tips and what to expect when you decide to work overseas and making that big leap. The content drafted in this article is my own personal experience. Some may have different views on how they took the leap and overcome the risks. You may not find this post beneficial, but I hope it will be for some folks out there.
source https://www.c-sharpcorner.com/article/taking-a-career-risk-the-big-leap/
source https://www.c-sharpcorner.com/article/taking-a-career-risk-the-big-leap/
Modernize Navigation For Visual Studio Team Services
In this article, we will see what's new in the Visual Studio Team Services Navigation.
source https://www.c-sharpcorner.com/article/new-navigation-for-visual-studio-team-services/
source https://www.c-sharpcorner.com/article/new-navigation-for-visual-studio-team-services/
Cleansing Data Using Azure Machine Learning Studio - Part 2
This video provides the details of how to use Clip Value Module to perform Data Cleansing operation using Azure ML Studio.
source https://www.c-sharpcorner.com/article/cleansing-data-using-azure-machine-learning-studio-part-2/
source https://www.c-sharpcorner.com/article/cleansing-data-using-azure-machine-learning-studio-part-2/
Understanding Models In ASP.NET MVC
One of the three basics of MVC is Model, which is defined as the architecture of data in the whole application. This video will walk you through the basics of Models in MVC.
source https://www.c-sharpcorner.com/article/understand-model-in-asp-net-mvc/
source https://www.c-sharpcorner.com/article/understand-model-in-asp-net-mvc/
Understanding Views In ASP.NET MVC
Views play an important role in developing the user layout. It will represent the data and help the user to interact with the application.
source https://www.c-sharpcorner.com/article/understand-view-in-asp-net-mvc/
source https://www.c-sharpcorner.com/article/understand-view-in-asp-net-mvc/
Microsoft's DPDK (Data Plane Development Kit) Now Generally Available
Data Plane Development Kit (DPDK) is now generally available in all azure regions. DPDK is a set of data plane libraries and network interface controller drivers for fast packet processing.
source https://www.c-sharpcorner.com/news/microsofts-dpdk-data-plane-development-kit-now-generally-available
source https://www.c-sharpcorner.com/news/microsofts-dpdk-data-plane-development-kit-now-generally-available
GrammaTech Releases CodeSonar 5, Now With Support for C# and .NET
GrammaTech, a leading provider of software assurance tools and cybersecurity solutions announced the release of CodeSonar 5 this week, its latest tool in advancing static analysis now with support for C# and .NET with the existing support for C, C++, and Java.
source https://www.c-sharpcorner.com/news/grammatech-releases-codesonar-5-now-with-support-for-c-sharp-and-net
source https://www.c-sharpcorner.com/news/grammatech-releases-codesonar-5-now-with-support-for-c-sharp-and-net
Wednesday, August 22, 2018
Execute Stored Procedure In Entity Framework
In EF (Entity Framework), there are mainly two ways to execute the stored procedure.
source https://www.c-sharpcorner.com/Blogs/execute-store-procedure-in-entity-framework
source https://www.c-sharpcorner.com/Blogs/execute-store-procedure-in-entity-framework
Azure CLI 2.0 Output Format
Azure CLI 2.0 uses JSON as its default output option but provides a way to format output in any command line.
source https://www.c-sharpcorner.com/Blogs/azure-cli-20-output-format
source https://www.c-sharpcorner.com/Blogs/azure-cli-20-output-format
Getting Started With Machine Learning .NET (ML.NET)
In Build 2018, Microsoft introduced the preview of ML.NET (Machine Learning .NET) which is a cross-platform, open source machine learning framework. Yes, now it's easy to develop our own Machine Learning application or developing costume module using Machine Learning framework. ML.NET is a machine learning framework which was mainly developed for .NET developers.
source https://www.c-sharpcorner.com/article/getting-started-with-machine-learning-dotnet-ml-net/
source https://www.c-sharpcorner.com/article/getting-started-with-machine-learning-dotnet-ml-net/
Manage Team Project Using Agile Workflow Process In Visual Studio Team Service
In this article, we will learn how to Create a project using the Agile Process and Manage Iteration, Area, and Work Items.
source https://www.c-sharpcorner.com/article/manage-team-project-using-agile-process-in-visual-studio-team-service/
source https://www.c-sharpcorner.com/article/manage-team-project-using-agile-process-in-visual-studio-team-service/
Setup xUnit.net Unit Testing In Class Library Project
In this tutorial, we will learn how to configure xUnit.net in Visual Studio 2017 class library project.
source https://www.c-sharpcorner.com/article/setup-xunit-net-unit-testing-in-visual-studio-2017-basic-01/
source https://www.c-sharpcorner.com/article/setup-xunit-net-unit-testing-in-visual-studio-2017-basic-01/
Template Driven Forms And Validation In Angular With TypeScript
This article will give you information about Template Driven Forms and how to create a form with Template Driven Forms approach and implement validation with Template Driven Forms with Angular 6 and TypeScript.
source https://www.c-sharpcorner.com/article/template-driven-forms-and-validation-in-angular-with-typescript/
source https://www.c-sharpcorner.com/article/template-driven-forms-and-validation-in-angular-with-typescript/
Improve Store Procedure Performance In SQL Server/ Store Procedure Performance Tuning
In this article, I am going to discuss a few tips to improve store procedure performance and few points about do's and dont's while writing store procedure in SQL server.
source https://www.c-sharpcorner.com/article/improve-stored-procedure-performance-in-sql-server-store-procedure-performance/
source https://www.c-sharpcorner.com/article/improve-stored-procedure-performance-in-sql-server-store-procedure-performance/
REST APIs For Power BI Report Server
The URL of the REST API service for PowerBI report server is highlighted below. This is the same for SQL Server Reporting Services from 2016 onwards.
source https://www.c-sharpcorner.com/article/rest-apis-for-power-bi-report-server/
source https://www.c-sharpcorner.com/article/rest-apis-for-power-bi-report-server/
Save Money On Your Azure Monthly SQL Database Bill
Microsoft gives you two purchasing models for your Azure SQL Databases (SQL DB), a DTU and a vCore based model (logical CPU’s). Both options allow you to scale up or down based on your compute and storage requirements. Regardless of which model you choose performance tuning can save you money using SQL DB.
source https://www.c-sharpcorner.com/article/save-money-on-your-azure-monthly-sql-database-bill/
source https://www.c-sharpcorner.com/article/save-money-on-your-azure-monthly-sql-database-bill/
Xamarin.Forms- Device Display Info Using Xamarin Essentials
In this article, you will learn how to get Device Display Information using Xamarin Essentials in Xamarin Forms.
source https://www.c-sharpcorner.com/article/xamariin-forms-device-display-info-using-xamarin-essentials/
source https://www.c-sharpcorner.com/article/xamariin-forms-device-display-info-using-xamarin-essentials/
O3 Alliance Framework To Step-Up DAPP Development
O3 Alliance which is a framework developed to help developers utilize O3 infrastructure to escalate the outreach of their decentralized applications (DApps) in the NEO ecosystem.
source https://www.c-sharpcorner.com/news/o3-alliance-framework-to-stepup-dapp-development
source https://www.c-sharpcorner.com/news/o3-alliance-framework-to-stepup-dapp-development
Tuesday, August 21, 2018
Performance Tip: Checking For Empty String
Increase code performance by 95% with this tip!
source https://www.c-sharpcorner.com/Blogs/performance-tip-checking-for-empty-string
source https://www.c-sharpcorner.com/Blogs/performance-tip-checking-for-empty-string
Microsoft To Stop App Submission In Microsoft Store For Windows Phone 8.x
Microsoft will soon stop accepting new apps with Windows Phone 8.x or earlier or Windows 8/8.1 packages (XAP and APPX). The step is a part of Windows life cycle.
source https://www.c-sharpcorner.com/news/microsoft-to-stop-app-submission-in-microsoft-store-for-windows-phone-8x
source https://www.c-sharpcorner.com/news/microsoft-to-stop-app-submission-in-microsoft-store-for-windows-phone-8x
Visual Studio For Mac v7.6 Released
Recently, Visual Studio for Mac version 7.6 has been released with a special focus on code editor. Richer support to Azure functions and added ability to publish functions to Azure from IDE has also been added.
source https://www.c-sharpcorner.com/news/visual-studio-for-mac-version-76-released
source https://www.c-sharpcorner.com/news/visual-studio-for-mac-version-76-released
Learn About Main() Method In C#
Main() method is the starting point of an application. When we run the program, this is the first method which gets called.
source https://www.c-sharpcorner.com/Blogs/learn-about-main-method-in-c-sharp
source https://www.c-sharpcorner.com/Blogs/learn-about-main-method-in-c-sharp
Difference Between Deferred And Immediate Query Execution In LINQ
In .NET when you write a LINQ query it actually performs the querying only when the LINQ result is accessed. This phenomenon of LINQ is called deferred execution. One thing you should be aware of is that on every access of the result set the query gets executed again and again.
source https://www.c-sharpcorner.com/Blogs/difference-between-deferred-vs-immediate-query-execution-in-linq
source https://www.c-sharpcorner.com/Blogs/difference-between-deferred-vs-immediate-query-execution-in-linq
Introduction To Entity Framework And Entity Framework Core
As per our old EF, we are using both the approaches that first create classes then you run it or compile it. It will create the database automatically. And the second approach first creates a database then create classes as per the database.
source https://www.c-sharpcorner.com/Blogs/introduction-to-entity-framework-and-entity-framework-core
source https://www.c-sharpcorner.com/Blogs/introduction-to-entity-framework-and-entity-framework-core
Handling Events In C#
Here, I am going to demonstrate how to declare events in C# and how to call that event and so on.
source https://www.c-sharpcorner.com/Blogs/handling-events-in-c-sharp
source https://www.c-sharpcorner.com/Blogs/handling-events-in-c-sharp
Print A String Or Letter In Reverse Without Using The Predefined Function In C#
To print a string or letters in reverse without using the predefined function in C# programming language.
source https://www.c-sharpcorner.com/Blogs/print-a-string-or-letter-in-reverse-without-using-the-predefined-function-in-c-sharp-programming-language
source https://www.c-sharpcorner.com/Blogs/print-a-string-or-letter-in-reverse-without-using-the-predefined-function-in-c-sharp-programming-language
Azure Redis Cache With A Step By Step Demo
In this article, I am going to explain what is Azure Redis Cache and also show a step by step demo of how to work with it.
source https://www.c-sharpcorner.com/article/azure-redis-cache-with-a/
source https://www.c-sharpcorner.com/article/azure-redis-cache-with-a/
Azure Worker Role With Quartz.NET
In this article, I will be explaining the usage of Azure Worker Role along with Quartz.Net and a practical example showing 3 differents jobs running under the same worker role.
source https://www.c-sharpcorner.com/article/azure-worker-role-with-quartz-net/
source https://www.c-sharpcorner.com/article/azure-worker-role-with-quartz-net/
Get Started With Modern Data Analytic Tools
In this article, we will discuss how to get started with Modern Data Analytic Tools.
source https://www.c-sharpcorner.com/article/get-start-modern-data/
source https://www.c-sharpcorner.com/article/get-start-modern-data/
How To Remain Productive All Day
In this article, I have shared some tips which I follow to be more productive and remain productive the whole day.
source https://www.c-sharpcorner.com/article/how-to-be-more-productive-all-the-day/
source https://www.c-sharpcorner.com/article/how-to-be-more-productive-all-the-day/
Insert, Update And Delete Document In MongoDB - Part Two
in this article, we will discuss about how to insert, update and delete documents from MongoDB
source https://www.c-sharpcorner.com/article/insertupdate-delete-document-in-mongodb-part-two/
source https://www.c-sharpcorner.com/article/insertupdate-delete-document-in-mongodb-part-two/
Measuring And Reporting The Response Time Of An ASP.NET Core API
Performance is the buzzword for the APIs. One of the most important and measurable parameter of the API performance is the Response time. In this article, we will understand how to add code to measure the response time of an API and then return the Response time data to the end client.
source https://www.c-sharpcorner.com/article/measuring-and-reporting-the-response-time-of-an-asp-net-core-api/
source https://www.c-sharpcorner.com/article/measuring-and-reporting-the-response-time-of-an-asp-net-core-api/
SharePoint Framework - Provision SharePoint Assets
SharePoint components like web parts normally interact with the SharePoint assets like lists, libraries, content types, etc. In the full trust solutions, we deploy these SharePoint assets along with web part in a single deployable package (.wsp).
source https://www.c-sharpcorner.com/article/sharepoint-framework-provision-sharepoint-assets/
source https://www.c-sharpcorner.com/article/sharepoint-framework-provision-sharepoint-assets/
Steps To Set Up Virtual Environment For Python On Windows
This article focuses on setting up a virtual environment for Python development on Windows.
source https://www.c-sharpcorner.com/article/steps-to-set-up-a-virtual-environment-for-python-development/
source https://www.c-sharpcorner.com/article/steps-to-set-up-a-virtual-environment-for-python-development/
Intel Acquires Artificial Intelligence Startup Vertex.AI
Hardware manufacturers like Intel have also stepped into AI. Recently, Intel has acquired Vertex.AI, which is a Seattle-based, artificial intelligence startup and maker of deep learning engine PlaidML.
source https://www.c-sharpcorner.com/news/intel-acquires-artificial-intelligence-startup-vertexai
source https://www.c-sharpcorner.com/news/intel-acquires-artificial-intelligence-startup-vertexai
Five Ways In Which Machine Learning Can Impact FinTech
Machine learning is one amongst those technologies that is invariably around us and that we might not even comprehend it. For instance, machine learning is employed to resolve issues like deciding if an email that we got is a spam or a genuine one, how cars can drive on their own, and what product someone is likely to purchase. Every day we tend to see these sorts of machine learning solutions in action. Machine learning is when we get a mail and automatically/mechanically scanned and marked for spam within the spam folder. For the past few years, Google, Tesla, and others have been building self-drive systems that may soon augment or replace the human driver. And data information giants like Google and Amazon can use your search history to predict which things you are looking to shop for and ensure you see adds for those things on each webpage you visit. All this useful and generally annoying and unwanted behavior is the result of artificial intelligence.
source https://www.c-sharpcorner.com/article/five-ways-in-which-machine-learning-can-impact-fintech/
source https://www.c-sharpcorner.com/article/five-ways-in-which-machine-learning-can-impact-fintech/
Step By Step Installation Of Oracle 11g On Windows 7 (64bit)
In this article, you will learn how to install your oracle 11g on window 7 with 64 bit.This article will guide you installation step especially for the fresher.
source https://www.c-sharpcorner.com/article/step-by-step-installation-of-oracle-11g-on-windows-7-64bit2/
source https://www.c-sharpcorner.com/article/step-by-step-installation-of-oracle-11g-on-windows-7-64bit2/
Awesome .NET And .NET Core Libraries And Tools
A curated list of awesome .NET Performance books, courses, training, conference talks, blogs and most inspiring open source contributors. Inspired by awesome-... stuff.
source https://www.c-sharpcorner.com/Resources/4404/awesome-net-and-net-core-libraries-and-tools.aspx
source https://www.c-sharpcorner.com/Resources/4404/awesome-net-and-net-core-libraries-and-tools.aspx
Testing Secure Web APIs Using Visual Studio Web Tests
Testing Web APIs is way more different than testing the UI of a system. We can achieve the same efficiently with some great tools.
source https://www.c-sharpcorner.com/Resources/4393/testing-secure-web-apis-using-visual-studio-web-tests.aspx
source https://www.c-sharpcorner.com/Resources/4393/testing-secure-web-apis-using-visual-studio-web-tests.aspx
Monday, August 20, 2018
Create Dynamic Photos Page Using Rest API And SharePoint
In this blog, we will see how to create a dynamic page which includes all photos of the particular event.
source https://www.c-sharpcorner.com/Blogs/create-dynamic-photos-page-using-rest-api-and-sharepoint
source https://www.c-sharpcorner.com/Blogs/create-dynamic-photos-page-using-rest-api-and-sharepoint
Find Default Page And Approve It Using Powershell In SPO
Basically in SPO default.aspx are discontinued however while migration default pages also get migrated. Here, this piece of code finding default pages and approving status of it.
source https://www.c-sharpcorner.com/Blogs/find-default-page-and-approve-it-using-powershell-in-spo
source https://www.c-sharpcorner.com/Blogs/find-default-page-and-approve-it-using-powershell-in-spo
Braintree Payment Gateway Integration With ASP.NET Core 2.1
In this post, we are going to implement the Braintree payment gateway with ASP.NET Core 2.1, Based on the previous post, this article is extended to implement payment gateway. We are going to modify/extend existing sample application by downloading the full source code from GitHub.
source https://www.c-sharpcorner.com/article/braintree-payment-asp-net-core-2-1/
source https://www.c-sharpcorner.com/article/braintree-payment-asp-net-core-2-1/
Date Picker With Validations
With the requirement of Custom Forms in SharePoint, comes the need for custom fields to achieve many functionalities which SharePoint provide as OOTB feature.
source https://www.c-sharpcorner.com/article/date-picker-with-validations/
source https://www.c-sharpcorner.com/article/date-picker-with-validations/
Turn OOTB Comment Section From SharePoint Online Modern Page On or Off
Comment section appears in all modern pages. It's by design but we can easily turn on or off this feature.
source https://www.c-sharpcorner.com/Blogs/turn-on-or-off-ootb-comment-section-from-sharepoint-online-modern-page
source https://www.c-sharpcorner.com/Blogs/turn-on-or-off-ootb-comment-section-from-sharepoint-online-modern-page
Remove Header Image Banner From SharePoint Modern Pages
SharePoint Online Modern pages have header image banner in all modern pages i.e. Communication or Team Sites. Header image banner expect background image or text, it take almost 40% of the page and we can’t remove this section using UI.
source https://www.c-sharpcorner.com/Blogs/remove-header-image-banner-from-sharepoint-modern-pages
source https://www.c-sharpcorner.com/Blogs/remove-header-image-banner-from-sharepoint-modern-pages
Fixing "Plugin IISBinding Was Unable To Generate A Target" Error
When you setup Let's Encrypt this message would show up. The POST that teachs how enable HTTPS for free has a gap to make it works.
source https://www.c-sharpcorner.com/Blogs/fixing-plugin-iisbinding-was-unable-to-generate-a-target
source https://www.c-sharpcorner.com/Blogs/fixing-plugin-iisbinding-was-unable-to-generate-a-target
Using Templates In Kendo DropDownTree
From this blog, you will learn how to use templates in kendo DropDown Tree.
source https://www.c-sharpcorner.com/Blogs/using-templates-in-kendo-dropdowntree
source https://www.c-sharpcorner.com/Blogs/using-templates-in-kendo-dropdowntree
Introduction To NBitcoin
I wrote an introduction to Stratis - A C# and .NET Blockchain solution. Stratis Platform was not built from scratch. It was built on top of NBitcoin - the most complete Bitcoin library for the .NET platform. In order to understand and use Stratis better, we need to familiar with NBitcoin. In this article, I am going to give an introduction to NBitcoin.
source https://www.c-sharpcorner.com/article/introduction-to-nbitcoin/
source https://www.c-sharpcorner.com/article/introduction-to-nbitcoin/
How To Enable C# 7.1 Version To My Projects
By default C# 7.0 was shipped With Visual Studio 2017 and this is the major release (March 2017) till now. In August 2017 a minor version of C# 7.0 was released and version named as C# 7.1. This minor version came with four new features (async main, target-typed default literals, tuple name inference, and generic support for pattern-matching) and some minor changes to the what was introduced in C# 7.0.
source https://www.c-sharpcorner.com/article/how-to-enable-c-sharp-7-1-version-to-my-projects/
source https://www.c-sharpcorner.com/article/how-to-enable-c-sharp-7-1-version-to-my-projects/
SharePoint Permission Levels And Best Practices
Content Management is one of the major and widely used offerings of SharePoint. SharePoint portals are setup and used effectively for better content management. When the content comes in to the picture, the major area of focus is to present the right set of content to right users. Permission levels in SharePoint helps to define the governance around this.
source https://www.c-sharpcorner.com/article/sharepoint-permission-levels-and-best-practices/
source https://www.c-sharpcorner.com/article/sharepoint-permission-levels-and-best-practices/
CRUD Operation In ASP.NET Core 2.0 Using Dapper ORM
In this article, we will learn CRUD operation in ASP.NET Core 2.0 using Dapper ORM step by step. We will use Visual Studio 2017 to develop the web application using ASP.NET Core 2.0 with razor pages using Dapper. If you don’t have a basic idea of ASP.NET Core and how to set up ASP.NET Core Environment. How to install Visual Studio 2017. Then Please go with my previous article as follow.
source https://www.c-sharpcorner.com/article/crud-operation-in-asp-net-core-2-0-using-dapper-orm/
source https://www.c-sharpcorner.com/article/crud-operation-in-asp-net-core-2-0-using-dapper-orm/
Overview Of Indexes In SQL Server
Hello Learners. Thank you so much for the support for my first article “Learn About Sql Server Architecture”. Hope you all are doing well.
source https://www.c-sharpcorner.com/article/overview-of-indexes-in-sql-server/
source https://www.c-sharpcorner.com/article/overview-of-indexes-in-sql-server/
SharePoint Framework (SPFx) - Part One - Development Environment Setup
In this article I am going to explain the steps to be followed to setup development environment.
source https://www.c-sharpcorner.com/article/sharepoint-framework-spfx-part-one-development-environment-setup/
source https://www.c-sharpcorner.com/article/sharepoint-framework-spfx-part-one-development-environment-setup/
Angular V6 Desktop Application With Firebase And Electron
In this article, we will create a simple contact list application in Angular 6 using Firebase as database and publish as firebase app. Later we convert this app to a desktop app using electron and will create a stand-alone executable file using electron-packager.
source https://www.c-sharpcorner.com/article/angular-6-desktop-application-with-firebase-and-electron/
source https://www.c-sharpcorner.com/article/angular-6-desktop-application-with-firebase-and-electron/
SharePoint Online - Working With List Content Types Using PowerShell
In this article, we will discuss the configuration of some of the important operations on Content Type for SharePoint Online Lists.
source https://www.c-sharpcorner.com/article/sharepoint-online-working-with-list-content-types-using-powershell/
source https://www.c-sharpcorner.com/article/sharepoint-online-working-with-list-content-types-using-powershell/
Cleansing data using Azure Machine Learning Studio - Part 1
This video provides details on how to cleanse data using Azure Machine Learning Studio modules - Clean Missing Data and Remove Duplicate Rows.
source https://www.c-sharpcorner.com/article/cleansing-data-using-azure-machine-learning-studio-part-1/
source https://www.c-sharpcorner.com/article/cleansing-data-using-azure-machine-learning-studio-part-1/
Appeal To Contribute To Kerala Flood Relief
This is an appeal by C# Corner to contribute to the Kerala flood relief.
source https://www.c-sharpcorner.com/Blogs/appeal-to-contribute-to-kerala-flood-relief
source https://www.c-sharpcorner.com/Blogs/appeal-to-contribute-to-kerala-flood-relief
Sunday, August 19, 2018
Copying Events From One JavaScript Element To Another JavaScript Element
We need to bind specific events like click, onchange of one element to another element due to there could be a situation where we cannot access the methods which are calling an event handler of an element which should even be needed for a new element.
source https://www.c-sharpcorner.com/article/copying-events-from-one-javascript-element-to-another-javascript-element/
source https://www.c-sharpcorner.com/article/copying-events-from-one-javascript-element-to-another-javascript-element/
DAX In Power BI - How To Use LOOKUPVALUE() Function
In this article, we will talk about one mostly used and important DAX function which is LOOKUPVALUE function.
source https://www.c-sharpcorner.com/article/dax-in-power-bi-how-to-use-lookupvalue-function/
source https://www.c-sharpcorner.com/article/dax-in-power-bi-how-to-use-lookupvalue-function/
Session Facade Design Pattern
In developing software its very important to use proper design patterns,In learning design patterns its important to Observe which design pattern properly fit on our problem and how we use appropriate patterns..its usual to misuse design patterns on problem.so its very important to finds a proper design pattern on a given problem in software development.
source https://www.c-sharpcorner.com/article/session-facade-design-pattern/
source https://www.c-sharpcorner.com/article/session-facade-design-pattern/
Using LinkLabel In Windows.Forms
In this article, I am going to explain how to use a LinkLabel in a Windows Forms app using Visual studio 2017.
source https://www.c-sharpcorner.com/article/using-linklabel-in-windows-forms/
source https://www.c-sharpcorner.com/article/using-linklabel-in-windows-forms/
How You Can Set Up ASP.NET MVC Project
If you are a beginner and want to learn MVC Architecture, this video series will help you to become zero to hero. In this tutorial, we will learn how to set up an ASP.NET MVC project.
source https://www.c-sharpcorner.com/article/how-you-can-setup-asp-net-mvc-project/
source https://www.c-sharpcorner.com/article/how-you-can-setup-asp-net-mvc-project/
Overview Of Microsoft SharePoint Migration Tool
This is a recording of our webinar on Microsoft SharePoint migration tool. We will have an overview of Microsoft SharePoint Migration Tool in this video.
source https://www.c-sharpcorner.com/article/overview-of-microsoft-sharepoint-migration-tool/
source https://www.c-sharpcorner.com/article/overview-of-microsoft-sharepoint-migration-tool/
Saturday, August 18, 2018
Getting Started With Dynamics 365 Portal - Webinar
Are you new to Dynamics 365 Portal and want to know how to get started? Join us on 1 Sep for Free Webinar in Getting Started with Dynamics 265 Portal. In this article we will discuss some quick question about Dynamics 365 Portal add-on.
source https://www.c-sharpcorner.com/article/getting-started-with-dynamics-365-portal-webinar/
source https://www.c-sharpcorner.com/article/getting-started-with-dynamics-365-portal-webinar/
Role Base Authorization In ASP.NET Core 2.1
Authorization is a process that determines what a user is able to do. For example, an Admin user is allowed to install/remove a software from a computer and a non-Admin user can use the software from the computer. It is independent and orthogonal from authentication. However, authorization requires an authentication mechanism. For applications, the first step is always authentication and then authorization.
source https://www.c-sharpcorner.com/article/role-base-authorization-in-asp-net-core-2-1/
source https://www.c-sharpcorner.com/article/role-base-authorization-in-asp-net-core-2-1/
Using StatusStrip In Windows Forms
In this article, I am going to explain how to use a StatusStrip in a Windows Forms app using Visual studio 2017.
source https://www.c-sharpcorner.com/article/using-statusstrip-in-windows-forms/
source https://www.c-sharpcorner.com/article/using-statusstrip-in-windows-forms/
SharePoint Online - Working With List Fields Using PowerShell
In this article, we will discuss the operations on List Fields (Columns), which involves Getting All Columns, Adding New Columns, Updating Existing Columns and so on.
source https://www.c-sharpcorner.com/article/sharepoint-online-working-with-list-fields-using-powershell/
source https://www.c-sharpcorner.com/article/sharepoint-online-working-with-list-fields-using-powershell/
Friday, August 17, 2018
Google Announces Exciting Updates For Firebase
Google’s Firebase has announced several updates for the mobile application development platform that is built on top of Google Cloud. The updates focus on facilitating building better apps, improving the overall quality and growing the businesses of its users.
source https://www.c-sharpcorner.com/news/google-announces-exciting-updates-for-firebase
source https://www.c-sharpcorner.com/news/google-announces-exciting-updates-for-firebase
SEI CERT Releases Source Code Analysis Tool To Locate Flaws
The CERT Division of Software Engineering Institute (SEI) at Carnegie Mellon University announced the release of its Source Code Analysis Laboratory (SCALe) application on Wednesday.
source https://www.c-sharpcorner.com/news/sei-cert-releases-source-code-analysis-tool-to-locate-flaws
source https://www.c-sharpcorner.com/news/sei-cert-releases-source-code-analysis-tool-to-locate-flaws
History And Evaluation Of Cloud Computing
Mainframes are large and high computing platform. These systems will be managed in a separate large room or hall with all necessary power backup, cooling and data backup maintenance. This is a huge investment to the company. So, not every company can effort this system.
source https://www.c-sharpcorner.com/article/history-and-evaluation-of-cloud-computing/
source https://www.c-sharpcorner.com/article/history-and-evaluation-of-cloud-computing/
How To Register With Microsoft Azure Account With $200 Credits
This article is helpful to those who want to learn Microsoft Azure. In this article, I am going to describe how to create a free Azure account with $200 or INR. 13000 credit. We can use those credits within a month. Are you already guys? Let's start.
source https://www.c-sharpcorner.com/article/how-to-register-with-microsoft-azure-account-with-200-credits/
source https://www.c-sharpcorner.com/article/how-to-register-with-microsoft-azure-account-with-200-credits/
How To Change Database In Web.Config File Programmatically
In this article, you will learn How we change database name dynamically in a Web.config file in ASP.NET.
source https://www.c-sharpcorner.com/article/how-we-change-database-in-web-config-file-programmatically/
source https://www.c-sharpcorner.com/article/how-we-change-database-in-web-config-file-programmatically/
Learn SharePoint In Series - Part Thirty Four - Editing And Deleting A SharePoint List View
This article contains ways using which we can edit the existing views, deleting the existing views and switching between the views.
source https://www.c-sharpcorner.com/article/learn-sharepoint-in-series-part-thirty-four-editing-and-deleting-a-sharepoin/
source https://www.c-sharpcorner.com/article/learn-sharepoint-in-series-part-thirty-four-editing-and-deleting-a-sharepoin/
Power BI Python Scripting - Installation Of Python IDE (Visual Studio Code)
In this article, we will learn how we can install Python IDE (Visual Studio Code) for Power BI for the Python script visual.
source https://www.c-sharpcorner.com/article/power-bi-python-scripting-installation-of-python-ide-visual-studio-code/
source https://www.c-sharpcorner.com/article/power-bi-python-scripting-installation-of-python-ide-visual-studio-code/
Re-Execute Test-Cases And Merge The Robot Framework Reports Via Jenkins
Randomness is important but sometimes it is clumpy, especially when it comes to code debugging or report analysis. It's sucks when overall results get affected just because of a few random failures which you can't control (or might just don’t want to kill or fix due to some vigorous reasons and priorities factors on your machine), in these case 'a second chance' can fix a huge part of your reports and overall testing result.
source https://www.c-sharpcorner.com/article/re-execute-test-cases-and-merge-the-robot-framework-reports-via-jenkins/
source https://www.c-sharpcorner.com/article/re-execute-test-cases-and-merge-the-robot-framework-reports-via-jenkins/
Cropping Images In HTML Using jQuery
Here, we are cropping an image in jQuery using Cropper and later, we are providing a functionality to download at client machine or save the cropped image on SharePoint Server.
source https://www.c-sharpcorner.com/Blogs/image-crop-in-jquery-html
source https://www.c-sharpcorner.com/Blogs/image-crop-in-jquery-html
How To Get Messages For A Specific Topic In Yammer Using PowerShell
In this blog, you will see how to get the messages for a specific topic in Yammer using PowerShell.
source https://www.c-sharpcorner.com/Blogs/how-to-get-the-messages-for-a-specific-topic-in-yammer-using-powershell
source https://www.c-sharpcorner.com/Blogs/how-to-get-the-messages-for-a-specific-topic-in-yammer-using-powershell
How To Get The List Of Groups For A Current User In Yammer Using PowerShell
In this blog, you will see how to get the list of groups for a current user in Yammer using PowerShell.
source https://www.c-sharpcorner.com/Blogs/how-to-get-the-list-of-groups-for-a-current-user-in-yammer-using-powershell
source https://www.c-sharpcorner.com/Blogs/how-to-get-the-list-of-groups-for-a-current-user-in-yammer-using-powershell
How To Get The Number Of Followers And Following For A Specific User In Yammer Using PowerShell
In this blog, you will see how to get the number of followers and following for a specific user in Yammer using PowerShell.
source https://www.c-sharpcorner.com/Blogs/how-to-get-the-number-of-followers-and-following-for-a-specific-user-in-yammer-using-powershell
source https://www.c-sharpcorner.com/Blogs/how-to-get-the-number-of-followers-and-following-for-a-specific-user-in-yammer-using-powershell
How To Get Announcements From A Specific Yammer Group Using PowerShell
In this blog, you will see how to get the announcements from a specific Yammer group using PowerShell.
source https://www.c-sharpcorner.com/Blogs/how-to-get-the-announcements-from-a-specific-yammer-group-using-powershell
source https://www.c-sharpcorner.com/Blogs/how-to-get-the-announcements-from-a-specific-yammer-group-using-powershell
Oracle introduces GraphPipe for Machine Learning Deployment
Recently, Oracle has introduced GraphPipe, an open source framework, to simplify and standardize machine learning model deployment.
source https://www.c-sharpcorner.com/news/oracle-introduces-graphpipe-for-machine-learning-deployment
source https://www.c-sharpcorner.com/news/oracle-introduces-graphpipe-for-machine-learning-deployment
Microsoft Announces Version 15.8 Of Visual Studio 2017
Recently, Microsoft has released its latest version of the Visual Studio 2017 version 15.8 focusing on increasing productivity, performance and bug fixes.
source https://www.c-sharpcorner.com/news/microsoft-announces-version-158-of-visual-studio-2017
source https://www.c-sharpcorner.com/news/microsoft-announces-version-158-of-visual-studio-2017
Planning of Disk Space for Databases
The article is dedicated to configuring disk space for SQL Server databases to increase system reliability and performance.
source https://www.c-sharpcorner.com/Resources/4410/planning-of-disk-space-for-databases.aspx
source https://www.c-sharpcorner.com/Resources/4410/planning-of-disk-space-for-databases.aspx
Tuples in Swift
In Swift, tuples are used to group multiple values together into single compound value. The values we define in a tuple can be of any type and there is no restriction to use the same type of values.
source https://www.c-sharpcorner.com/Resources/4401/tuples-in-swift.aspx
source https://www.c-sharpcorner.com/Resources/4401/tuples-in-swift.aspx
Thursday, August 16, 2018
Angular Launches New Tools To Assist Migration From AngularJS
To assist developers to migrate from AngularJs to Angular of today, Angular has announced two new tools- ngMigration Assistant and ngMigration Forum.
source https://www.c-sharpcorner.com/news/angular-launches-new-tools-to-assist-migration-from-angularjs
source https://www.c-sharpcorner.com/news/angular-launches-new-tools-to-assist-migration-from-angularjs
How To Implement Dynamic Highchart With Angular V6 And ASP.NET Core
In this post, we are going to implement dynamic highchart with Angular6 and ASP.NET Core. In the previous article we have explored how a Single Page Application (SPA) sample can be put together using ASP.NET Core & Angular from scratch.
source https://www.c-sharpcorner.com/article/how-to-implement-dynamic-highchart-with-angular-v6-and-asp-net-core/
source https://www.c-sharpcorner.com/article/how-to-implement-dynamic-highchart-with-angular-v6-and-asp-net-core/
TLS 1.3 Released With Better Security And Speed
TLS 1.3, the most important security protocol on the internet was released by the Internet Engineers Task Force (IETF) last Friday. The new version updates to deliver superior privacy, security, and performance over the Internet.
source https://www.c-sharpcorner.com/news/tls-13-with-better-security-and-speed-released
source https://www.c-sharpcorner.com/news/tls-13-with-better-security-and-speed-released
Windows Releases Driver Module Framework
Microsoft has announced the release of Driver Module Framework (DMF). DMF is an open source framework for windows driver developers where simple and structured Windows driver frameworks can be developed.
source https://www.c-sharpcorner.com/news/windows-releases-driver-module-framework
source https://www.c-sharpcorner.com/news/windows-releases-driver-module-framework
Create Blank PowerApps With Excel As Data Source
In this article, we are going to see “how to create blank powerapps with excel as data source”. Before read the article go through the Introduction to PowerApps and Creating Template with it.
source https://www.c-sharpcorner.com/article/create-blank-powerapps-with-excel-as-data-source/
source https://www.c-sharpcorner.com/article/create-blank-powerapps-with-excel-as-data-source/
Entity Framework In MVC - Part Eight
In the previous article, I have explained One- to- One relationship of code first approach in Entity Framework. In this article, I will explain one –to- one and one- to - Many relationships in code first approach in Entity Framework. Let’s see step by step.
source https://www.c-sharpcorner.com/article/entity-framework-in-mvc-part-eight/
source https://www.c-sharpcorner.com/article/entity-framework-in-mvc-part-eight/
Exploring Kraken - A Distributed And Async PHP Framework
PHP frameworks are noted for their developer friendly feature and robust nature. PHP itself is a widely used programming language, so the different frameworks in themselves are hugely admired and widely used. In this article, we will discuss Kraken, the first and the only multi-processed, multi-threaded, fault-tolerant, distributed, async PHP framework, and its major features.
source https://www.c-sharpcorner.com/article/exploring-kraken-a-distributed-and-async-php-framework/
source https://www.c-sharpcorner.com/article/exploring-kraken-a-distributed-and-async-php-framework/
Getting Started With ASP.NET MVC - Part One
This article explains basic of ASP.NET MVC and explains the main advantages, version history, and Environment setup and folder structures. Here we can learn how to start first ASP.NET MVC application.
source https://www.c-sharpcorner.com/article/getting-started-with-asp-net-mvc-part-one/
source https://www.c-sharpcorner.com/article/getting-started-with-asp-net-mvc-part-one/
Introduction To Decorator Design Pattern
Decorator Design pattern is part of Structural Patterns from Gang of Four(GoF) Design patterns.it is a widely used structural Pattern. It dynamically adds the functionality to an object at runtime without affecting the other objects. It adds further answerability to an object by Bundling it.
source https://www.c-sharpcorner.com/Blogs/introduction-to-decorator-design-pattern
source https://www.c-sharpcorner.com/Blogs/introduction-to-decorator-design-pattern
CRUD Operations Using ASP.NET Core 2.0 And In-Memory Database With Entity Framework
In this article, we will create a Web API with the in-memory database using Entity Framework and ASP.NET Core 2.0 without any theoretical explanation.
source https://www.c-sharpcorner.com/article/crud-operations-using-asp-net-core-2-0-and-in-memory-database-with-entity-framew/
source https://www.c-sharpcorner.com/article/crud-operations-using-asp-net-core-2-0-and-in-memory-database-with-entity-framew/
Custom People Picker In SharePoint Online
For a SharePoint developer, creating custom forms to do the CRUD operation on List items is a must-know task. During development, we may be stuck at some fields such as giving ‘People Picker’ control on the custom form which shows users from the Azure Active Directory of the SharePoint Tenant.
source https://www.c-sharpcorner.com/article/custom-people-picker-in-sharepoint-online/
source https://www.c-sharpcorner.com/article/custom-people-picker-in-sharepoint-online/
Getting Started With A-Frame - An Overview
A-Frame is a technology of web framework to build a Virtual Reality (VR) experiences in our application. This can be developed from a simple HTML code file without installing any further dependencies. A-Frame is based on top of HTML and making it simple to get started.
source https://www.c-sharpcorner.com/article/getting-started-with-a-frame-an-overview/
source https://www.c-sharpcorner.com/article/getting-started-with-a-frame-an-overview/
How To Load Multiple Images Using Native Image Picker In Ionic 3
Ionic is an open source Framework. Most popular cross-platform mobile app Framework. Helpful to develop or build hybrid mobile apps easily. It will save a lot of time and money.
source https://www.c-sharpcorner.com/article/how-to-load-multiple-images-using-native-image-picker-in-ionic-3/
source https://www.c-sharpcorner.com/article/how-to-load-multiple-images-using-native-image-picker-in-ionic-3/
How To Use Join Operations With Database Using LINQ
In this article. I will demonstrate how we can perform join operation with SQL database using Language-Integrated Query (LINQ).
source https://www.c-sharpcorner.com/article/how-to-use-join-operations-with-database-using-linq/
source https://www.c-sharpcorner.com/article/how-to-use-join-operations-with-database-using-linq/
Install Power BI PowerShell On Your Windows Machine
In this article, we will learn how we can easily install PowerShell for the Power BI on our machine.
source https://www.c-sharpcorner.com/article/install-power-bi-powershell-in-your-windows-machine/
source https://www.c-sharpcorner.com/article/install-power-bi-powershell-in-your-windows-machine/
LINQ Extension Methods - Partitioning Operator - Part Four
This article is continuation of Linq extension methods. In this article I am going to demostrate partitionaning operators like skip, skipWhile, take and TakeWhile.
source https://www.c-sharpcorner.com/article/linq-extension-methods-partitioning-operator-part-four/
source https://www.c-sharpcorner.com/article/linq-extension-methods-partitioning-operator-part-four/
Modifying Profile Page In Dynamics 365 Portal
This article is about customizing Dynamics 365 portal profile page. In this article, we are going to discuss how we can customize Dynamics 365 portal profile page.
source https://www.c-sharpcorner.com/article/modifying-profile-page-in-dynamics-365-portal/
source https://www.c-sharpcorner.com/article/modifying-profile-page-in-dynamics-365-portal/
Overview Of Docker
Docker is a very popular topic nowadays, a lot of good documents are available online nowadays but many of them talk about Linux kernel, UnionFS, etc. Scaring many of us who are not aware of these terms.
source https://www.c-sharpcorner.com/article/overview-of-docker/
source https://www.c-sharpcorner.com/article/overview-of-docker/
Using Rich TextBox In Windows Forms
In this article, I am going to explain how to use a Rich TextBox in Windows Forms app using Visual studio 2017.
source https://www.c-sharpcorner.com/article/using-rich-textbox-in-windows-forms/
source https://www.c-sharpcorner.com/article/using-rich-textbox-in-windows-forms/
Wednesday, August 15, 2018
Step By Step Installation Of Active Directory On Windows Server 2019 Core
I have recently started using windows server core version not only to save space it is also use very low memory to run my domain controllers.
source https://www.c-sharpcorner.com/article/step-by-step-installation-of-active-directory-on-windows-server-2019-core/
source https://www.c-sharpcorner.com/article/step-by-step-installation-of-active-directory-on-windows-server-2019-core/
Azure SignalR Messaging With .Net Core Console App Server And Client
Real-time technologies are now part of every modern applications and SignalR is the most popular .net library to create real time scenarios. Recently Microsoft announced the public preview of Azure SignalR, a cloud based fully managed service to build real time application without worrying about capacity provisioning, scaling, or persistent connections. In this article, we are going to discuss about how to create .Net Core SignalR server console app to broadcast the messages to all the connected clients in real-time without using Asp.net Core SignalR Web App.
source https://www.c-sharpcorner.com/article/azure-signalr-messaging-with-net-core-console-app-server-and-client/
source https://www.c-sharpcorner.com/article/azure-signalr-messaging-with-net-core-console-app-server-and-client/
Install RDLC Extensions In Visual Studio 2017
In this article, you will learn how to enable or install RDLC Report Designer in Visual Studio 2017.
source https://www.c-sharpcorner.com/article/install-rdlc-extensions-in-visual-studio-2017/
source https://www.c-sharpcorner.com/article/install-rdlc-extensions-in-visual-studio-2017/
Poor Man's Web Monitoring Tools
This article shares the idea on how to utilize free tools to download log files from server, upload IIS log files into the database, display the results and compare the baseline and production files.
source https://www.c-sharpcorner.com/article/poor-man-web-monitoring-tools/
source https://www.c-sharpcorner.com/article/poor-man-web-monitoring-tools/
SharePoint Framework - CRUD Operations Using Knockout.JS
In the article Develop First Client Side Web Part, we developed basic SharePoint client web part which can run independently without any interaction with SharePoint.
source https://www.c-sharpcorner.com/article/sharepoint-framework-crud-operations-using-knockout-js/
source https://www.c-sharpcorner.com/article/sharepoint-framework-crud-operations-using-knockout-js/
Using TextBox In Windows Forms
In this article, I am going to explain how to use a TextBox in a Windows Forms app using Visual studio 2017.
source https://www.c-sharpcorner.com/article/working-with-textbox-control-in-windows-forms-application-using-visual-stuudio-2/
source https://www.c-sharpcorner.com/article/working-with-textbox-control-in-windows-forms-application-using-visual-stuudio-2/
Tuesday, August 14, 2018
Combobox In Angular Using Ignite UI
A Combo box control is very commonly use in Web applications where we need to select one item from a list of available items.
source https://www.c-sharpcorner.com/article/combobox-in-angular-using-ignite-ui/
source https://www.c-sharpcorner.com/article/combobox-in-angular-using-ignite-ui/
How To Get The Likes Per Message In Yammer Using PowerShell
In this blog, you will see how to get the likes per message in Yammer using PowerShell.
source https://www.c-sharpcorner.com/Blogs/how-to-get-the-likes-per-message-in-yammer-using-powershell
source https://www.c-sharpcorner.com/Blogs/how-to-get-the-likes-per-message-in-yammer-using-powershell
Angular - How To Pass Value From Child To Parent
Passing values from one page to another is very common and necessary task in most of the applications' development, however, we need some mechanism in Angular also to do the same.
source https://www.c-sharpcorner.com/Blogs/angular-how-to-pass-value-from-child-to-parent
source https://www.c-sharpcorner.com/Blogs/angular-how-to-pass-value-from-child-to-parent
Working With Joins In SQL
In this post, we will discuss how to work with join's and explain the concepts with an example in simple way. I hope this is very useful for beginners and intermediate to help them understand the basic concept.
source https://www.c-sharpcorner.com/Blogs/working-with-joins-in-sql
source https://www.c-sharpcorner.com/Blogs/working-with-joins-in-sql
Call Command Prompt For Different Purposes In Different Ways
How windows command prompt can be called for various different purposes using C#? Sometime you need command window to be shown and sometime it should be hidden and sometime you need to control it's output stream. This article shows 5 different ways how you can call command prompt from a .NET application.
source https://www.c-sharpcorner.com/article/call-command-prompt-for-different-purposes-in-different/
source https://www.c-sharpcorner.com/article/call-command-prompt-for-different-purposes-in-different/
CRUD Operations Using AJAX/JSON
This article shows you the crud operation without any Postback using the technologies AJAX, JSON & jQuery.
source https://www.c-sharpcorner.com/article/crud-operations-using/
source https://www.c-sharpcorner.com/article/crud-operations-using/
How To Create And Apply Label In SharePoint Online
This article is about how we can create and apply labels in SharePoint Online. I am going to explain how we can create labels for retention policies at tenant level so that labels can be applicable across site collections.
source https://www.c-sharpcorner.com/article/how-to-create-a/
source https://www.c-sharpcorner.com/article/how-to-create-a/
How To Use Join Operation With Multiple SQL Database Tables Using LINQ
In this article, I will demonstrate how we can perform join operation with multiple SQL database tables using Language-Integrated Query (LINQ).
source https://www.c-sharpcorner.com/article/how-to-use-join-operation-with-multiple-sql-database-tables-using-linq/
source https://www.c-sharpcorner.com/article/how-to-use-join-operation-with-multiple-sql-database-tables-using-linq/
KenburnsView In Android Using Kotlin
In this article, we will learn how use Kenburnsview in Android using Kotlin. Kenburnsview is an awesome Android library that provides an extension to ImageView that creates an immersive experience by animating its Drawable using the Ken Burns Effect.
source https://www.c-sharpcorner.com/article/kenburnsview-in-android-using-kotlin/
source https://www.c-sharpcorner.com/article/kenburnsview-in-android-using-kotlin/
Learn About SQL Server Architecture
This is my very first article on the understanding SQL Server Architecture. I tried to make this as simple as possible. I just want to share what I learnt. If there is any error or wrong information please leave a comment, I will be obliged to rectify me and grow with that. Happy Learning.
source https://www.c-sharpcorner.com/article/learn-about-sql-server-architecture/
source https://www.c-sharpcorner.com/article/learn-about-sql-server-architecture/
LINQ Extension Methods - Element Operator And Set Operator - Part Three
In this article, we are going to explore another two operators like element operator and set operators. Element operators are used to returning the particular element from the collection and set operators like distinct, excepts, Intersect and union which are used to get the unique element or all element from a single collection or multiple collections based on specific condition or based on our requirement.
source https://www.c-sharpcorner.com/article/linq-extension-methods-element-and-set-operator-part-thre/
source https://www.c-sharpcorner.com/article/linq-extension-methods-element-and-set-operator-part-thre/
Azure Search API
Azure Search is a search-as-a-service cloud solution that gives developers APIs and tools for adding a rich search experience over private, heterogeneous content in web, mobile, and enterprise applications.
source https://www.c-sharpcorner.com/article/overview-of-azure-search/
source https://www.c-sharpcorner.com/article/overview-of-azure-search/
Azure Logic Apps With Step By Step Demo - Part Three
In this final part of the demo series of Azure Logic apps, I am going to show you how you can call Azure Functions from Logic Apps.
source https://www.c-sharpcorner.com/article/azure-logic-apps-with-step-by-step-demo-part-3/
source https://www.c-sharpcorner.com/article/azure-logic-apps-with-step-by-step-demo-part-3/
Search And Highlight Text In Rich TextBox
In this article, I am going to explain how to search and highlight text in Rich TextBox in a Windows Forms app using Visual Studio 2017.
source https://www.c-sharpcorner.com/article/search-and-highlight-text-in-rich-textbox/
source https://www.c-sharpcorner.com/article/search-and-highlight-text-in-rich-textbox/
SharePoint Framework - Integrating Office UI Fabric
SharePoint Framework (SPFx) offers a lightweight, responsive client-side web part development for classic as well modern SharePoint. In this article, we will explore how we can integrate the Office UI Fabric into SharePoint Framework.
source https://www.c-sharpcorner.com/article/sharepoint-framework-integrating-office-ui-fabric/
source https://www.c-sharpcorner.com/article/sharepoint-framework-integrating-office-ui-fabric/
Angular Console Released
The makers of NX and Nrwl/Schematics libraries, the Nrwl team has now introduced(8/8/2018) a new desktop application Angular Console- a UI for the Angular CLI tool.
source https://www.c-sharpcorner.com/news/angular-console-released
source https://www.c-sharpcorner.com/news/angular-console-released
Monday, August 13, 2018
Google Cloud Announces Second Generation App Engine Standard Runtimes, Python 3.7 Included
Google Cloud announces Second Generation App Engine standard runtimes.
source https://www.c-sharpcorner.com/news/google-cloud-announces-second-generation-app-engine-standard-runtimes-python-37-included
source https://www.c-sharpcorner.com/news/google-cloud-announces-second-generation-app-engine-standard-runtimes-python-37-included
Amazon Aurora Serverless Made Generally Available By AWS
Amazon Aurora Serverless is now generally available.
source https://www.c-sharpcorner.com/news/amazon-aurora-serverless-generally-available-announces-aws
source https://www.c-sharpcorner.com/news/amazon-aurora-serverless-generally-available-announces-aws
Angular 6 Application With Cosmos DB And Web API 2
In this article, we will create an Angular 6 application with Web API 2.0. We will see all four CRUD operations and save the data to Cosmos DB. For testing purpose, we can use Cosmos DB emulator and save the data to local system. After successfully completed testing, we can create a Cosmos DB service in Azure also.
source https://www.c-sharpcorner.com/article/angular-6-application-with-cosmos-db-and-web-api-2/
source https://www.c-sharpcorner.com/article/angular-6-application-with-cosmos-db-and-web-api-2/
Introduction To Azure Cloud Computing
Cloud computing means hosted service over the internet, that mean we will run the application in cloud. The main advantage of cloud computing no need to maintain the infrastructure, software and platform on our premises.
source https://www.c-sharpcorner.com/article/introduction-to-azure-cloud-computing/
source https://www.c-sharpcorner.com/article/introduction-to-azure-cloud-computing/
How To Add A User To Yammer Group Using PowerShell
In this blog, you will see how to add user to Yammer group using PowerShell.
source https://www.c-sharpcorner.com/Blogs/how-to-add-user-to-yammer-group-using-powershell
source https://www.c-sharpcorner.com/Blogs/how-to-add-user-to-yammer-group-using-powershell
How To Get A User By Email Address In Yammer Using PowerShell
In this blog, you will see how to get a user by email address in Yammer using PowerShell.
source https://www.c-sharpcorner.com/Blogs/how-to-get-an-user-by-email-address-in-yammer-using-powershell
source https://www.c-sharpcorner.com/Blogs/how-to-get-an-user-by-email-address-in-yammer-using-powershell
How To Get All Yammer Users From A Specific Group Using PowerShell
In this blog, you will see how to get all Yammer users from a specific group using PowerShell
source https://www.c-sharpcorner.com/Blogs/how-to-get-all-yammer-users-from-a-specific-group-using-powershell
source https://www.c-sharpcorner.com/Blogs/how-to-get-all-yammer-users-from-a-specific-group-using-powershell
How To Get All Yammer Messages In A Specific Thread Using PowerShell
In this blog, you will see how to get all Yammer messages in a specific thread using PowerShell
source https://www.c-sharpcorner.com/Blogs/how-to-get-all-yammer-messages-in-a-specific-thread-using-powershell
source https://www.c-sharpcorner.com/Blogs/how-to-get-all-yammer-messages-in-a-specific-thread-using-powershell
How To Create And Publish npm Package
In this article, we learn about creating and publishing of npm package with easy steps.
source https://www.c-sharpcorner.com/article/how-to-create-and-publish-npm-package/
source https://www.c-sharpcorner.com/article/how-to-create-and-publish-npm-package/
Steps To Set Up A Virtual Environment For Python Development
This article covers how we can use virtual environments to work with different versions of Python for different projects.
source https://www.c-sharpcorner.com/article/how-to-install-python-3-and-set-up-a-local-programming-environment-on-ubuntu-16/
source https://www.c-sharpcorner.com/article/how-to-install-python-3-and-set-up-a-local-programming-environment-on-ubuntu-16/
Implement Infinite Scrolling Using Angular 6
In this article, we are going to learn that how to implement infinite scroll using angular 6.
source https://www.c-sharpcorner.com/article/implement-infinite-scrolling-using-angular-6/
source https://www.c-sharpcorner.com/article/implement-infinite-scrolling-using-angular-6/
Introduction To MongoDB - Part One
This article is basically an introductory article which will demonstrate how to start MongoDB
source https://www.c-sharpcorner.com/article/introduction-to-mongodb-part-1/
source https://www.c-sharpcorner.com/article/introduction-to-mongodb-part-1/
Learn SharePoint In Series - Part Thirty Three - Creating A SharePoint List View
In this article I have explained how to create a standard views in SharePoint lists and libraries
source https://www.c-sharpcorner.com/article/learn-sharepoint-in-series-part-thirty-three-creating-a-sharepoint-list-view/
source https://www.c-sharpcorner.com/article/learn-sharepoint-in-series-part-thirty-three-creating-a-sharepoint-list-view/
Matrix In R - Arithmetic Operations / Addition And Subtraction On Matrices In R
In this article we shall learn how to perform arithmetic operations on matrices in R...
source https://www.c-sharpcorner.com/article/matrix-in-r-operation-on-matrix-adding-two-matrix/
source https://www.c-sharpcorner.com/article/matrix-in-r-operation-on-matrix-adding-two-matrix/
Repository And UnitOfWork Pattern - Part Two
In the previous article part 1 we looked at the Repository Pattern that provides an ability to create repository class which holds the data of specific entity or entities in the form of collections and also used to create an abstraction layer between the data persistence (data access layer) and the business logic (business access layer) to perform operations on the data persistence.
source https://www.c-sharpcorner.com/article/repository-and-unitofwork-pattern-part-2/
source https://www.c-sharpcorner.com/article/repository-and-unitofwork-pattern-part-2/
Using ComboBox In Windows Forms
In this article, I am going to explain how to use a ComboBox in a Windows Forms app using Visual studio 2017.
source https://www.c-sharpcorner.com/article/working-with-combobox-control-in-windows-forms-using-visual-studio-20/
source https://www.c-sharpcorner.com/article/working-with-combobox-control-in-windows-forms-using-visual-studio-20/
Export Power BI Report As PDF From Power BI Desktop
Microsoft recently released Export to PDF option from Power BI Desktop. The feature released in the August 2018 update. If you want to explore this feature, update your Power BI Desktop. This article covers, how you can Export the PBIX file as PDF from Power BI Desktop
source https://www.c-sharpcorner.com/article/export-power-bi-report-as-pdf-from-power-bi-desktop/
source https://www.c-sharpcorner.com/article/export-power-bi-report-as-pdf-from-power-bi-desktop/
How To Save Attachments From Outlook To SharePoint List
This article shows how to save office outlook emails attachments to SharePoint List. In this article I am going to save attachment received in Outlook to SharePoint List.
source https://www.c-sharpcorner.com/article/how-to-save-attachments-from-office-outlook-to-sharepoint-list/
source https://www.c-sharpcorner.com/article/how-to-save-attachments-from-office-outlook-to-sharepoint-list/
Microsoft Azure Web Apps - Deployment Slots - From Zero to Hero
This video is the live recording of the second webinar of the series of the free webinars for learning Microsoft Azure, organized by Kasam Shaikh.
source https://www.c-sharpcorner.com/article/microsoft-azure-web-apps-deployment-slots-from-zero-to-hero/
source https://www.c-sharpcorner.com/article/microsoft-azure-web-apps-deployment-slots-from-zero-to-hero/
What Is New With Cognitive QnA Maker Service As Generally Available
This video is a live recording of a webinar organized by Microsoft Azure Vidyapeeth on 9th August 2018. Here we will get a one-hour high-level overview of QnA Maker GA Architecture. Takeaways - 1) Getting started with creating QnA Maker service & Knowledgebase. 2) Connecting QnA Maker Knowledgebase with Azure Bot service 3) How to Migrate QnA Maker preview KB to QnA Maker GA KB
source https://www.c-sharpcorner.com/article/whats-new-with-cognitive-qnamaker-service-as-generally-available/
source https://www.c-sharpcorner.com/article/whats-new-with-cognitive-qnamaker-service-as-generally-available/
Sunday, August 12, 2018
Google Announces Grab And Go For Chromebook With Angular
Google has announces a grab and go program for Chromebooks.
source https://www.c-sharpcorner.com/news/google-announces-grab-and-go-for-chromebook-with-angular
source https://www.c-sharpcorner.com/news/google-announces-grab-and-go-for-chromebook-with-angular
AOT Compilation And Bundling In Angular
In this article, we will discuss about the AOT Compilation and bundling concept in Angular
source https://www.c-sharpcorner.com/article/aot-compilation-and-bundling-in-angular/
source https://www.c-sharpcorner.com/article/aot-compilation-and-bundling-in-angular/
Repository And UnitOfWork Pattern - Part One
Repository as it implies is a place where things are stored and can be found and retrieved whenever needed. Similarly, in computing terms, repository is a central location in which data for a specific type of entity or entities is stored and managed either in a form of collection or table.
source https://www.c-sharpcorner.com/article/repository-and-unitofwork-pattern-part-1/
source https://www.c-sharpcorner.com/article/repository-and-unitofwork-pattern-part-1/
Subscribe to:
Posts (Atom)