Tagged Questions
4
votes
4answers
815 views
How to intersept the save method on ActiveRecord?
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
3
votes
1answer
707 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 ...
2
votes
1answer
76 views
SubSonic won't save an updated record with ActiveRecord?
I have a bit of a unique database structure but the query I'm attempting to do isn't too out of the ordinary, I think.
Basically, I create a new record. Then, I save this record, then I update a bit ...
2
votes
1answer
115 views
SubSonic “Save” improvement suggestion
[We are using ActiveRecord.]
While running Sql Server Profiler, we noticed that a simple "Save" was preceded by a good bit of database activity. We found that the SubSonic core runs through all the ...
2
votes
2answers
92 views
SubSonic generated code and always filtering records
I have a table called "Users" that has a column called "deleted", a boolean indicating that the user is "Deleted" from the system (without actually deleting it, of course).
I also have a lot of ...
2
votes
2answers
111 views
Fixes for problems with SubSonic 3's TestRepository
I've been trying to use SubSonic 3.0's test repository support for unit testing but encountered a few issues, so I thought I document them, and the fixes I've come up with:
Auto-Increment Columns ...
2
votes
2answers
713 views
Saving record in Subsonic 3 using Active Record
I'm having trouble saving a record in Subsonic 3 using Active record. I've generated my objects using the DALs and tts and everything seems fine because the following test passes. I think that my ...
2
votes
1answer
378 views
Subsonic 3.0 missing output parameter/default parameter support in SQL Server?
I have a stored proc:
CREATE PROCEDURE MyProc ( @P1 uniqueidentifier, @P2 int = NULL output, @P3 int = NULL output )
The signature on the C# side should be (Guid P1, int? P2, int? P3) I would ...
2
votes
2answers
604 views
Subsonic 3.0 Medium Trust Issue
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? Someone ...
2
votes
3answers
816 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 ...
1
vote
2answers
86 views
Subsonic 3 - Insert of Update
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?
Instead of
var record = ...
1
vote
1answer
272 views
SubSonic3 T4 template for Oracle (ODP.net) generating strange Query for ActiveRecord (Square Brackets issue)
Currently, I'm trying to use SubSonic3 ORM (ActiveRecords mode) with the Oracle (ODP.NET) data provider and the T4 template to access an Oracle 10g (ver. 10.2.0.3.0) DB.
After dealing with a few ...
1
vote
1answer
231 views
Subsonic Exception - The member 'TestMode' is not supported
i´m using LINQ with the subsonic in a class to get my data here is the code below:
public IQueryable<Veiculo> SelecionaVeiculosSite()
{
return (from v in ...
1
vote
1answer
189 views
Subsonic 3 ActiveRecord generation problem
I´m newer user in stack overflow and my english i´snt so good i hope you understand my trouble.
when I´m compiling my template this archives .cs it´s ok (Context, Structs), but in the ActiveRecord ...
1
vote
1answer
285 views
Why does SubSonic's ActiveRecord T4 template generate ActiveRecord1.cs and not ActiveRecord.cs?
I've used SubSonic's ActiveRecord T4 templates in a couple of projects. Today I added the same templates from one of these projects (without the generated .cs source files) to a new project.
For ...
1
vote
2answers
98 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
129 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 ...
0
votes
1answer
46 views
Filtering using Subsonic Active Record Child FK Objects
In some ORM's if there is a one to many relationship the class representing a table normally has a single object with the column's name like 'User' and it populates the property with the contents of ...
0
votes
2answers
51 views
Subsonic 3.0 TestRepository “Find” not working
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 support ...
0
votes
1answer
116 views
Doing joins with SubSonic/ActiveRecord easily?
I am using SubSonic with the ActiveRecord 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 creates does ...
0
votes
2answers
118 views
Simple way to use Foreign Key values for sorting?
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.
Is there an easy way to use the foreign key display value for ...
0
votes
2answers
89 views
Atomically maintaining a counter using Sub-sonic ActiveRecord
I'm trying to figure out the correct way to atomically increment a counter in one table and use that incremented value as an pseudo display-only ID for a record in another.
What I have is a companies ...
0
votes
1answer
133 views
Unit Testing with SubSonic, ActiveRecord and SqlQuery
I'm trying to use the built-in testing features of Subsonic 3.0.0.4 by setting my connection string to "Test". My data access routines use the SqlQuery class. When I try to run a test against the ...
0
votes
2answers
58 views
Using constructor to load data in subsonic3?
I'm getting an error while trying to load an record through the constructor.
The constructor is:
public Document(Expression<Func<Document,bool>> expression);
and i try to load a ...
0
votes
1answer
102 views
Atomically increment a field using SubSonic 3 ActiveRecord
I'm tring to increment a field in a MySQL database using SubSonic 3 ActiveRecord. In SQL, this is what I'm after:
UPDATE people SET messages_received=messages_received+1 WHERE people_id=@id_to;
I ...
0
votes
2answers
67 views
Re-use of database object in sub-sonic
Yet another newbie SubSonic/ActiveRecord question. Suppose I want to insert a couple of records, currently I'm doing this:
using (var scope = new System.Transactions.TransactionScope())
{
// ...
0
votes
2answers
598 views
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 ...
0
votes
1answer
179 views
SubSonic 3 doesn't honor schemas for update (fixed)
I am not running Mike's latest code because it does not build and he didn't update the templates to generate code for the new Load with columns he added. So I am one revision back in the source.
My ...
0
votes
3answers
717 views
LINQ Left Join Causes error in SubSonic.Core
I am using the latest version of SubSonic 3 and ActiveRecord. I am trying to do a left join in LINQ. It fails with an error somewhere down in SubSonic.
I have a Vehicle object and a VehicleImage ...
0
votes
3answers
213 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
459 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
157 views
Subsonic 3.0.0.3: issues with load slowdowns
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 reason ...
0
votes
2answers
211 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 ...
0
votes
1answer
784 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 ...
-1
votes
2answers
97 views
If use the ActiveRecord,generate models each I modify the database structure?
if it's like this,i think it's troubles.