subsonic

Subsonic 3 Class Library & Winforms App Null IDataProvider BUG

I have got a class library project and a winforms app. Everything is getting geerated fine and my Winforms app references the class library but as soon as I run it and try to retreive data it comes up with dataprovider is null. The one thing to note is that I do not have a app.config in my Winforms app only in the class library. Do I ...

what happened to the subsonic screencasts?

None of them are available in the docs. I see embedded iframes pointing to "silverlight.services.live.com", but no video. FF shows blank, IE7 shows HTTP 500 error. ...

SubSonic, SimpleRepository and entity interfaces

Hi, Firstly, I want to apologize for my English, not my strongest side. To the question. In my current project, I have interfaces to my entities so I can use Subsonic attributes at my head entites and I want to be able to seamlessly switch O/R mapper in the future. Anyway, I get an error when I try to use my interfaces and SimpleReposit...

how about run Subsonic version 2 and 3 together ?

Dear friends Today I compile subsonic version with different namespace (as subsonic3) and place it together with subsonic version 2. Also create all files (for both versions, in different dlls) for my database with success, and make simple tests, and seams that everything works perfect. This is my simple test code, and you can see 3 ...

Subsonic 2.1 : Am i crazy??

Hi all, Im working on a project using subsonic 2.1. For a simple search query i've the following code: DAL.ItemCollection coll = new DAL.ItemCollection(); SubSonic.Select s = new SubSonic.Select(); s.From(DAL.Item.Schema); s.Where("Title").Like("%" + q + "%").Or("Tags").Like("%" + q + "%").And("IsAct...

What is the difference between Nhibernate and SubSonic ?

I know that NHibernate is a very powerful ORM but SubSonic is not known for me. please give me a little information about SubSonic and tell me that What is the difference between Nhibernate and SubSonic ? ...

looking for subsonic books

I'm looking for some books about subsonic..any suggestion? Thanks ...

Inserting primary key values using SubSonic and sqlite - problem because SubSonic thinks columns are either AutoIncrement or not

I'm using SubSonic 2.2 and sqlite and have encountered a problem when dealing with tables with an INTEGER PRIMARY KEY column that isn't AUTOINCREMENT. According to the faq: If you declare a column of a table to be INTEGER PRIMARY KEY, then whenever you insert a NULL into that column of the table, the NULL is automatically converted ...

Call to System.Web.Configuration.ProvidersHelper.InstantiateProviders taking ages and ages (from SubSonic)

I'm using SubSonic 2.2 and the .net provider for sqlite in a client application. I'm calling SubSonic.DataService.Provider and it's taking ages, e.g. 30 seconds, to return. Stepping through the SubSonic code it appears to be taking the time on this line within DataService.LoadProviders(): ProvidersHelper.InstantiateProviders(section.Pro...

SubSonic 3 and MySQL, removing underscore from column name in CleanUp() method causes exceptions when using property in linq-query.

I've run into a problem when using SubSonic 3(.0.0.3) ActiveRecord with MySQL. Since MySQL doesn't allow you to use uppercase letters in table or column names (or rather disregards it if you do) I decided to separate words using underscores, e.g. entity_id, and then use the CleanUp() method to add title casing and remove the underscores...

Subsonic 3.1 when is it likely?

Hi all, I have a project built around Subsonic 3.0.0.3 and have run into the dreaded medium trust issue, can anyone tell me is there a way I can mod the code myself to get this working or what the expected timescale for 3.1 version is? Its looking increasingly like I will have to ditch subsonic to get my system running Regards Mike ...

Locking problems with sqlite and SubSonic when using transactions on a single thread

I'm getting locking exceptions when trying to use transactions with SubSonic and SQLite. I'm using this from a single thread and there are no other processes accessing my db, so I really didn't expect any such problems. If I write code like this below, I get an exception on the second call to Save() within the loop - so the third call ...

Subsonic Oracle Stored Procedure

Hi all, How to generate Stored Procedure from oracle using SubSonic 2.1? My SPs has nothing inside, however it does not have problem with SQL2005 and generate succesfully. Thanks, Frozen ...

Subsonic MVC Template and Code Generation

hi, I am using Subsonic MVC Template from http://code.google.com/p/subsonicproject/downloads/detail?name=SubSonic%20MVC%20Template.zip&can=2&q= Here is a folder named [Code Template] which contains the .tt files for generating views and controllers. But that is giving me error "MvcTextTemplateHost not found" I want to generat...

SubSonic tutorials down due to SilverLight retardation.

Hello, I'm new to SubSonic (and stackoverflow!) and I just wanted to leave a quick note to the SubSonic team. I'm excited to get started, but unfortunately it looks like all your screencasts are down due to Microsoft ending their SilverLight streaming beta. Hopefully you have backups (!) and can restore the screencasts without too much...

Why does SubSonic 2.0 use System.Data.SQLite version 1.0.60.0?

Anyone know why Subsonic 2.2 uses System.Data.SQLite version 1.0.60.0 instead of the latest version 1.0.65.0? ie is it just because that's when it was released or is there anything in the newer version that doesn't work with SubSonic? What does everyone else use - do you just recompile from the latest branch of SubSonic using the lates...

Subsonic 3.0 MVC and paragraph control.

I have a subsonic 3.0 MVC site. Is it CMS based? if yes how can i use subsonic's paragraph control. If its not CMS based then from where i can get it? the subsonic 3.0 on http://subsonicproject.com/ does not contains the CMS? ...

how to use paragraph control in subsonic 3.0 MVC?

How can i use paragraph control to edit the paragraphs in subsonic 3.0 MVC??? ...

SubSonic All() with user specified connection string

When I try to do something along the lines of var myTableAll = myTable.All(connectionString, "System.Data.SqlClient"); var count = myTableAll.Count(); // this works foreach( var record in myTableAll ) { DoSomething(record); } // this throws an exception the excpetion is thrown because it is looking for the database connection str...

Subsonic and Advantage Database Server

Does Subsonic work with Advantage Database server and if so are there any TT files to generate the necessary code ...