YodasMyDad
YodasMyDad

Reputation: 9475

SubSonic 2.2 Installation Instructions?

Just wondering if anyone can point me in the directions for the SubSonic 2.2 installation instructions?

Upvotes: 0

Views: 1080

Answers (4)

balexandre
balexandre

Reputation: 75073

There are several movies regarding installation and use :)

for Setting up SubSonic 2.x, use this screencast from Rob :)


To Rob Conery: Where are those 3 nice videos that you had in SubSonic page to install and use SubSonic 2.x? I do miss them!

Upvotes: 1

No Body
No Body

Reputation: 252

SubSonic 2.2

<configSections>
    <section name="SubSonicService" type="SubSonic.SubSonicSection, SubSonic" requirePermission="false"/>
  </configSections>

  <connectionStrings>
    <add name="kiss" connectionString ="Server=(local)\SQLEXPRESS; Database=kiss; UID=sa; PWD=sa;" />
  </connectionStrings>

  <SubSonicService defaultProvider="kiss">
    <providers>
      <clear/>
      <add name="kiss" type="SubSonic.SqlDataProvider, SubSonic" connectionStringName="kiss" generatedNamespace="kiss.DataAccessLayer"/>
    </providers>
  </SubSonicService>

Tools | External Tools:

SubSonic DAL
C:\Program Files\SubSonic\SubSonic 2.2 Final\SubCommander\sonic.exe
generate /out App_Code\Generated
$(ProjectDir)

Upvotes: 1

John Sheehan
John Sheehan

Reputation: 78104

Download and run the 2.1 installer, then copy the files from the 2.2 download into the 2.1 install location.

Upvotes: 0

Related Questions