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 mapping
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Anand Lakshminarasimh (9)
Scott Lysle (6)
Jignesh Trivedi (4)
Sardar Mudassar Ali Khan (4)
Sai Sherlekar (3)
Kishore Chowdary (3)
Tin Lam (2)
Kaviya Balasubramanian (2)
Ajay Kumar (2)
Sachin Kalia (2)
Prashant Bansal (2)
Manpreet Singh (2)
Gayan Peiris (2)
Shridhar Sharma (1)
Ishika Tiwari (1)
Punar Dutt Rajput (1)
Aman Gupta (1)
Rob Moulis (1)
Altaf Ansari (1)
Hamid Khan (1)
Prashant Nimbare (1)
Ashish Bhatnagar (1)
Krishna Garad (1)
Allani Saikumar (1)
Nimit Joshi (1)
Vipul Malhotra (1)
Munesh Sharma (1)
Prashant Shinde (1)
Sumit Gupta (1)
Abhimanyu K Vatsa (1)
Vijay Prativadi (1)
Anupam Singh (1)
Jitendra Mesavaniya (1)
Ankur Mistry (1)
Venkateshwar Reddy (1)
Ramasagar Pulidindi (1)
Sanjoli Gupta (1)
Najath Risni (1)
Amit Mohanty (1)
Ehsan Sajjad (1)
Raj Bhatt (1)
Pushpendra Shukla (1)
Jaydeep Suryawanshi (1)
Sathya N (1)
Achalesh Lakhotiya (1)
Akhil Mittal (1)
Sandeep Singh Shekhawat (1)
Neophytos Christodoulides (1)
Levent Camlibel (1)
Ankit Kanojia (1)
Sagar Pardeshi (1)
Vishal Gilbile (1)
Prabhakar Maurya (1)
Diptimaya Patra (1)
Shweta Lodha (1)
Mahender Pal (1)
Dhruvin Shah (1)
Abdul Rasheed Feroz Khan (1)
Shakti Saxena (1)
Sibeesh Venu (1)
Vinodh Narayanan (1)
Anant Kulkarni (1)
Vivek Tripathi (1)
Saineshwar Bageri (1)
Shivom Agarwal (1)
Ashwani Tyagi (1)
Shyju (1)
Mahesh Chand (1)
Sajana Palanagama (1)
Rick Malek (1)
Related resources for mapping
No resource found
Multiple Diagrams Per Model With Entity Framework and Visual Studio 2013
10/8/2024 9:03:31 AM.
The Model First Approach in Entity Framework allows users to create and manage entity models using the EDMX file. It features a design surface for editing entities, a model browser for navigation, and
Routers in Backbone.JS: Part 7
10/3/2024 11:31:21 AM.
Backbone.Router enables URL routing and history management for web applications. It allows creating bookmarkable, shareable URLs and mapping them to application actions. This article covers the basics
Implementing a Map with Latitude and Longitude in JavaScript
8/20/2024 12:26:38 PM.
We'll explore how to leverage Leaflet, a powerful JavaScript library for interactive maps. This article guides the creation of dynamic maps using Leaflet and geolocation. It covers HTML structure,
How to Perform Basic Nmap Scans
7/10/2024 5:15:58 AM.
Learn how to perform basic Nmap scans to enhance your network security skills. This guide covers essential Nmap commands, helping you understand how to map networks, identify open ports, and detect vu
Understanding MapStruct in Spring Boot for Java Bean Mapping
7/9/2024 6:38:32 AM.
Explore MapStruct in Spring Boot for seamless Java Bean mapping. Discover how MapStruct simplifies object mapping between DTOs and entities, leveraging annotations for automated conversion.
Beginner's guide for creating standalone .rdlc reports with ssrs
6/18/2024 8:05:49 AM.
Learn how to create standalone SSRS reports using dummy data sources and access them via C# code. This article covers setting up .rdlc reports, mapping datasets, creating test harness in Visual Studio
Fetching Data From XML File To SQL Database
6/12/2024 7:01:05 AM.
This article provides tips on creating an SQL table using an XML file and importing data into it. It covers creating a DataTable from an XML file, generating an SQL table from the DataTable, and using
Using String-Based Enums in C#
6/10/2024 8:02:49 AM.
In many applications, it is necessary to represent enumerations with string values rather than their default integer values. This can be particularly useful when working with JSON, XML, or other data
Automapper In .NET Core
6/5/2024 8:10:33 AM.
Learn to integrate AutoMapper in .NET Core apps. Steps include installation, service registration, model creation, mapping between domain and view models, reverse mapping, and handling complex object
Code-First Stored Procedure Entity Framework 6.0
6/3/2024 10:06:42 AM.
This content explains how to configure Entity Framework 6.0 and above to use stored procedures with a Code-First approach. It details overriding the OnModelCreating method in DbContext to map stored p
Inserting Data in the Database Using LINQ to SQL
5/30/2024 10:28:32 AM.
Using LINQ to SQL, insert data into databases effortlessly. Utilize LINQ query expressions, entity classes, and DataContext to map objects to database tables. Ensure proper error handling and concurre
Configuring Filter and Dispatcher Mapping in Servlets
5/24/2024 10:00:48 AM.
Configuring filter and dispatcher mapping in servlets involves defining rules for intercepting requests and forwarding them to appropriate components. This ensures efficient request handling and filte
Using Google Map in an ASP.NET MVC Application
5/24/2024 9:17:44 AM.
Explore the integration of Google Maps API into your ASP.NET MVC application. Enhance user experience by visualizing data, utilizing geolocation services, and implementing interactive mapping features
Dynamic Mapping Database result to Entity T
5/20/2024 7:16:04 AM.
This article provides logic for Mapping the SQL Result to C# Class. This code snippet demonstrates the dynamic mapping of SQL result columns to C# properties, converting SNAKE_CASE SQL column names to
Table Splitting in Entity Framework 6 (Code First Approach)
5/17/2024 10:42:39 AM.
Table Splitting in Entity Framework 6 (Code First Approach) allows multiple entity types to map to a single database table. This technique is useful for organizing related data within the same table,
Reflecting Data In .NET Classes - Part IV - From Database Table
5/17/2024 10:36:57 AM.
In this segment of "Reflecting Data In .NET Classes," Part IV focuses on generating .NET classes from database tables. Utilizing reflection, it maps database schema to object-oriented struct
Working With Stored Procedures Using Entity Framework: Part 1
5/16/2024 8:32:00 AM.
Learn how to leverage Entity Framework for interacting with stored procedures in your .NET applications. This tutorial explores integrating stored procedures into your data access layer, optimizing da
Mapping Output Cache Profile In SharePoint Page Layout
5/2/2024 10:46:30 AM.
Optimize SharePoint page performance by mapping output cache profiles to page layouts. Utilize caching options in site settings for efficient content delivery, enhancing user experience and performanc
Efficient Data Copying with AutoMapper in C#
4/25/2024 8:16:41 AM.
Discover how to configure profiles, handle complex mappings, customize type conversions, and utilize features like flattening, null substitution, and reverse mapping for efficient data transformations
Table Splitting in Entity Framework
4/25/2024 5:56:24 AM.
Entity Splitting in Entity Framework involves mapping an entity across multiple database tables, aiding in organizing data and optimizing performance. Table Splitting divides a single table into two,
Entity Framework Code First Example
4/24/2024 1:24:22 PM.
Explore an Entity Framework Code First example to understand database modeling in C#. This tutorial demonstrates object-relational mapping (ORM) techniques, using .NET Framework to create entity class
Solution Packager - Generating Mapping File Programmatically
4/24/2024 7:54:09 AM.
This content discusses automating the generation of mapping files using a Solution Packager. It delves into programmatically creating mapping files, enabling efficient and consistent configuration acr
Mapping TVFs Using Entity Framework Database First
4/24/2024 7:43:49 AM.
Map table-valued functions (TVFs) in Entity Framework Database First by importing them as function imports. Utilize EDM Designer to create complex types for TVF results, enhancing data retrieval and m
Select and Insert Data With Reverse Engineering Via EDM Framework
4/18/2024 1:11:53 PM.
Employ the Entity Data Model (EDM) framework's reverse engineering for seamless data selection and insertion. Generate code from an existing database schema, enabling efficient data access and man
Getting Started With OpenLayers 3 And Spatial Data
4/18/2024 10:45:12 AM.
Explore visualizing spatial data using OpenLayers with SQL Server 2008. Learn about the capabilities of OpenLayers for mapping, including its support for tiles and vector layers. Understand the two ty
What is Object Mapping in .NET and AutoMapper ?
4/10/2024 4:25:32 AM.
Object mapping plays a crucial role in modern software development, particularly in .NET applications where data transformation between different layers is a common requirement.
Learn Principles Of Lean Thinking
4/5/2024 5:44:22 AM.
In this article, we will learn Principles of Lean Thinking" encapsulates the core tenets of Lean Manufacturing, emphasizing continuous improvement and waste reduction.
Code First Migrations In Entity Framework Step By Step
3/21/2024 7:25:30 AM.
Learn how to define model classes, configure database mappings, set up connection strings, and utilize Package Manager Console commands to manage migrations efficiently in your ASP.NET application.
Getting Started With Mapster in ASP.NET Core
3/20/2024 6:41:17 AM.
Learn how to streamline object mapping in ASP.NET Core applications using Mapster. This comprehensive guide covers installation, basic mapping techniques, advanced features like custom mapping, and pr
New Features Of Entity Framework Core 2.0
3/7/2024 8:53:53 AM.
Entity Framework Core is a lightweight and extensible version of Entity Framework. It is based on an ORM (Object-Relational Mapper) which enables us to work with databases using .NET objects. This art
Practical Introduction to Entity Framework: Day 6
3/6/2024 10:40:13 AM.
In this article, you will Explore Day 6 of our Practical Introduction to Entity Framework series, diving deeper into database integration. Learn essential concepts, including object-relational mapping
Practical Introduction To Entity Framework: Day 4
3/6/2024 10:36:48 AM.
This content provides a detailed guide on returning multiple result sets or data sets in Entity Framework. It walks through the steps involved, including creating a normal stored procedure, adding an
Practical Introduction To Entity Framework: Day 1
3/6/2024 10:29:58 AM.
In this article, we will discover the fundamentals of Entity Framework in this practical introduction. Learn about ORM concepts, database operations, and CRUD operations through hands-on examples.
How to Map Network Drive in Windows 8
2/27/2024 11:05:24 AM.
To map a network drive in Windows 8, open File Explorer, go to "This PC", then click "Computer" and "Map network drive". Choose a drive letter and enter the network locat
API Development Using Dapper and Microsoft Asp.NET Core Web API
12/24/2023 4:38:11 PM.
ASP.NET Core is a powerful framework for building web applications, and "Dapper" is a popular micro ORM (Object-Relational Mapping) that works well with ASP.NET Core for database operations.
Building a Custom Object Mapper in ASP.NET Core Using C#
12/21/2023 9:22:52 AM.
Unlock the power of data transformation in ASP.NET Core with a custom object mapper. Delve into the steps—defining mapping configurations, implementing logic, and seamless integration—ensuring tailore
How to Share a Drive and Mapping for Client User?
12/1/2023 9:52:24 AM.
Learn the proper and easy method to share and map a drive for client users. Follow clear steps from creating a shared folder to setting up permissions in this insightful guide.
Dapper vs Entity Framework Core vs ADO.NET: Which One Should You Choose?
12/1/2023 6:33:12 AM.
Dapper vs Entity Framework Core vs ADO.NET: Which One Should You Choose?
Creating Consistent ASP.NET Core Web API Responses with AutoMapper and DTOs
11/17/2023 5:40:18 AM.
Developing a robust ASP.NET Core Web API hinges on the subtle yet pivotal details of response structuring. Leveraging AutoMapper in tandem with well-designed Data Transfer Objects (DTOs) not only ensu
Object Mapping in .NET with AutoMapper
11/8/2023 5:24:58 AM.
This article on AutoMapper provides a comprehensive overview and introduction to the topic, making it easily accessible for readers who are unfamiliar with the concept. The step-by-step approach in ex
Mapping ViewModel To Model Using Implicit Conversion Operator In C#
9/18/2023 9:08:46 AM.
Mapping a ViewModel to a Model in C# using an implicit conversion operator is a technique used to simplify the process of transferring data between these two related classes. ViewModels are typically
A comprehensive overview of Dictionary in C#
8/25/2023 10:09:57 AM.
Dictionaries are essential tools for managing data efficiently through key-value pairs, offering rapid retrieval and manipulation. The Dictionary<TKey, TValue> class empowers developers to effec
Object Relational Mapping (ORM) Using NHibernate - Part 5 - A of 8
8/4/2023 11:39:30 AM.
This is Part 5A of the article series, which concentrates on Many-to-Many Entity Association with a commonly used example but the model and code is a little different.
Object Relational Mapping (ORM) Using NHibernate - Part 7 of 8
8/1/2023 10:07:25 AM.
In this seventh article and its client code, we will demonstrate that the classes we have put forth to incorporate the shipping functionality will allow shipment items of an order to be shipped in par
Object Relational Mapping (ORM) Using NHibernate - Part 8 of 8
8/1/2023 5:52:48 AM.
In this article we clear the question from the end of the first article, How do we manage a persistent object across sessions? .
Object Relational Mapping (ORM) Using NHibernate - Part 6 of 8
7/31/2023 9:23:39 AM.
We will discuss one of four ways of mapping inheritance hierarchies in Nhibernate; the way which gives maximum support for inheritance and polymorphism (the main benefit of capturing an inheritance he
Object Relational Mapping (ORM) Using NHibernate: Part 5 - B of 8
7/31/2023 6:39:06 AM.
The idea here is to apply the Many-To-Many entity association in the E-Commerce scenario used, for example, throughout this article series.
Object Relational Mapping (ORM) Using NHibernate - Part 4 of 8
7/31/2023 6:00:05 AM.
Here in this article the intent is to eliminate the nulls introduced in the database by correctly mapping the association between PaymentApprovedOrder and Item as optional One-To-Many.
Object Relational Mapping (ORM) Using NHibernate - Part 2 of 8
7/31/2023 5:41:13 AM.
Object-Relational Mapping (ORM) is a programming technique that allows developers to interact with a relational database using object-oriented programming paradigms. It bridges the gap between the obj
Object Relational Mapping (ORM) Using NHibernate - Part 1 of 8
7/31/2023 5:28:18 AM.
To establish the ideas of Object Relational Mapping Internals, Nhibernate fundamentals, Intemediate and Advanced coding concepts using NHibernate more clearly (for me and hopefully to readers).
Object Relational Mapping (ORM) Using NHibernate - Part 3 of 8
7/28/2023 7:00:28 AM.
Firstly in part 1 of this article series, it had been shown that in ORM, while mapping a one-to-one association between objects to their corresponding tables, the primary key of one table is posted as
AutoMapper in ASP.Net Core 7 Web API
6/15/2023 7:13:12 AM.
When developing apps, it's common to wish to map items to either comparable or different kinds. Why do you frequently require this? The database tables of the employed database are typically mappe
Introduction on SQL+
6/2/2023 11:06:06 AM.
In this article, we will delve into the world of SQL+ and explore its capabilities, advantages, and real-world applications. We will provide code snippets and examples to illustrate the power of SQL+
How To Visualise Mapping Of Existing Azure Resources
2/13/2023 11:15:27 AM.
ARM Template viewer - This extension will give a graphical representation of the ARM template.
Mapping Componet(tMap) In Talend Open Studio
2/8/2022 4:45:14 PM.
This article helps you to learn the tMap component with example in Talend Open Studio.
Mapping with a GPS and C#
2/8/2022 10:21:45 AM.
This article shall describe a very simple approach to working with a GPS device within the context of a C# application.
WebApi: CustomMediaTypeMappings in Web API MVC 4
5/28/2021 7:17:45 AM.
In this article, I’ll explain Custom MediaTypeMappings in the WebApi.
3 Ways To Remove Duplicates From Arrays In JavaScript
5/22/2021 4:00:58 PM.
This blog teaches how to answer the most widely asked questions In Javascript interviews in the 3 simplest possible ways.
Connecting the MVC Application Using EntityFramework DB-First Approach: Part 3
2/10/2021 9:37:51 AM.
The article is an attempt to overcome the confusion related to how to use EntityFramework with MVC application in a very simple way.
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.
Choosing A Technology For Your Data Access Tier
11/25/2020 11:37:43 PM.
What are the criteria that software architects and developers should consider when choosing a technology to build their database access tier?
View database structure using C#
11/4/2020 8:45:16 AM.
This article describes an easy approach for examining all of the tables, views, and columns in a database.
Mapping Objects to Relational Databases
10/28/2020 2:45:52 AM.
The application generates C# Class files for each table in a relational database. I have used Mysql and ODBC.NET for this project. The application only supports MySQL right now.
Map Or Connect Your Own Domain In Firebase Hosting Service - Part Two
7/22/2020 6:50:50 AM.
In this article, we will learn how to map or connect your domain in Firebase hosting service which we deployed using Firebase-CLI.
SharePoint Online - Mapping Multiple Users Dynamically in ShareGate Migration Tool
5/13/2020 6:25:35 PM.
In this article, you will learn about mapping multiple users dynamically with the ShareGate migration tool in SharePoint Online.
Create Mapper Component Using SVG In Angular 7
3/18/2020 11:20:56 PM.
Creating a mapper component which allows user to dynamically create mappings between two html table records, simulating a relation between the two HTML Tables
Map Network Drive in Windows 8
12/20/2019 5:13:09 AM.
In this article we explain how to map a drive or access a network drive in Windows 8.
URI Mappings in Silverlight Navigation Framework
12/19/2018 3:23:16 AM.
URI Mappings in Silverlight Navigation Framework. Navigation Framework comes with Silverlight 3 RIA Services. Using this framework we can easily navigate between User Controls in a Silverlight Applica
SharePoint Migration - Export Alternate Access Mapping
10/8/2018 8:54:05 AM.
In this article, we will look for the PowerShell Scripts to export “Alternate Access Mapping (AAMs)” Settings from source SharePoint Farm.
How To Implement Alternate Access Mapping
6/7/2018 11:04:13 AM.
In this article we will discuss implementing “Alternate Access Mapping” or commonly known as “AAM” in SharePoint 2016.
Custom Domains in Azure
5/30/2018 12:08:59 AM.
This video is about adding a custom domain to an Azure Web App Service.
Mapping Similar Objects In ASP.NET Core 2.0
3/13/2018 10:17:53 AM.
This article is about mapping similar objects of two different classes with reduced lines of code using ASP.NET Core Automapper.
Implementing Field Mapping Using Xrm.WebApi
11/24/2017 7:02:29 PM.
In this article, we are going to provide sample code for using Xrm.WebApi retrieve method.
Map Multiple Calendar List To One Calendar List In SharePoint Online
10/28/2017 1:52:50 AM.
In this video, we will learn how we can map multiple calendar list to one calendar list in SharePoint Online or SharePoint 2013. Calendar List provide a functionality to overlay of calendar. In this v
Mapping File Share to Network Drive in Microsoft Azure
2/8/2017 4:07:28 AM.
Here we are going to see the concept of creating a storage account in the Azure portal and uploading the files in there.
Configure Alternate Access Mappings in SharePoint 2013 Central Administration
2/2/2017 10:53:31 AM.
In this article, we will see how to configure Alternate Access Mappings in SharePoint 2013 Central Admin.
Mapping Azure File Share To Network Drive
2/2/2017 10:42:33 AM.
Here, I have shared the concept of creating a file share and uploading files into it from the portal as well as from the local machine. Also, I have explained the concept of mapping the network drive
Alternate Access Mappings On Web Applications In SharePoint 2013 Central Administration
1/20/2017 4:52:13 PM.
In this article, you will learn about Alternate Access Mappings on web applications in SharePoint 2013 Central Administration.
Domain Mapping Of Webapps In Windows Azure
5/6/2016 11:51:42 AM.
This article will help you to locate Domain Mapping under web apps in Windows Azure.
Visitor Design Pattern
10/27/2015 3:26:09 AM.
In this article you will learn about Visitor Design Pattern. It is a behavioral design pattern. The prime purpose of the visitor pattern is to add extra behavior to a class without modifying it.
Check Whether a Measure Group is Mapped With Dimension Group
8/25/2015 4:43:59 AM.
This article shows how to check whether a Measure Group is mapped with the Dimension Group.
Mapping Network Drive Into SharePoint Library
8/10/2015 10:28:49 PM.
In this article you will learn how to map a Network Drive into a SharePoint Library.
DNS Mapping With ASP.Net
5/29/2015 7:20:01 PM.
In this article you will learn how DNS mapping works with ASP.NET/IIS.
Creating Many-to-Many Mapping Using Code First (Entity Framework)
5/24/2015 1:01:07 PM.
In this article we will to learn how to create a Many-to-Many Mapping using Code First (Entity Framework).
Mapping Stored Procedures and Getting Multiple Records From Stored Procedures Using Dapper
8/28/2014 1:17:25 PM.
In this article you will learn how to get multiple records from Stored Procedures using Dapper.
How MediaTypeFormatter and MediaTypeMapping Are Associated With Each Other in Web Api
5/10/2014 12:21:30 PM.
In this article I’ll explain “How MediaTypeFormatter and MediaTypeMapping are associated with each other as well as the precedence order to handling the request”.
Get Missing Objects For a Particular User in a Database
5/1/2014 12:00:20 PM.
In this article I will explain how to get missing objects for a particular user in a database.
Configure Alternate Access Mappings in SharePoint 2013
3/13/2014 3:12:40 PM.
In this article, I would like to share the procedure to configure the alternate access mappings using Central Administration in SharePoint 2013.
Import Data From Excel in LIghtSwitch 2012
7/21/2013 5:37:21 PM.
This article describes how to import data from Excel in Light Switch using Visual Studio 2012.
Creating Multiple SharePoint 2010/2013 Web Applications in Single Port
3/19/2013 3:06:25 PM.
Setting up a SharePoint web application is fun and easy if we know some of the basics of web application hosting.
Geocoding a physical address using yahoo web services and visual basic
11/9/2012 10:20:01 AM.
This article will demonstrate the basics of submitting an address to the yahoo search service, recovering and displaying the geocoded result.
Consuming Yahoo Local Search Service in VB.NET
11/9/2012 9:34:32 AM.
This article will demonstrate an approach that may be used to consume yahoo local search service to return a list of business locations through the use of a zip code based search for a business name or product.
Image Mapping Utility in VB.NET
11/8/2012 7:24:56 AM.
This article describes an easy approach to building a simple image mapping utility that may be used to mark and store points as pixel based coordinates from an image file or directly from a web page. The application is capable of capturing a collection of points and it allows the user to name and save a point collection established using the tool into a text file.
The GetChanges of DataSet and DiffGrams
10/20/2012 4:52:42 AM.
This article discusses the basics of DiffGrams and how DiffGram format is utilized by a DataSet to in this context.
Reflecting Data to .NET Classes: Part I - From HTML Forms
10/13/2012 2:02:13 AM.
Reflection allows us to examine internal details of assemblies and classes at runtime (programmatically).
Developing Secure Web Sites with ASP.NET and IIS: Part I
10/3/2012 11:03:44 AM.
Developing security for a site is like paying tax. You know it should be done at the end of financial year. But you keep it for the last and some time expect you should never have to do it. It is a similar kind of situation when building a web site. There are some web sites available to general public that can be access by any one. The security for these sites can be minimum or none at all. There are some web sites that publish and hold important information that have to be secure one way or another.
Developing Secure Web Sites with ASP.NET and IIS - Part I
10/3/2012 10:58:36 AM.
Developing security for a site is like paying tax. You know it should be done at the end of financial year.
Image Mapping Utility
10/3/2012 10:25:47 AM.
This article describes an easy approach to building a simple image mapping utility that may be used to mark and store points as pixel based coordinates from an image file or directly from a web page.
Mapping Microsoft Excel columns with XML data (XML data integration) programmatically using a .Net Application.
9/30/2012 5:34:58 AM.
Using this program you can map Excel columns programmatically and generate an XML file containing the cell values that you had in your Excel document. After generating the XML file we can read it into a dataset.
ODBC usage in .NET
9/30/2012 5:10:33 AM.
This article will provide a template of how to represent a smallint, integer, decimal, varchar and other ODBC data types that are used in the SQL Server environment in COBOL.
- Ebook
Source Code: Graphics Programming with GDI+
Graphics Programming with GDI+ is the .NET developer's guide to writing graphics appl...
Download