Currently using Subsonic 3 with Activerecord. Purely out of curiosity, is there an easy way to update or insert a record in a clean and consise way?
Steps to reproduce error: CREATE TABLE person ( per开发者_如何学Pythonson_id int(11) NOT NULL AUTO_INCREMENT, firstname varchar(20) DEFAULT NULL, lastname varchar(20) DEFAULT NULL, age int(11) DEFAUL
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical andcannot be reasonably answered in its current form. For help clari
How can I execute direct/raw SQL through subsonic 3.0 开发者_JS百科when using the Active Record pattern? Found it http://subsonicproject.com/docs/CodingHorror
Using Subsonic 3, I have a simple class called \"ConferenceRepository\" that has a method that returns a bunch of conferences based on their status. I am testing this using SubSonic\'s built in suppor
Lately I\'ve been looking into the .NET based ORMs that are available. I\'ve noticed that each ends up siting in one or two camps. In one camp the database is created first, and the ORM provides an ea
I am using SubSonic with the A开发者_C百科ctiveRecord template. I like it pretty well so far but can not figure out how to do a join query. I have read this link but the generated class templates it c
I\'m sure I\'m missing the obvious answer here, but could use a hand.I\'m new to SubSonic and using version 3.I\'ve got myself to the point of being able to query and insert, but I\'m stuck with how I
I can\'t seem to find an answer to this question or a good example of how to accomplish what I am trying to do. I\'m sure it\'s been posted or explained somewhere, but I am having trouble finding the
Disclaimer: I jumped to C# 2008 recently and SubSonic 3 (3.0.0.4) at the same time. I haven\'t used Linq for much of anything in the past.