Return-Path: Delivered-To: apmail-ibatis-user-cs-archive@www.apache.org Received: (qmail 80224 invoked from network); 21 Sep 2006 18:08:50 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 21 Sep 2006 18:08:50 -0000 Received: (qmail 68101 invoked by uid 500); 21 Sep 2006 18:08:49 -0000 Delivered-To: apmail-ibatis-user-cs-archive@ibatis.apache.org Received: (qmail 68082 invoked by uid 500); 21 Sep 2006 18:08:49 -0000 Mailing-List: contact user-cs-help@ibatis.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: user-cs@ibatis.apache.org Delivered-To: mailing list user-cs@ibatis.apache.org Received: (qmail 68070 invoked by uid 99); 21 Sep 2006 18:08:49 -0000 Received: from idunn.apache.osuosl.org (HELO idunn.apache.osuosl.org) (140.211.166.84) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 21 Sep 2006 11:08:49 -0700 Authentication-Results: idunn.apache.osuosl.org header.from=ibatis.net@gmail.com; domainkeys=good Authentication-Results: idunn.apache.osuosl.org smtp.mail=ibatis.net@gmail.com; spf=pass X-ASF-Spam-Status: No, hits=0.5 required=5.0 tests=DNS_FROM_RFC_ABUSE Received-SPF: pass (idunn.apache.osuosl.org: domain gmail.com designates 64.233.166.178 as permitted sender) DomainKey-Status: good X-DomainKeys: Ecelerity dk_validate implementing draft-delany-domainkeys-base-01 Received: from [64.233.166.178] ([64.233.166.178:21112] helo=py-out-1112.google.com) by idunn.apache.osuosl.org (ecelerity 2.1.1.8 r(12930)) with ESMTP id 5B/C0-03726-F25D2154 for ; Thu, 21 Sep 2006 11:08:47 -0700 Received: by py-out-1112.google.com with SMTP id z74so816878pyg for ; Thu, 21 Sep 2006 11:08:44 -0700 (PDT) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:to:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=iyHPjI6wlyUEW8oj9DqSnct7TeeavChf+NXoCQfRu3IN9JsWd6sWtrPtqBVZSCjBc2d4FlOf/0O132ipKoonjq5KNmNdRo4V70Ydi0emB3PddwkjzxGxZ1XjYaZ16Pko7WDngHgit9rJuFnhbm3442jFcNE7eW6JwJdEBxv0/vQ= Received: by 10.35.50.1 with SMTP id c1mr31372410pyk; Thu, 21 Sep 2006 11:08:44 -0700 (PDT) Received: by 10.35.108.6 with HTTP; Thu, 21 Sep 2006 11:08:44 -0700 (PDT) Message-ID: Date: Thu, 21 Sep 2006 20:08:44 +0200 From: "Gilles Bayon" To: user-cs@ibatis.apache.org Subject: Re: using public fields instead of properties ? In-Reply-To: <41fde74d0609211007o67a84ed2u841b5ad694c483a9@mail.gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <41fde74d0609210729u1fa5f73au333d1a0cee679d01@mail.gmail.com> <41fde74d0609210813y34d2015bye78bb1aece14d178@mail.gmail.com> <41fde74d0609211007o67a84ed2u841b5ad694c483a9@mail.gmail.com> X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N If you find an issue you can make a JIRA issue and attach a patch with a unit test. For private/public filed/propertis you can find unit tests in E:\Projet\iBatis\trunk\cs\mapper\IBatisNet.Common.Test\NUnit\CommonTests\Utilities. You can also find usage in IBatisNet.DataMapper.Test. Sample : Class /// /// Account. /// [Serializable] public class Account { private int id; ... Mapping