TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
About Eval
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Chetan Sanghani (3)
Prashanth Chindam (3)
Pankaj Lohani (3)
Manish Kumar Choudhary (2)
Aman Gupta (2)
Manpreet Singh (2)
Velladurai (2)
Lokendra Singh (2)
Jignesh Trivedi (2)
Akshay Phadke (2)
Abhishek Yadav (2)
Sourav Kayal (2)
Vijayaragavan S (2)
Daniel Gomez (1)
Baibhav Kumar (1)
Jihen Hnena (1)
Sathiyamoorthy S (1)
Rohini Parade (1)
Rahul Kumar Saxena (1)
Scott Lysle (1)
Hanif Hefaz (1)
Shikha Tiwari (1)
Uday Dodiya (1)
Rutika Banode (1)
Himanshu Singh (1)
Nikunj Satasiya (1)
Shilpa Tanwar (1)
Vijay Yadav (1)
Rinki (1)
Ayush Gupta (1)
Sreenath Kappoor (1)
Keyur Pandya (1)
Sanjay Kumar (1)
Manoj Kalla (1)
Virender Verma (1)
Janarthanan Selvaraj (1)
Kasam Shaikh (1)
Ishika Tiwari (1)
Abhishek Chadha (1)
Naveen Kumar (1)
John Godel (1)
Kaviya Balasubramanian (1)
Shiv Sharma (1)
Anubhav Chaudhary (1)
Lakshmanan Sethu Sankaranarayan (1)
Harshal Limaye (1)
Jignesh Kumar (1)
Gaurav Varshney (1)
Allam Purushotham (1)
Sarathlal Saseendran (1)
Ajay Kumar (1)
Dhiraj Poojary (1)
Adriancs (1)
Ziggy Rafiq (1)
Jefferson S. Motta (1)
C# Curator (1)
Chandani Prajapati (1)
Jake Creasy (1)
Jochen Bartlau (1)
Veena Sarda (1)
Abdul Basith (1)
Gul Md Ershad (1)
Naimish Makwana (1)
Mushtaq M A (1)
Shamseer K (1)
Lajapathy Arun (1)
Bohdan Stupak (1)
Nagaraj M (1)
Hadshana Kamalanathan (1)
Vishal Gilbile (1)
Sai Kumar Koona (1)
Sandeep Singh Shekhawat (1)
Habibul Rehman (1)
Jaish Mathews (1)
Mike Gold (1)
Nipun Tomar (1)
Mehreen Tahir (1)
Guest User (1)
Waqas Sarwar (1)
Yatendra Sharma (1)
Amat Ul Jameel Kazmi (1)
Amit Choudhary (1)
Tanmay Pathak (1)
Jean Paul (1)
Related resources for Eval
No resource found
Searching Items in Sitecore without Solr Indexes
10/22/2024 7:24:39 AM.
In Sitecore, we often need to perform searches for items without using Solr. This article explores a recursive search approach using the ManualSearch class to retrieve specific items or lists from the
Understanding Infix, Postfix, and Prefix Expressions/Notations in DSA
10/10/2024 3:36:19 AM.
Infix, prefix, and postfix expressions are three notations for representing mathematical expressions in data structures and algorithms. Infix notation, where operators are between operands (e.g., A +
Power Platform for Admins Connector in PowerApps
10/9/2024 6:38:19 AM.
PowerApps allows users to integrate the "Power Platform for Admins" connector to manage environments efficiently. By using functions like GetAdminEnvironment(), users can retrieve and pagina
Overview Of Azure Redis Cache
10/8/2024 9:19:02 AM.
This article explores caching techniques and their implementation in Azure, focusing on Azure Redis Cache. It explains how caching enhances web application performance by storing frequently accessed d
How To Send Mail Using SQL Server: Part 2
10/8/2024 8:32:47 AM.
This tutorial demonstrates how to send emails using SQL Server 2008. It covers configuring an email profile, selecting data from a student table (tblStudents), and binding that data to an HTML-formatt
Application State vs Session State in Java
9/30/2024 8:36:48 AM.
State management in Java is vital for web applications, categorizing data into Application State and Session State. Application State shares data globally across users, ideal for configurations and ca
How To Execute SQL In SharePoint 2013 And Office 365 Using Nintex WorkFlows
9/27/2024 10:13:52 AM.
This article guides you through executing SQL in SharePoint 2013 and Office 365 using Nintex Workflows. It covers creating a Dev Testing list, adding the "Execute SQL" action, and configurin
Getting Dynamic Input Value and Post to the AJAX function
9/27/2024 3:20:29 AM.
This article explores how to dynamically retrieve input values from a user interface and send them to an AJAX function for processing. It covers essential concepts like event handling and asynchronous
Learn MongoDB Evaluation Operators
9/24/2024 7:19:02 AM.
MongoDB's evaluation operators enable advanced query operations, allowing for dynamic data retrieval beyond simple comparisons. Key operators include $regex for regular expression matching, $mod f
Geographical Information by IP Address in ASP.NET and C#
9/23/2024 9:27:00 AM.
This article explains how to obtain geographical information about website visitors using their IP addresses. It showcases a free service from iplocationtools.com that provides data in XML, JSON, and
Getting an External IP Address Locally using VB.Net
9/20/2024 9:22:02 AM.
This guide covers the essential steps and code snippets for accessing your public IP address from within your VB.Net application, helping you manage network configurations and enhance your programming
Optimizing Searching Algorithms in C# and Reducing Complexities
8/30/2024 6:54:15 AM.
This article explores the implementation of 10 common searching algorithms in C#, detailing their use cases, workings, and complexities. From simple linear searches to more complex algorithms like Bin
File Structure: Writing and Reading Records Efficiently
8/29/2024 8:59:42 AM.
In C programming, fwrite() and fread() manage data storage and retrieval. fwrite() writes structures to a binary file, while fread() reads them back. This involves defining a structure, opening a file
Inner Join vs Cross Apply and Left Outer Join vs Outer Apply
8/28/2024 5:32:30 AM.
In SQL, INNER JOIN and CROSS APPLY differ in functionality; INNER JOIN merges rows based on a condition, while CROSS APPLY uses a table-valued function for dynamic row operations. LEFT OUTER JOIN incl
Implementing Pagination for Large Datasets in Java Web Applications
8/22/2024 12:00:38 PM.
This guide demonstrates how to implement pagination in a Java web application using JSP and Servlets. It covers setting up a data source, handling pagination logic in a servlet, and displaying data wi
Console Application To Fetch SharePoint List Data Using REST API With CAML Query In C# Managed Code
8/22/2024 7:14:27 AM.
Learn how to use SharePoint 2013 REST API with CAML queries in a C# console application. This guide covers fetching data from SharePoint lists using POST methods, setting request headers, and handling
Understanding of Iterators in Python
8/14/2024 5:39:20 AM.
Iterators in Python allow efficient traversal of sequences by implementing iter() and next() methods. Unlike iterables, iterators represent a stream of data and support on-demand value computation, en
Creating Custom Authorization Policy Provider In ASP.NET Core
8/7/2024 10:46:39 AM.
Learn how to implement custom authorization policies in ASP.NET Core using IAuthorizationPolicyProvider. Discover how to create policies dynamically based on runtime information, register them with a
Explaning Encoder-Decoder Models
8/1/2024 6:07:51 AM.
Encoder-decoder models, integral to NLP, include an encoder that processes input sequences into a fixed-length representation and a decoder that generates output sequences. Key components are RNNs, at
SearchGPT Revolutionizes Online Search with AI Capabilities
7/29/2024 6:16:25 AM.
SearchGPT revolutionizes online search by combining GPT-based AI with advanced search algorithms. Unlike traditional engines, it provides direct, conversational answers, enhancing user experience. Key
Overfitting and Underfitting in Machine Learning
7/26/2024 6:08:59 AM.
Overfitting and underfitting are critical concepts in machine learning. Overfitting occurs when a model learns the training data too well, capturing noise and failing to generalize. Underfitting happe
Efficient Data Retrieval with ADO.NET SqlDataReader
7/23/2024 6:15:48 AM.
SqlDataReader in ADO.NET provides fast, forward-only data retrieval from SQL Server databases. It reads data as a stream, minimizing memory usage, and making it ideal for large datasets. Unlike SqlDat
Using DataAdapters and DataSets in .NET
7/22/2024 10:06:58 AM.
In .NET, working with databases often involves handling disconnected data scenarios where data is fetched, manipulated, and then updated back to the database. Two essential components for managing suc
Executing Commands with ADO.NET
7/22/2024 10:02:34 AM.
Explore how to use ADO.NET’s SqlCommand class for executing SQL queries and stored procedures in .NET applications. This guide covers setting up SqlConnection, using methods like ExecuteNonQuery, Exec
What is Incremental Static Regeneration (ISR) in Next Js.?
7/22/2024 6:13:17 AM.
"Incremental Static Regeneration (ISR) in Next.js combines static site generation with server-side rendering, allowing pages to be updated after the initial build. It uses getStaticProps with a r
How to Create Server-Side Pagination, Searching, and Sorting Stored Procedure
7/19/2024 1:36:54 PM.
This article demonstrates how to create a SQL Server stored procedure for server-side pagination, searching, and sorting. The procedure efficiently handles large datasets by dynamically calculating to
How to Implement Memcached in C# ASP.NET MVC Project?
7/19/2024 10:48:08 AM.
Learn how to enhance performance in a C# ASP.NET MVC project using Memcached. This guide covers installing Memcached, integrating it with your application, and implementing caching to improve response
Store Locations and Retrieve Dropdown Data with Stored Procedure
7/3/2024 6:06:48 AM.
Explore efficient location data management with this guide on storing locations in a database table. Learn to utilize stored procedures for streamlined retrieval of dropdown data, ensuring optimized d
Best Use of ChatGPT and How to Search in a Particular Context
7/2/2024 4:35:46 AM.
Explore the optimal applications of ChatGPT, delving into its prowess in natural language processing and contextual understanding. Discover effective strategies for conducting targeted searches within
IIF in Microsoft SQL Server
6/28/2024 6:29:20 AM.
IIF function in SQL, also known as "Immediate If," provides a concise way to perform conditional evaluations within queries. It allows SQL developers to return different values based on whet
Generate List of SharePoint Pages and Owners Using Power Shell
6/24/2024 6:01:05 AM.
Managing large SharePoint sites can be simplified using a PowerShell script with PnP PowerShell. This script automates the retrieval of page details and owners, exporting the data to a CSV file, savin
Contrast b/w 'KeyValuePair<TKey, TValue>' and 'Dictionary<TKey, TValue>' in C#
6/16/2024 1:06:19 PM.
This article explores the features and uses of KeyValuePair<TKey, TValue> and IDictionary<TKey, TValue> in C#. It highlights KeyValuePair's immutability and its use in representing si
How To Use LINQ To SQL For Retrieving Data From SQL Server Database
6/14/2024 10:42:01 AM.
This article explores LINQ to SQL, an ORM framework in .NET for mapping database tables to .NET classes. It covers querying operations like Select, Insert, Update, and Delete using LINQ syntax, which
Various Ways Of Form Submission In ASP.NET MVC - Part One
6/14/2024 10:39:14 AM.
Learn various techniques for form submission in ASP.NET MVC. This series covers @Html.BeginForm and @Ajax.BeginForm methods, HTML5 form attributes, jQuery AJAX with FormData and serializeFormJSON. Enh
Read Data From Azure Cosmos DB Using Power Automate
6/6/2024 11:30:10 AM.
In this article you will learn how to read data from Azure Cosmos DB using Power Automate.
Retrieval-Augmented Generation (RAG) in Generative AI
6/5/2024 4:02:17 AM.
This article delves into the challenges faced by LLM, the utilization of Retrieval Augmented Generation (RAG) patterns, the anatomy of RAG, various search types, and strategies for overcoming LLM obst
What is Retrieval-Augmented Generation (RAG) in Generative AI
6/1/2024 9:05:37 AM.
Large Language Models (LLMs) have become ubiquitous in today’s technological landscape. They perform remarkable feats, often astonishing us with their capabilities, and sometimes leaving us puzzled wi
Creating & Retrieving records from M.S.Access-2007 using Oledb in C#.net
5/31/2024 10:05:52 AM.
Discover how to interact with Microsoft Access 2007 using C# and OleDb. Create and retrieve records seamlessly, employing ADO.NET for efficient database connectivity and manipulation within your C# ap
Inserting & Retrieving records from MS Access 2007 using ODBC
5/30/2024 12:11:36 PM.
This article shows development of a windows application for performing insert, search, update, delete operations & navigation of MS Access 2007 records using ODBC connection.
Inserting & Retrieving records from M.S.Excel-2007 using oledb in C#.net
5/30/2024 12:10:29 PM.
This guide covers how to insert and retrieve records from Microsoft Excel 2007 using OLEDB in C#.NET. It explains setting up OLEDB connections, executing SQL commands for data manipulation, and handli
Explain SQL Wildcard Characters
5/22/2024 9:51:16 AM.
In this article we will learn what is SQL Wildcard Characters. Mastering SQL wildcard characters enhances data retrieval by enabling versatile pattern matching. Learn to use `%`, `_`, `[]`, `^`, and `
Get Comma Separated Values From SQL Server Using Entity Framework (EF)
5/17/2024 10:20:28 AM.
Learn how to retrieve data from SQL Server using Entity Framework (EF) in C#. This tutorial covers querying with LINQ, transforming results into comma-separated values (CSV), and leveraging EF's d
JavaScript Fetch API: Simplifying Data Retrieval
5/14/2024 6:13:58 AM.
Learn how to utilize Fetch API in JavaScript for efficient asynchronous data fetching and seamless integration in modern web development
Train and Validate Datasets in Machine Learning
5/13/2024 8:28:32 AM.
In machine learning, where algorithms are trained to learn patterns from data and make predictions or decisions, the role of datasets cannot be overstated. In this article, we explore the significance
Detailed Approach for Implementing AI Solutions
5/10/2024 8:13:11 AM.
Implementing AI solutions involves problem definition, data collection, EDA, feature engineering, model selection, training, tuning, evaluation, deployment, monitoring, and ethical considerations. Con
Get Activity Details Of All OneDrive Users Using Microsoft Graph API
5/2/2024 9:52:56 AM.
In this article, we will learn how to leverage the Microsoft Graph API to retrieve detailed activity insights for all OneDrive users. Discover user analytics, monitor usage patterns, and integrate dat
Accessing User Information List in SharePoint
5/1/2024 11:36:22 AM.
Explore the ins and outs of accessing user information in SharePoint with our detailed guide. Learn the benefits, features, and limitations of leveraging user data, and follow our step-by-step instruc
Get Client Side and Server Side Data in Grid View Using jQuery and Ajax
4/24/2024 1:18:02 PM.
Learn how to efficiently manage data in a grid view by combining client-side and server-side approaches using jQuery and Ajax. This tutorial guides you through the process of retrieving data from both
ng-init Directive In AngularJS
4/21/2024 2:24:04 PM.
The ng-init directive in AngularJS evaluates expressions in the current scope, initializing variables like arrays of employees. It's used alongside ng-repeat for dynamic content generation, facili
Get List of Followers For a User in a SharePoint Site 2013 Using REST API
3/20/2024 11:47:55 AM.
Retrieve a user's followers list from SharePoint Site 2013 using its REST API. Accessible through GET requests, this feature provides user-centric social networking data, enhancing collaboration a
Creating Functions Dynamically In JavaScript
3/18/2024 12:04:08 PM.
Learn to dynamically create functions in JavaScript, enabling flexible code generation and execution at runtime. Explore techniques for defining functions programmatically to enhance your application&
Enhance SQL Server Stored Procedure Performance – Tuning Tips
3/5/2024 9:26:01 AM.
Covering indexes and filtered indexes in SQL optimize database performance by efficiently retrieving data for queries. Covering indexes include all needed columns, while filtered indexes target specif
Decoding React's Magic: Re-evaluation, Reconciliation, Re-rendering
3/1/2024 10:13:21 AM.
Discover React's core mechanics in 'Unraveling React's Magic.' We break down re-evaluation, reconciliation, and re-rendering, clarifying how they shape seamless UIs. Power of virtual D
D365 Data Retrieval: FetchXml, Paging Cookies, and PowerShell
2/20/2024 6:08:48 AM.
Prepare your PowerShell environment for Dynamics 365 with crucial commands: Install Microsoft.Xrm.Data.PowerShell module for interacting with Dynamics 365 data. Set execution policy to RemoteSigned fo
Get C# Corner RSS Feeds In Blazor Project
2/9/2024 6:59:05 AM.
We can see how to read RSS feeds from C# Corner site and display the feeds in a Blazor project. We will see how to get all posts feeds for an author (author id can be given by user), feeds for latest
Difference Between Raw SQL and Dapper
2/8/2024 8:55:42 AM.
Explore the trade-offs between using raw SQL queries and leveraging Dapper, a micro-ORM for database access in C# development. Delve into performance, code maintainability, and efficiency to make info
Null Coalescing (??) Operator in C#
2/7/2024 11:29:43 AM.
In this article, we will learn about Null Coalescing (??) Operator in C# programming. Explore the Null Coalescing (??) Operator in C#, a versatile tool for handling null values. Learn its syntax, usag
Caching Strategies Blueprint: Accelerate Data Retrieval Performance
1/24/2024 6:47:14 AM.
This article explores the significance of caching in software development, emphasizing its role in enhancing data retrieval efficiency. It covers caching principles, trade-offs, cache hierarchy, hits
Using Google OAuth 2.0 as User Sign-In for ASP.NET in C#
1/23/2024 4:17:26 AM.
Integrate Google OAuth 2.0 with ASP.NET in C# for seamless user authentication. Unlock the potential of Google OAuth Sign-In for your website. This comprehensive guide covers API registration, obtaini
How to Build an Interactive and Responsive Form
12/28/2023 5:03:01 PM.
Discover the world of web development with our latest tutorial on building a responsive and interactive form using HTML5, CSS3, and JavaScript. From the fundamentals of HTML5 to styling with CSS3 and
The Porter Method - An Approach to Stemming in Information Retrieval and Text Analysis
11/2/2023 4:58:32 AM.
Porter Stemming Algorithm in NLP: learn what it is with C# sample. As a methodology in NLP, stemming focuses on simplifying inflected or derivative words down to their stems, roots, or base forms. Suc
Validation Controls In ASP.NET
9/22/2023 6:55:55 AM.
Validation is an important part of the user interface of a Web application. ASP.NET provides a list of validator controls to validate user input. In this article, I will explain the Validation Control
Retrieve Dataverse User Details with Power Automate
9/5/2023 4:44:58 AM.
In this article, we will delve into the process of retrieving user data from Dataverse through the use of Power Automate. Our focus will encompass both System Users and Active Directory (AD) Users, pr
Data in High Dimensions: Unveiling the Potential of Vector Databases
8/30/2023 10:51:05 AM.
Unlock the potential of high-dimensional data with vector databases. Discover how these specialized databases revolutionize image recognition, recommendation systems, and natural language processing.
Using Langchain to Extend an OpenAI Bot with Chat and Source Retrieval
8/23/2023 11:03:03 AM.
Need Of Polyglot Persistence
8/21/2023 9:43:26 AM.
Polyglot Persistence refers to the practice of using multiple database systems, each optimized for a specific type of data storage and retrieval, within a single application or system architecture. Th
Enhancing Security with Microsoft 365 Secure Score
5/18/2023 8:17:29 AM.
By identifying opportunities to strengthen security throughout your organization, Identity Secure Score gives organizations greater insight and control over their security posture.
Eval In JavaScript As A Hacker's Dream
3/14/2023 6:01:26 AM.
This article will explain the concept of eval. What does eval do? How is it a hacker's dream?
Getting Specific YouTube Video using C# .NET and YouTube API
2/9/2023 10:55:10 AM.
In this article we will learn how to get Videos details of specific video by video id.
Easiest Ways To Find The UDID In iOS (iPhone/iPad)
1/30/2023 9:12:36 AM.
In this article, you will learn about easiest ways to find the UDID in iOS (iPhone/iPad).
Short-Circuit Evaluation In C#
12/1/2022 8:56:21 AM.
In this article we will have a deep-dive discussion about C# short-circuit evaluation.
Practical Usage of NameValueCollection in C#
8/24/2022 5:38:58 AM.
In this article, we are going to see the practical usage of a NameValueCollection.
Leveraging Lazy Evaluation
6/8/2022 7:55:10 AM.
In this article, you will learn about leveraging lazy evaluation.
Eval Keyword In Python
9/29/2021 1:12:09 PM.
This article is useful to understand switcher and eval in python.
Microsoft Azure Monitoring Evaluation
6/2/2021 2:30:17 PM.
In this article, you will learn about Microsoft Azure Monitoring Evaluation.
CRUD Operation With Image Insertion and Retrieval in ASP.Net MVC4 Through WCF
4/15/2021 7:03:16 AM.
This application lets you perform CRUD operations on a table with an image column along with other text columns.
MatchEvaluator Delegate of a Regular Expression Replace Method in ASP.Net
3/17/2021 10:38:13 AM.
This article explains the MatchEvaluator Delegate of a custom verification for each match found by a Regular Expression Replace method.
History And Evaluation Of Cloud Computing
2/11/2021 3:10:09 PM.
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 in
How To Evaluate Variables On The Basis Of Dependent Variables In R
1/29/2021 1:47:27 PM.
In this article, I am going to demonstrate how to evaluate variables as a function of two dependent variables from a dataset together in a model.
Error: WebForms UnobtrusiveValidationMode Requires a ScriptResourceMapping For jQuery in .Net
1/29/2021 10:56:12 AM.
This article explains how to remove an error that is the title of an article in .Net Framework 4.5. This error is issued when you use the RequiredFieldValidator control on any other server control.
How To Evaluate Dependency Among Variables In R
1/20/2021 4:30:29 PM.
In this article I am going to demonstrate how to evaluate dependency between variables from dataset.
Remove Duplicate Values From Array in JavaScript
4/22/2020 2:07:58 PM.
This article explains how to remove duplicate values from a single array list.
Parsing JSON Data Using JavaScript
4/16/2020 6:23:52 PM.
In this article I explain how to parse JSON data using JavaScript. 
Car Evaluation In ASP.NET Core Using ML.NET
12/23/2019 9:58:04 AM.
In this article, we'll learn how ML.NET framework is used to build, evaluate, train and consume the Car evaluation machine learning model and integrate them into ASP.NET Core MVC application.
Visual Studio 2019 - Individually Evaluate Live Share
7/1/2019 9:04:44 AM.
In this article, I am describing a way to evaluate VS 2019 Live Share feature. Live Share is for team collaboration, but you can have a look at it and test it individually before adopting it for your
CodeDom Calculator - Evaluating C# Math Expressions Dynamically
5/13/2019 4:12:57 AM.
This article describes how to use CodeDom and Reflection to Create a Calculator that can evaluate simple and complex math expressions on the fly.
System Analyst: Part 2
12/5/2018 3:23:57 AM.
The System Analyst is an “IT Business Analyst” who selects and configures computer systems for an organization or business. He is the one who guides through the development of an information system. D
Functional Programming In C++
11/26/2018 10:42:29 AM.
This article will show you an alternative way of using C++; How to write functional code in C++. You’ll see how to write more concise, safer, readable, reasonable code.
SharePoint Hosted App Part For List Items Retrieval
3/8/2017 3:06:39 PM.
In this article, you will learn about SharePoint hosted app part for list items retrieval.
Configure The Data Retrieval Service In SharePoint 2013 Central Administration
2/1/2017 10:20:53 AM.
In this article, we will see how to configure the data retrieval Services in SharePoint 2013 central admin.
SharePoint 2016 Central Admin - Application Management - Configure Data Retrieval Service
1/11/2017 11:17:07 AM.
In this article, you will learn how to configure Data Retrieval Service in SharePoint 2016 Central Admin.
Interpret Method Output Value To Evaluate Method Expression In Cognitive Service Academic Knowledge API
11/10/2016 5:21:27 PM.
In this article, you will learn how to interpret Method Output value to evaluate Method Expression in Cognitive Service Academic Knowledge API.
Cognitive Service Academic Knowledge API - Evaluate Method Using UWP With Azure, XAML And C#
11/9/2016 4:33:33 PM.
In this article, you will learn Cognitive Service Academic Knowledge API - evaluate method, using UWP with Azure, XAML and C#
Validation Controls in ASP.Net
5/19/2015 4:31:12 PM.
In this article, we will learn how to do validations in ASP.NET.
WCF Service to Insert and Retrieve Data From SQL Server 2012 Express
1/30/2015 12:32:24 PM.
In this article you will learn how to create a WCF service for Insertion and Retrieval of data.
Various Ways to Parse JSON Data
10/29/2013 2:06:24 PM.
In this article we will learn various styles to parse JSON data. This article may help young web developers beginning to develop web applications with various new technologies, like JavaScript, XML, Ajax, jQuery and so on.
Entity Framework 4 and TableValue Type in Stored Procedure (Fix)
10/4/2013 5:02:32 AM.
Entity Framework 5 has been released with .Net framework 4.5 and it now supports user-defined table valued types as a parameter in a Stored Procedure.
Data Retrieval From Database In F#
9/21/2013 5:58:18 PM.
This article shows how to fetch the records from the database to a Windows Forms application.
Test Reports in Software Testing
5/1/2013 3:55:39 PM.
Test Report is a document that records data obtained from an experiment of evaluation in an organized manner.
SharePoint 2010 - Quick Retrieval of Site Collection Size
11/10/2012 7:00:33 AM.
In this article we will see how to solve a real-life scenario involving retrieving the size of libraries & lists.