Tagged Questions

0
votes
1answer
38 views

Can NHibernate, Subsonic or L2S do Per-Entity Auto-Increment?

I have a SQL Server 2008 database with a composite key: ProjectID (GUID) and TaskID (int). ProjectID is a foreign key to a Projects table. I want to have TaskID Auto-Increment, but restart for every …
2
votes
3answers
35 views

Contributing to SubSonic

I've made some modifications to SubSonic 3.0 in order to allow it to run on .Net Compact Framework 3.5, as well as use more complex entity-table mapping and entity tracking (so it's more like …
0
votes
1answer
14 views

SubSonic3 Context.cs Issue

I have an issue when the Context.cs is generated. I have followed the SubSonic3 setup for ActiveRecord, http://www.subsonicproject.com/docs/Using%5FActiveRecord. I am using the AdeventureWorks sample …
0
votes
1answer
18 views

Generating db script with SubSonic /version command

I am using SubSonic version 2.2 to generate a script of my database using the /version command. Recently, I needed to generate a script for a database which is set to French collation and running on a …
0
votes
1answer
29 views

Can I use Moq with subsonic3?

Hi, I'd like to use a mocking framework as well as an IOC framework with my latest project, based on subsonic 3 (ActiveRecord) and ASP.NET MVC. I'd like to use Moq for mocking and Castle-Windsor for …
1
vote
3answers
129 views

subsonic 3.0.0.3 times out on multiple save operations. MSSQL2005 - Solved.

Hi to everyone, I'm reading a csv file and insert the information in a sql 2005 database. After about 250 object.save operations, it times out. here the code and the exact error message. this is not …
1
vote
2answers
36 views

What is SubSonic’s license?

I've looked all over the SubSonic website, but I can't find anything about its licensing. With the project I am working on, I need to list all the open source projects I use along with their …
0
votes
1answer
47 views

Subsonic 2.x MySQL CodingHorror

Hi! What’s wrong here? This is how I found on examples of Subsonic 2 CodingHorror and doesn't works :( new CodingHorror().Execute("SELECT * FROM product WHERE IdProduct = @IdProduct", 1); The …
1
vote
0answers
12 views

Subsonic use All() or Find()?

What is better? Use: GridView.DataSource = ObjectFromDB.All().Where(a => a.ID == null); Or: GridView.DataSource = ObjectFromDB.Find(a => a.ID == null); ?
0
votes
2answers
36 views

Query Concatenated Field (using SubSonic)

Is there a way to query against a concatenated field using MS SQL? For instance, what I want to do is something like: Select FirstName+' '+LastName as FullName from Attendees where FullName like …
0
votes
1answer
25 views

Using SubSonic, how to add a field to a pre-defined class?

I've got a SubSonic DAL - works great. Two classes: TblReceipt and TblReceiptLineItems. I can create a parallel class of TblReceipt, but seems like a waste, so here's what I need to do: Have a …
0
votes
2answers
36 views

SQLite PRAGMA foreign_keys question

I've modified System.Data.SQLite to use a recent version of SQLite engine that automatically enforces foreign keys without using custom triggers. I'm also using SubSonic 2.x but this would apply to …
0
votes
1answer
20 views

how to give strongly name to subsonic.core.dll

Hi, Can you help me? I need to have subsonic.core.dll strongly named. How can I do this? Best Regards
0
votes
2answers
51 views

Subsonic 3 query like clause

This may be another of those "should be simple" things, but I can't find anything on it so here I am asking what will most likely be a stupid question :$ I'm using SubSonic 3 and I want to execute a …
0
votes
2answers
30 views

SubSonic - Serializing Classes with Nullable types and collections?

Using SubSonic v2.x: The first issue is the error discussed here: Server Error in '/......' Application. Cannot serialize member '.....' of type System.Nullable I'm not sure where to place the code …

1 2 3 4 5 51 next
15 30 50 per page