Environment .NET 3.5 Self Servicing LLBL Pro 2.6

I know I might be doing something stupid here. I have following code

string connectionString = ConfigurationManager.ConnectionStrings["MyConn"].ConnectionString;
        DbUtils.ActualConnectionString = connectionString;


        PersonCollection ps = new PersonCollection();
        ps.GetMulti(new PredicateExpression(Person.Lastname == "lastname" ));
        Console.WriteLine(pt.Count);

Now when I generated the entities from LLBL Studio, I used a db named ForGeneratingLLBL but in app.config connection string is pointing to another db Master . My expection is that program will retrieve data from whatever is defined in DbUtils.ActualConnectionString (which in this case is defined in app.config) but for some reason its still retreiving data from ForGeneratingLLBL. Any idea what i am doing wrong here?

PS: I have posted this quetion on LLBL forum as well, trying here to see if anyone had similar issue before

link|improve this question

1  
This is one of the LLBLGen gotchas...why do they hardcode the db name in the generated entities? not sure, performance or security... definitely not intuitiveness...have tried lots of other ORMS and never came across anything like this. – Luis Feb 3 '11 at 16:02
feedback

1 Answer

up vote 1 down vote accepted

If your DB is different than the one you generated the entities you need to put this in your config file:

<configuration>
  <configSections>
    <section name="sqlServerCatalogNameOverwrites" type="System.Configuration.NameValueSectionHandler"/>
  </configSections>
</configuration>

and this:

<sqlServerCatalogNameOverwrites>    
    <add key="OriginalDatabase" value="TargetDatabase" />
  </sqlServerCatalogNameOverwrites>

In the documentation, under Catalog name overwriting

link|improve this answer
1  
i am doing something similar ( little different) but let me make sure i understand it. So from my example, should i have <add key="ForGeneratingLLBL" value="Master" /> ? – imak Feb 3 '11 at 16:04
1  
ok so i used the example i provided above and it worked fine but this mean that I will have to provide this target db name twice one under sqlServerCatalogNameOverwrites and then also under connectionStrings, correct? – imak Feb 3 '11 at 16:07
1  
actually just setting the original db name to empty string work too. <add key="ForGeneratingLLBL" value="" /> – imak Feb 3 '11 at 16:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.