Resources  
  • Options Pattern Named Options in .Net Core with examplesMar 29, 2024. Learn how to implement the options pattern and validation in .NET Core using named and default options. Explore techniques for binding configurations, fetching options in APIs, injecting services into named options, and utilizing interfaces like IOptionsSnapshot and IConfigureNamedOptions.
  • Temporary Tables vs Common Table Expressions in SQL ServerMar 29, 2024. In this article, we will learn what is Differences Between Temporary Tables and Common Table Expressions in SQL Server. Temporary tables and Common Table Expressions (CTEs) are SQL Server tools for data manipulation.
  • Options Pattern in .NET Core with ExamplesMar 28, 2024. Options Pattern in .Net Core with examples
  • Options Pattern Validation in .NET Core with ExamplesMar 28, 2024. .NET offers built-in resources for validating settings to ensure correctness without manual checks. Techniques like data annotations and custom validations streamline the process, enhancing configuration reliability and maintenance.
  • Dropdown Options Dynamically from SharePoint List in Power AppsMar 23, 2024. How to bind dropdown option dynamically from SharePoint List in Power Apps. Power Apps enables custom app creation without extensive coding. Learn to dynamically populate dropdowns from SharePoint lists for efficient, consistent, and scalable applications with this step-by-step guide.
  • Important PySpark Import StatementsMar 21, 2024. PySpark, the Python API for Apache Spark, has gained immense popularity for its ability to handle big data processing tasks efficiently. In this article, we'll explore the top five import statements in PySpark and delve into their significance in building robust data processing pipelines.
  • Creating Global Option Sets & Using Them Effectively in CRMMar 18, 2024. To create a Global Option Set in Dynamics 365, define a set of standardized values applicable across multiple entities. Then, reference this set when creating option set fields, ensuring consistent data entry and easier management across the CRM system.
  • How Can I Use Imported Constant in Template Section in Vue.jsMar 18, 2024. To utilize imported constants in the template section of Vue.js, ensure they're declared within the component's script section. Then, reference them directly within the template for seamless integration.
  • How to Migrate Outlook PST Files to Office 365Mar 11, 2024. Explore methods to migrate Outlook PST files to Office 365 Mailbox. Ge the best solutions to migrate PST files into Office 365 in easy steps.
  • Leveraging Compiled Queries for Enhanced Performance in LINQMar 09, 2024. Compiled queries in LINQ allow developers to pre-compile LINQ queries into executable delegates, reducing the overhead of query compilation and optimization. By caching the compiled query execution plan, compiled queries improve the performance of frequently executed or complex queries in C# applications.
  • Decoding Expression Trees in C#Mar 08, 2024. This article contains the details of how to Decoding Expression Trees in C#.
  • Understanding Sharing in Lists on SharePoint Communication SitesMar 05, 2024. This guide provides detailed instructions on utilizing the Share option in lists on SharePoint Communication Sites. It covers the login steps, navigating to lists, selecting items to share, opening the Share dialog, adding recipients, selecting permission levels, and sending the invitation.
  • What Is Code-Splitting in React.js?Mar 05, 2024. Code-splitting in React is a technique to optimize application loading by splitting code into smaller chunks, loaded only when needed. Explore dynamic imports and React.lazy() with examples.
  • What Is Route-Based Code Splitting in React.js?Mar 05, 2024. Route-based code splitting in React.js enhances performance by loading only the necessary code for specific routes or pages. This technique is crucial for large applications with multiple routes, ensuring optimized loading times. To implement, use dynamic imports with React Router and wrap components in Suspense for a seamless user experience.
  • How to Import a CSV File in R with Easy StepsFeb 28, 2024. In this article, we'll delve into importing a CSV file in R. We'll explore two user-friendly methods to accomplish this task: leveraging the intuitive Graphical.
  • Exporting and Importing Site Collection Term Stores In SharePointFeb 27, 2024. Looking to streamline your SharePoint management? Learn how to efficiently export and import Site Collection Term Store Groups! ?? From exporting your Term Store Groups for backup or migration purposes to importing them into new site collections, we'll walk you through the step-by-step process.
  • Angular URL/Site Validation using Regular Expression and Bootstrap with Reactive FormsFeb 26, 2024. Steps to add validation for URL using the regex pattern in the angular application. I will explain steps to create a form with text input using the reactive forms in angular. This input field will only accept the URL.
  • Java Applet Design: File, Edit, and Search Options with ActionPerformed FunctionsFeb 26, 2024. Create an Applet with the menu bar and add the following menus: File, Edit and Search. Add default menu items to the respective menus. In the File menu, add the following items: New, Open, Save and Close.
  • What Are Inline Conditional Expressions in React.jsFeb 26, 2024. In React, leverage inline conditional expressions like the ternary operator or logical && operator to dynamically render elements based on conditions. Enhance UI flexibility and readability with these versatile techniques.
  • Why we should learn C#?Feb 26, 2024. This article explores the reasons behind choosing C# over other languages, delving into its evolution, key features like object orientation, lambda expressions, LINQ, generics, and its adaptability for modern development needs.
  • Template Literals In JavaScriptFeb 24, 2024. JavaScript template literals are an effective tool for working with and creating strings. They were first included in ECMAScript 6 (ES6).
  • .NET Delegates for Mere Mortals: IntroductionFeb 19, 2024. Explore .NET delegates practically in this article. Learn to use delegates for flexible, reusable code. Follow examples, download source code, and understand delegate syntax, including anonymous methods and lambda expressions.
  • How to Create a SharePoint List Directly from ExcelFeb 13, 2024. Learn to seamlessly migrate Excel data to SharePoint lists. Enhance collaboration and data management with this step-by-step guide.
  • How to Import Azure Wiki Contents into a JSON FileFeb 13, 2024. In today’s digital age, organizations often depend on collaborative tools like Azure Wiki to streamline knowledge sharing among team members. However, there are situations when you might need to export this content for further analysis, archival purposes, or integration with other systems.In this article, we’ll see how to import Azure Wiki content into a JSON file using Azure DevOps Services REST API with Python.
  • Local Temp Tables, Global Temp Tables, Table Variables, and CTEs ComparisonFeb 12, 2024. In SQL database management, optimizing data storage is vital for efficient query execution. Local and global temporary tables, table variables, and CTEs are versatile options for temporary data storage, each with distinct use cases.
  • Import Power BI Visual from AppSource to Your WorkspaceJan 24, 2024. Power BI comes with many out-of-the-box visuals that are available in the Visualizations pane. Discover how to enhance your Power BI reports with certified visuals from AppSource. Learn the step-by-step process to import and add these visuals to your reports in Power BI Desktop or Service.
  • Handling HTTP Options Method in Angular and C#Jan 12, 2024. Learn about the HTTP OPTIONS method in this tutorial, focusing on how AngularJS frontend and C# backend work together. See how the AngularJS controller uses OPTIONS requests to communicate with the C# backend's Web API, exploring different options for interacting with the target resource.
  • Deleting Duplicate Records Using CTEJan 09, 2024. In this article we will understand how to delete duplicate rows and records from table using Common Table Expression (CTE) in SQL Server.
  • Default Lambda Parameters in C# 12Jan 05, 2024. C# 12 introduces a game-changer: default lambda parameters. This article delves into this powerful feature, showcasing its functionalities, advantages, and practical applications through detailed examples across diverse scenarios. Learn how to reduce code duplication and enhance readability.
  • What is Collection Expressions in C# 12?Jan 03, 2024. Forget the days of writing mountains of code just to create simple lists or arrays. C# 12 unleashes collection expressions, your new superpower for crafting collections with ease and elegance. This friendly guide demystifies the magic behind these expressions, even if you're a coding newbie.
  • Action and Func Delegates in C#Jan 02, 2024. Unlock the potential of Action and Func delegates in C# programming. Dive into the world of expressive and readable code, utilizing these powerful tools for method-passing, event handling, and more. Happy coding!
  • Essential Features of C# 12 You Need to KnowDec 28, 2023. Unlock C#'s hidden potential with features that make coding a breeze. Streamlined constructors, effortless collections, and enhanced lambdas await!
  • Dynamics 365 CE and Shopify Integration OptionsDec 27, 2023. This article is about Dynamics 365 CE and Shopify integration options and the resources which can be helpful for this integration.
  • Table(s): Temp Table, Table Variable and CTE (Common Table Expression)Dec 26, 2023. This article will discuss SQL Table like items, including temp table, table variable, CTE, Table-valued Parameters.
  • Filter Options in Power BI VisualsDec 14, 2023. Exploring Filter Options in Power BI Visuals. Power BI, Microsoft's potent business intelligence tool, amplifies data analysis with versatile filter options. Uncover insights by exploring columns, relative date, visual-level, page-level, drill through, and top/bottom filters, enhancing user experience and reporting impact.
  • Collection Expressions in C# 12Dec 12, 2023. C# 12.0 introduces collection expressions, streamlining collection initialization syntax. This evolution enhances code conciseness, readability, and performance, simplifying developers' interaction with arrays, lists, and more.
  • Understanding LIKE vs ILIKE in PostgreSQLDec 05, 2023. In this article, we will focus on the differences between the LIKE and ILIKE operators, and how to use them effectively.
  • Read and Import Data from PDF File using MSFT FabricDec 04, 2023. Read and Import Data from PDF File using MSFT Fabric.
  • Display Loading or Processing Message Inside DataTableNov 27, 2023. displays a loading screen while data is being loaded into a DataTable using JavaScript, you can use a combination of HTML, CSS, and JavaScript. Below is a simple example demonstrating how you can achieve this using the DataTables library and a loading spinner.
  • Hide Options from OptionSet in Dynamics 365 using JavaScriptNov 10, 2023. Hide options from OptionSet in Dynamics 365 using JavaScript
  • Simplify Your Code with Switch Expressions: Patterns and ExamplesNov 06, 2023. In C#8 switch statement enhanced with powerful feature that can simplyfy your code and make it more readable and maintainable. In this article We will explore into C# 8 switch expression and how to use in our code and make it more readable and how to use in different way to write conditional logic and how to leverage pattern matching functionality using switch.
  • Execute XPath expression Action in Desktop flow using Microsoft Power AutomateNov 04, 2023. Reading this article, you can learn how to use Execute XPath expression in Desktop flow using Microsoft Power Automate
  • Getting Started with Regex in C#Oct 18, 2023. Regex, or regular expressions, are essential for text processing in C#. They facilitate pattern matching, data extraction, and validation, empowering developers with versatile and powerful text manipulation tools.
  • How To Show The Power Automate Complete Expressions?Oct 16, 2023. Step by step details to show the Microsoft Power Automate complete expressions
  • How To validate Appsetting.json Configuration Values In .NETOct 16, 2023. In .NET applications, the appsettings.json file is commonly used to store configuration settings. It's essential to validate the values stored in this file to ensure that they meet the required format, data type, or specific constraints defined by the application. Validation of appsettings.json configuration values in .NET involves implementing checks and safeguards to confirm that the values are valid and usable by the application. This validation process helps prevent runtime errors and ensures the application behaves as intended, adhering to the specified configuration guidelines.
  • Implementing DATEDIFF Function In Data Factory / Synapse Via Pipeline ExpressionsSep 27, 2023. Implementing DATEDIFF function in Data Factory / Synapse via Pipeline ExpressionsImplementing the DATEDIFF function in Azure Data Factory or Azure Synapse Analytics using pipeline expressions allows you to calculate the difference between two dates and times. This can be helpful for various data integration and transformation tasks, such as calculating the age of records, measuring time intervals, or scheduling data pipelines based on date differences.
  • Using .NET Core Option Pattern for Appsettings.jsonSep 21, 2023. This article guides you through reading configuration values from the Appsettings.json file in .NET Core using IConfiguration and the Options Pattern, covering connection strings, key-value pairs, and structured data.
  • Restore a Table from a Backup Database through Restore/ExportSep 19, 2023. This article is to discuss how to recover one table from a backup file
  • What is Threading in C#?Sep 15, 2023. Threading in C# empowers concurrent task execution within a single process. Enhance application performance, responsiveness, and scalability for complex operations. Learn the basics and explore advanced topics.
  • Simplifying Code with Pattern Matching in C#Sep 11, 2023. Discover how pattern matching in C# can simplify your code, improve readability, and enhance your development workflow. This comprehensive guide explores various pattern types, including type, constant, property, tuple, and positional patterns, and reveals how they can be applied in real-world scenarios.
  • IoT Integration: Blending OT and IT for Seamless ConnectivitySep 01, 2023. In a world of technological evolution, the fusion of Operational Technology (OT) and Information Technology (IT) is reshaping the landscape of the Internet of Things (IoT). This article explores the significance of OT and IT within IoT, revealing their transformative potential. It delves into the synergy between these traditionally distinct domains, highlighting advantages like data synergy, edge computing, predictive maintenance, security enhancements, and end-to-end visibility.
  • Exploring Math - Trig, Parent - Child and Relationship Functions in DAXAug 29, 2023. This segment goes beyond the basics and explores functions like CALCULATE, FILTER, and ALL. It covers techniques for creating dynamic measures, time intelligence functions, and handling more intricate data modeling scenarios. Learners will gain insights into optimizing DAX formulas, solving real-world business problems, and building sophisticated data models for enhanced reporting and analysis in Power BI.
  • Exploring Statistical, Table - manipulation and Text Functions in DAXAug 29, 2023. This segment goes beyond the basics and explores functions like CALCULATE, FILTER, and ALL. It covers techniques for creating dynamic measures, time intelligence functions, and handling more intricate data modeling scenarios. Learners will gain insights into optimizing DAX formulas, solving real-world business problems, and building sophisticated data models for enhanced reporting and analysis in Power BI.
  • The Role of Java Standard Tag Library- EL (JSTL-EL) in JSPAug 23, 2023. The JSTL EL or JSTL Expression Language is used by JSP Programmer in order to avoid the usage of Java Code for accessing data.
  • Power BI DAX Top 20 Functions For BeginnersAug 22, 2023. Power BI DAX Top 20 Functions For Beginners. Power BI's Data Analysis Expressions (DAX) language is a powerful tool for creating custom calculations, aggregations, and transformations in Power BI. Here are the top 20 DAX functions for beginners.
  • Import SSL Certificate to AWS Certificate Manager (ACM)Aug 02, 2023. Learn how to import an SSL Certificate into ACM (AWS Certificate Manager)
  • Git – SourceTree custom actions for “skip-worktree” optionJul 18, 2023. We show how to add to SourceTree custom menus to manage “skip-worktree” option
  • CTE (Common Table Expression) and Recursive CTE in SQL ServerJul 10, 2023. Learn about the Common Table Expression (CTE) in SQL Server with the WITH clause. Simplify code, improve query readability, and use recursive queries with the SQL WITH clause.
  • Disabling the "Remember Me" Option from Azure AccountJun 10, 2023. In today's digital landscape, user privacy and data security are paramount concerns. Online platforms and services often provide a "Remember Me" or "Keep me signed in" option, allowing users to remain logged in for extended periods. While this feature offers convenience, it also introduces potential security risks. This article explores the importance of ensuring the option to remain signed in is hidden and discusses the benefits it brings to both users and service providers.
  • How to Generate a Standalone Executable File from C# Project in Visual Studio 2022May 29, 2023. In this article, we will explore the process of generating a standalone executable file from a C# project in Visual Studio 2022. A standalone executable file allows you to distribute your application to end users without the need for them to have the .NET Framework or any other dependencies installed on their machines.
  • Mastering Virtual Machine Deployment in Azure: In 8 steps.May 10, 2023. This title suggests that the article will provide readers with a comprehensive guide to creating virtual machines in Azure, which will help them to become proficient in this essential skill. The title is catchy and attention-grabbing, making it more likely that readers will want to read the article.
  • Tips and Tricks for using Visual Studio efficientlyMay 09, 2023.
  • Unpacking Azure's Storage Account Options: Which One is Right for You?⚡May 05, 2023. This article is a comprehensive guide to the different types of storage accounts available in Azure. It covers everything from general-purpose v2 storage accounts to specialized blob, file, queue, table, and archive storage accounts. By understanding the different options, readers will be able to choose the right storage solution for their workload and ensure that their data is secure, available, and scalable in the cloud.
  • What Are The Basic HTML Form ControlsMay 02, 2023. The HTML is defined form controls to manage the form page, registration page, sign up page, etc. That means those controls are used in the HTML form page, called HTML form controls. Here controls mean handling the HTML form tags should be used for creating a responsive form page.
  • New Features In C# 12Apr 22, 2023. We're excited to show you three new features for C# 12:
  • C# 12's Switch Expressions: A More Powerful Alternative to Traditional Switch StatementsApr 17, 2023. C# 12's Switch Expressions: A More Powerful Alternative to Traditional Switch Statements
  • Azure Pricing Models: Understanding The Different Pricing OptionsApr 11, 2023. In this article, we'll discuss the Azure pricing models: Understanding the different pricing options.
  • The Fastest Way To Use Regular Expressions In Microsoft .NET 7Apr 06, 2023. In this article, you will learn about the Fastest Way to Use Regular Expressions in Microsoft .NET 7.
  • Count Number Of Character Occurrences In A String Using JavaScriptApr 04, 2023. In this article, I am going to demonstrate various way to count number of character occurrences in a string javascript
  • Common Table Expression In SQL ServerMar 31, 2023. This article provides a practical guide to SQL CTE (Common Table Expressions), complete with examples that demonstrate how to use this powerful SQL feature to improve query performance and simplify complex queries. It covers the basics of CTE, including syntax and usage, and also delves into advanced topics such as recursive CTEs and using CTEs to implement complex calculations. Whether you're a beginner or an experienced SQL developer, this article is a valuable resource for mastering the use of CTEs in your SQL queries.
  • Trigger Condition Expression - SharePoint Columns Compare And Trigger Only If Not EqualFeb 22, 2023. Power Automate Flow - Trigger condition expression - SharePoint Columns Compare and trigger only if not equal.This article will explain how we can create an automated MS flow with a trigger condition to run only when two column values of a SharePoint List / Library is not equal
  • Import Excel Data To SharePoint Online Using PowerShellFeb 02, 2023. In this article, we will go through how to import Excel File Data (.xlsx) to SharePoint online list using PnP PowerShell command.
  • Common Table Expression (CTE) In SQL ServerDec 15, 2022. Simplify complex joins and subqueries using SQL Server Common Table Expressions or CTEs. It also provides a way to query hierarchical data. This article provides a complete overview of CTEs, types of CTEs, benefits, drawbacks, and how to use them with SQL Server.
  • AWS Database ServicesOct 18, 2022. AWS Database different Services with usage.
  • DevOps Pipeline (2), Import/Export And CloneOct 11, 2022. This article will discuss DevOps Pipeline Clone and Import through Export
  • How To Add Custom Add-Ins To MS WordOct 07, 2022. This article shows you how to add add-ins to word desktop.
  • How To Add Add-Ins In PowerPoint Sep 20, 2022. In this article, you will learn how to add custom add-ins.
  • Derived Tables Vs Common Table ExpressionsAug 28, 2022. In this article, you will learn about Derived Tables Vs Common Table Expressions.
  • How To Deploy Excel Add-ins To Your OrganizationAug 12, 2022. This article show you how to deploy excel add-ins in your organization.
  • Elegant JavaScript - How Do They Write It?Aug 08, 2022. In this article, you will learn about Elegant JavaScript.
  • How To Add Custom Add-Ins To ExcelJul 05, 2022. In this article, you will learn how to add Excel add-ins.
  • How To Deploy PowerPoint Add-ins To Your OrganizationJun 15, 2022. This article shows you, how to deploy PowerPoint add-ins.
  • How To Deploy Word Add-Ins To Your OrganizationJun 03, 2022. This article show you how to deploy word add-ins to your organization.
  • Why Python Is The Greatest Of All TimeMay 27, 2022. Python is one of the code-less, high level, and even object-oriented programming language that is commonly used for developing websites, software, data inspection and for the task-automation. The highlighted scenario of Python is all about its basic and hands down syntax which makes it more intense in terms of its acceptance
  • How To Create Excel Add-InsMay 10, 2022. in this article i will show you how to create Excel Add-ins
  • Import PowerApps Component Framework (PCFx ) Into Model Driven PowerAppsMay 06, 2022. This article will help you import sample PCFx component into PowerApps
  • Create A PowerApps Component Framework (PCFx ) Using Custom Code In PowerAPPsMay 06, 2022. Create a PowerApps Component Framework (PCFx ) using Custom Code in PowerAPPs
  • Import CSV File Into SQL Server Using SQL Server Management StudioMay 04, 2022. In this article, you will learn how to import CSV file into SQL server using SQL server management Studio.
  • Learn Postman Step By Step - Import Via cURL, HARMay 04, 2022. In this article, you will learn how to import Via cURL, HAR.
  • Understand Switch Statement In Power AutomateApr 12, 2022. Generally to handle multiple conditions then like in javascript and C# .net switch will be used, in the same way in Power automate also we can use Switch action. In this article we can see how it can be used to decide whether a person can take vaccination or not.
  • Handle Nulls In Parse JSON Action In Power AutomateApr 07, 2022. Whenever working with json payload’s in power automate, always a possibility of receiving null values inside json, where Parse JSON Action will be errored out because of these null values. To handle this we have to modify Schema of the generated Schema for the provided json.
  • How To Create PowerPoint Add-InsApr 04, 2022. in this article, I will show you how to create PowerPoint Add-ins
  • Options Pattern In .NET 6.0Mar 26, 2022. Read configuration data in .NET apps using options pattern that enables strongly typed access to the configuration settings.
  • Understand Bound Action In Power AutomateMar 25, 2022. During certain scenarios it is required to call bound action . To call a bound action we can do it with javascript , plugins and power automate. In all the other methods except power automate you have to write explicit logic to call an bound action. As an example, we call a sample bound action which was built for contact entity/table from power automate.
  • How To Deploy Outlook Add-ins To Your OrganizationMar 19, 2022. This article provides a comprehensive guide on deploying Outlook add-ins to organizations for other users. It covers the step-by-step process of deploying add-ins using Office 365, ensuring easy access for users within the organization.
  • How To Publish Outlook Add-Ins Using Visual Studio CodeMar 17, 2022. In this article, you will learn how to publish outlook add-ins using visual studio code.
  • How To Create Word Add-InsMar 16, 2022. in this article I will show you how to create word add-ins.
  • Format Number In Power Automate Mar 14, 2022. Number Formatting during few scenarios is required based on the customer requirement. In Power Automate, this can be achieved with Format Number Action. As an example, numeric value ,currency , Mobile numbers were shown using Format Number Action.
  • CTE (Common Table Expression) and Recursive CTE in MS SQL ServerMar 11, 2022. In this article, we going to explore about CTE and Recursive CTE in MS SQL Server and their benefits.
  • Usage Of Peek Code In Power AutomateMar 09, 2022. In Power Automate, at times we need to write expressions manually, a quick way of doing is by using Peek code functionality that is present in every action in Power Automate . Especially this Peek code comes for rescue, when ever we are trying to work on actions like Lists, lookup values, Flow trigger conditions Peek code will be useful.

About Import-Option-in-Expression-Blend-4

NA

OUR TRAINING