Return-Path: Delivered-To: apmail-ibatis-user-cs-archive@www.apache.org Received: (qmail 29605 invoked from network); 15 Sep 2006 14:38:36 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 15 Sep 2006 14:38:36 -0000 Received: (qmail 66230 invoked by uid 500); 15 Sep 2006 14:38:35 -0000 Delivered-To: apmail-ibatis-user-cs-archive@ibatis.apache.org Received: (qmail 66213 invoked by uid 500); 15 Sep 2006 14:38:35 -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 66201 invoked by uid 99); 15 Sep 2006 14:38:35 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 15 Sep 2006 07:38:35 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [216.185.67.21] (HELO fluidmedia.com) (216.185.67.21) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 15 Sep 2006 07:38:13 -0700 Received: from [192.168.0.196] by fluidmedia.com (MDaemon PRO v9.0.0) with ESMTP id md50002699741.msg for ; Fri, 15 Sep 2006 10:36:54 -0400 Message-ID: <450ABA6B.4030202@fluidmedia.com> Date: Fri, 15 Sep 2006 10:36:27 -0400 From: Brian Kierstead User-Agent: Thunderbird 1.5.0.5 (X11/20060719) MIME-Version: 1.0 To: user-cs@ibatis.apache.org Subject: Re: Problem with form IDao Inherited a New DAO Interface References: In-Reply-To: Content-Type: text/plain; charset=GB2312 Content-Transfer-Encoding: 8bit X-Authenticated-Sender: brian.kierstead@fluidmedia.com X-Spam-Processed: fluidmedia.com, Fri, 15 Sep 2006 10:36:54 -0400 (not processed: message from valid local sender) X-MDRemoteIP: 216.185.67.23 X-Return-Path: brian@fluidmedia.com X-MDaemon-Deliver-To: user-cs@ibatis.apache.org X-MDAV-Processed: fluidmedia.com, Fri, 15 Sep 2006 10:36:56 -0400 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N You are probably missing the interface and implementation tags in your dao.config file for Flow. Brian ����� wrote: > Hi, > i have two interface:IBaseDao, IFlowDao. IFlowDao inherited from IBaseDao. > IBaseDao have a method, named QueryForObjectByID(string id). class BaseMapperDao implement interface IBaseDao and interface IDao��FlowMapDao inherited from BaseMapperDao and implement IFlowDao��The class > diagram is: > > IBaseDao<|-- IFlowDao > IBaseDao,IDao <|-- BaseMapperDao > BaseMapperDao,IFlowDao <|-- FlowMapDao�� > > But��i have a Exception: > Method 'QueryForObjectByID' in type 'ProxyInterfaceMapperDAOBaseMapperDao_IBaseDao_IDao_ISerializable' from assembly 'DynamicAssemblyProxyGen, Version=0.0.0.0, Culture=neutral, PublicKeyToken=f362209d9bee91d8' does not have an implementation. > > I have write QueryForObjectById in class BaseMapperDao. > I don't know how to resolve the exception.Please Help me ,thanks. >