2011-01-26 55 views
0

美好的一天,Spring.net to結構圖依賴注入轉換

如何將此彈簧配置轉換爲結構映射配置。我有這個spring.net配置。

<db:provider id="DbProvider" 
     provider="System.Data.SqlClient" 
     connectionString="Data Source=(local);Database=Spring;User ID=springqa;Password=springqa;Trusted_Connection=False"/> 

    <object id="adoTemplate" type="Spring.Data.Core.AdoTemplate, Spring.Data"> 
    <property name="DbProvider" ref="DbProvider"/>     
    </object> 

</objects> 

我的轉換是這樣的,

For<Spring.Data.Core.AdoTemplate>().Use<Spring.Data.Core.AdoTemplate>().Configure.WithProperty("DBProvider").EqualTo(??????); 

如何/我在哪裏可以得到DBProvider屬性的實例?在.Net中它是在xml標籤中定義的,但我不知道這是如何在結構圖上完成的。

有沒有人遇到同樣的問題,並找到了解決辦法?請幫忙。

回答

1

並不是說我曾經使用過結構映射,但Spring.NET提供程序名稱「System.Data.SqlClient」在Spring.NET 1.3.1中映射到Spring.NET源代碼中提供的xml配置。您可以根據需要提取信息(可能類型名稱是您正在查找的類型)。

<object id="SqlServer-2.0" type="Spring.Data.Common.DbProvider, Spring.Data" singleton="false"> 
     <constructor-arg name="dbMetaData"> 
      <object type="Spring.Data.Common.DbMetadata"> 
       <constructor-arg name="productName" value="Microsoft SQL Server, provider V2.0.0.0 in framework .NET V2.0" /> 
       <constructor-arg name="assemblyName" value="System.Data, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/> 
       <constructor-arg name="connectionType" value="System.Data.SqlClient.SqlConnection, System.Data, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/> 
       <constructor-arg name="commandType" value="System.Data.SqlClient.SqlCommand, System.Data, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/> 
       <constructor-arg name="parameterType" value="System.Data.SqlClient.SqlParameter, System.Data, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/> 
       <constructor-arg name="dataAdapterType" value="System.Data.SqlClient.SqlDataAdapter, System.Data, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/> 
       <constructor-arg name="commandBuilderType" value="System.Data.SqlClient.SqlCommandBuilder, System.Data, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/> 
       <constructor-arg name="commandBuilderDeriveParametersMethod" value="DeriveParameters"/> 
       <constructor-arg name="parameterDbType" value="System.Data.SqlDbType, System.Data, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/> 
       <constructor-arg name="parameterDbTypeProperty" value="SqlDbType"/> 
       <constructor-arg name="parameterIsNullableProperty" value="IsNullable"/> 
       <constructor-arg name="parameterNamePrefix" value="@"/> 
       <constructor-arg name="exceptionType" value="System.Data.SqlClient.SqlException, System.Data, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"/> 
       <constructor-arg name="useParameterNamePrefixInParameterCollection" value="true"/> 
     <constructor-arg name="useParameterPrefixInSql" value="true"/>  
       <constructor-arg name="bindByName" value="true"/> 
       <!-- this is only true for .net 1.1 kept it here just in case we want to revert back to this strategy for 
      obtaining error codes--> 
       <constructor-arg name="errorCodeExceptionExpression" value="Errors[0].Number.ToString()"/> 

     <!-- TODO select form system db all errors that have 'incorrect syntax' at the start of the error string--> 
     <property name="ErrorCodes.BadSqlGrammarCodes"> 
      <value>156,170,207,208</value> 
     </property> 
     <property name="ErrorCodes.PermissionDeniedCodes"> 
      <value>229</value> 
     </property> 
     <property name="ErrorCodes.DataIntegrityViolationCodes"> 
      <value>544,2627,8114,8115</value> 
     </property> 
     <property name="ErrorCodes.DeadlockLoserCodes"> 
      <value>1205</value> 
     </property> 
      </object> 
     </constructor-arg> 

    </object> 
+0

謝謝你,我會看看這個。 – 2011-01-31 02:40:33