Tagged Questions

0
votes
3answers
42 views

InnerJoin with Where Expression trouble

I am using Subsonic 2.1 and I need to do an innerjoin and use a where expression and I keep getting the error: Must declare the scalar variable "@Partner" Here is my code: Dim ds As DataSet = …
0
votes
1answer
86 views

How do I bulk Insert using SubSonic?

I have something that looks like this foreach (var user in NewUsers) { var dbUser = new User {FirstName = user.FirstName}; dbUser.Save(); } …
0
votes
1answer
107 views

Subsonic 3.0.0.3: issues with load slowdowns

Hi. I'm using subsonic 3.0.0.3 (active record) quite a simple database really, have trusted in its abilities but i am really getting let down by how incredibly slow it it to do anything. For some …
0
votes
2answers
39 views

How do you migrate existing data with Subsonic migration?

I watched the http://www.subsonicproject.com/docs/Using%5FSimpleRepository screencast, but I am left wondering... how do you migrate existing data? Assume you decided to split a Name property into a …
1
vote
1answer
67 views

What is the best way to use nested Objects with Subsonic when I only have Iqueryable for Foreign Key Relationships

I'd like to use Subsonic in a shopping cart application, but I'm trying to replace code that is using Session to store an Order object. That Order object has a collection or OrderDetail objects that …
1
vote
1answer
191 views

SubSonic vs. Castle ActiveRecord

For an upcoming project C# code needs to be written around a legacy Oracle database. It will be very data centric, because most of the code will deal with data manipulation -- there are almost no …
0
votes
2answers
90 views

subsonic 3 query syntax

Anyone know of a website that shows various Subsonic 3 query types? I used to use various SS 2 sites that would go through examples of how to get varying types of data. However, am now using SS 3 and …
2
votes
1answer
135 views

Subsonic 3.0 Medium Trust Issue

Hi guys, I'm having an issue with running Subsonic in medium trust and don't know if i'm querying wrong - if there is some part of subsonic 3.0.3 that doesn't like medium trust can someone tell me? …
0
votes
1answer
68 views

Subsonic Error: “Entity Models.Servers’ has a property ‘Columns’ with an unsupported type”

I've been playing with SubSonic lately and I've come across an interesting error. Entity Models.Servers' has a property 'Columns' with an unsupported type When I created a simple ASP.NET …
3
votes
4answers
234 views

How to intersept the save method on ActiveRecord?

Hi! I need to intercept the Save method, do some validations, alter some properties and then let it go again normally. How can I do this? Thanks! Alex
1
vote
2answers
293 views

Subsonic 3 and Activerecord isn’t generating MySQL Stored Procedures

It seems that the included T4 templates (or the one in the SVN trunk for that matter) just skips generating SPs for MySQL... When running StoredProcedures.ttinclude together with MySQL.ttinclude, I …