.NET news » Search results
Search results for query "object mapping" (20):
Lattice.DataMapper version 2.0 released!
Lattice.DataMapper is a tool that maps .NET objects to and from an underlying relational database using external XML configuration and mapping files. Features included object pre-fetch (one-to-one, one-to-many, and many-to-many), objects cache, batch job, distributed transaction.
Class To Contract: Enrich Your XML Serialization With Schema Providers In .NET
The Microsoft .NET Framework 1.x provided minimal options for mapping classes to schemas and serializing objects to XML documents, making this sort of mapping quite a challenge. The .NET Framework 2.0 changes all this with Schema providers and the IXmlSerializable interface.
A Naming Scheme for Database Tables and Fields
Database developers have historically used a somewhat cryptic system for naming database tables and fields. Originally a result of the limitations of database management systems (DBMS), these naming schemes - or the lack thereof - have been adopted by convention and tradition. However, as database applications become more complex, with more tables and larger teams of developers, and as developers come and go, it becomes much more important to implement a robust and disciplined naming scheme for database objects. A well-defined naming scheme becomes more important when you adopt object relational mapping (ORM) technologies or automatic code generation.
Retrieving Custom Objects Added to the Clipboard
Retrieving a custom object from the clipboard returns nothing if the object has a reference to a nonserializable object. Find out how to workaround this.
Dynamic Properties implementation using C# generics
Some programming tasks require dynamic nature of properties exposed by an object. E.g. it might be needed to access object property by a given key, it might be needed to get all object properties and iterate over them. Dynamic properties are useful when you need to manage them at runtime, when your object is already instantiated. In this article we are going to create simple implementation of dynamic properties using C# programming language. We'll use generics for our dynamic properties to make the implementation more flexible and to avoid boxing operations when value types are used for underlying property values.
Having fun with the XmlSchemaProvider: Serializing object trees
Learn how to serialize object trees into SOAP and back again.
C# Inheritance
The eighteenth part of the C# Object-Oriented Programming tutorial begins the discussion of the use of inheritance. This is a powerful object-oriented concept that permits the creation of hierarchical groups of classes that share common functionality.
How to : Get Excel data into a .NET DataSet object
There may be requirement where in data in an Excel sheet has to be manipulated inside .NET Applications. Although there are many ways to achieve this (like using Excel object of COM), the most preferred way is to use the .NET Data providers to achieve this. This article discusses on the same.
Overloading True and False in C#
The ninth article in the C# Object-Oriented Programming tutorial continues the discussion of operator overloading. In this article, the overloading of the true and false operators is described, allowing an object to be used in conditional processing.
Build Your Own Visual Studio: An Application Framework for Editing Objects at Runtime
This article describes a generic application framework that may be of some use in projects that would need an interface similar to Visual Studio. The application demonstrates approaches to providing a toolbox, a workspace, an object treeview, and an object editor.
2006-09-12 14:59:00 Source: Build Your Own Visual Studio: An Application Framework...
Tags: VB.NET
Examples


Syndicate