Sections |
|||||
Generation Summary TopGenerated Solution Found:
.netTiers Quick Configuration TopBelow are the steps to to configure the .netTiers components. To Configure your application to use .netTiers, add the following sections to your App / Web config files.
You can find more information on how to set this up at 1. Add a new section to the configSettings <section name="netTiersService" type="Indeco.G24.Data.Bases.NetTiersServiceSection, Indeco.G24.Data" allowDefinition="MachineToApplication" restartOnExternalChanges="true" /> 2. Add an item to the ConnectionStrings Section <connectionStrings> <add name="netTiersConnectionString" connectionString="Data Source=INDECO;Initial Catalog=G24DATA;Persist Security Info=True;User ID=sa;Password=12105484" /> </connectionStrings> 3. Add the netTierService configuration section to your configuration file. Comment / Uncomment which provider you plan on using / not using <netTiersService defaultProvider="SqlNetTiersProvider"> <providers> <add name="SqlNetTiersProvider" type="Indeco.G24.Data.SqlClient.SqlNetTiersProvider, Indeco.G24.Data.SqlClient" connectionStringName="netTiersConnectionString" providerInvariantName="System.Data.SqlClient" entityFactoryType="Indeco.G24.Entities.EntityFactory" useEntityFactory="true" enableEntityTracking="false" enableMethodAuthorization="false" useStoredProcedure="false" /> </providers> </netTiersService> Documentation Top.netTiers 2.0 Getting StartedSample API Usage
Report Details Top
|