.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.
2005-12-05 02:00:00   Source: Lattice.DataMapper version 2.0 released!   Tags: Software Database

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.
2006-05-03 19:00:00   Source: Class To Contract: Enrich Your XML Serialization With...   Tags: XML

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.
2008-01-16 06:39:00   Source: A Naming Scheme for Database Tables and Fields   Tags: Database

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.
2005-12-21 02:17:06   Source: Retrieving Custom Objects Added to the Clipboard   Tags: Examples

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.
2007-10-30 22:30:00   Source: Dynamic Properties implementation using C# generics   Tags: C#

Having fun with the XmlSchemaProvider: Serializing object trees

Learn how to serialize object trees into SOAP and back again.
2006-05-09 09:33:00   Source: Having fun with the XmlSchemaProvider: Serializing object...   Tags: XML

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.
2008-03-15 17:32:38   Source: C# Inheritance   Tags: C#

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.
2005-12-22 11:12:42   Source: How to : Get Excel data into a .NET DataSet object   Tags: Examples

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.
2007-11-24 09:51:51   Source: Overloading True and False in C#   Tags: C#

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.
« Previous12Next »