Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
3answers
481 views

ORM Comparison: Which comes first the database or classes?

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 ...
4
votes
4answers
806 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
694 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
72 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
114 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
90 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
106 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
696 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
366 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
602 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
808 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
1answer
18 views

Subsonic and SQL Azure possible?

We're moving to Azure, I would like to ask - is it possible to use SubSonic-ActiveRecord with SQL Azure? If so, do you know of any article with code samples and or demos showing it? Thanks.
1
vote
2answers
75 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
262 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
3answers
319 views

Not getting key value from Identity column back after inserting new row with SubSonic ActiveRecord

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 ...
1
vote
1answer
168 views

Paging with Find using Active Record

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 ...
1
vote
0answers
138 views

Subsonic 3.0.0.4 Does not Update

I tried 3 variants but doesn't seem to update (I am using Linq Templates and MSSQL) Luna.Data.GameDBDB db = new Luna.Data.GameDBDB(); db.Update<Luna.Record.TB_ITEM>() .Set(x ...
1
vote
1answer
207 views

Subsonic 3.0 UPDATE, multiple conditions

db.Update<Luna.Record.TB_ITEM>().Set( x => x.ITEM_DURABILITY == Convert.ToInt32(quantity)) .Where(x => x.ITEM_POSITION == Convert.ToInt32(position)) ...
1
vote
1answer
222 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
186 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
2answers
275 views

How can I automate the t4 code generation for SubSonic

I'm using SubSonic 3 (ActiveRecord mode) to generate the code for my DAL. It uses T4 templates (.tt) files that as soon as you save, generate the code for you. I want to automate this as part of my ...
1
vote
1answer
281 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
94 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
20 views

caching a subsonicproject activerecord caches entire object graph

I am caching a collection of activerecord rows (subsonic). When I look at the cache with ANTS Memory Profiler, I can see that some related tables to the activerecord I would like to cache are cached ...
0
votes
0answers
20 views

Subsonic Project: ExecuteNonQuery: CommandText property has not been initialized

when I use the Delete-method on my Subsonic Project Active Record, I get the following error: ExecuteNonQuery: CommandText property has not been initialized And I simply cannot figure out why. Any ...
0
votes
1answer
40 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
1answer
35 views

Subsonic 3.0.0.3 getting distinct items on column name. ActiveRecord

I have the following structure for a table CREATE TABLE [dbo].[CityDistancesMin]( [Id] int identity(1,1) not null, [City1] [int] NOT NULL, [City2] [int] NOT NULL, [Car] [nvarchar](50) ...
0
votes
0answers
35 views

ActiveRecord Help

I installed the AdventureWorksDW database. I'm trying to learn to setup and use the new version of SubSonic using the ActiveRecord templates. However, I am seeing some errors. Could someone help me ...
0
votes
0answers
62 views

Filtering on foreign key table property in subsonic activerecord

I am using subsonic's activerecord for my database interaction. In my db I have the following tables: Locations, LocationTypes (cafe, bar, restaurant), LocationLocationTypes (one-to-many relationship ...
0
votes
1answer
129 views

Subsonic 3.0.0.4 active record templates for mysql not returning last inserted id

Steps to reproduce error: CREATE TABLE person ( person_id int(11) NOT NULL AUTO_INCREMENT, firstname varchar(20) DEFAULT NULL, lastname varchar(20) DEFAULT NULL, age int(11) DEFAULT '0', PRIMARY KEY ...
0
votes
1answer
115 views

Subsonic Active Record Execute Direct SQL

How can I execute direct/raw SQL through subsonic 3.0 when using the Active Record pattern?
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
83 views

Excluding a blob column from active record/linq query results

What's the easiest way to exclude a column from the result set in a Subsonic/ActiveRecord/Linq query? I've a got a table of images, and often I only want the meta data associated with the image ...
0
votes
1answer
94 views

Select new to create complex object with nested new throws cast exception

Has anyone had this issue? I am trying to get objects from the database and create a complex poco but I get a cast issue. The Account property on the poco message type is a poco account type and it ...
0
votes
1answer
111 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
116 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
88 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
129 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
57 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
64 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
582 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
176 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
697 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
2answers
527 views

How to return a Dataset using Subsonic 3?

I have some old code that was using Subsonic 1.x and want to migrate to 3. Some of my old methods used to return a Dataset using the old Subsonic Query object and then just calling ExecuteDataset(). ...
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
449 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
156 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
209 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 ...

1 2