Tagged Questions
The subsonic2.2 tag has no wiki summary.
6
votes
2answers
877 views
System.Security.VerificationException: Operation could destabilize the runtime. (Subsonic 2.2)
I recently tried to upgrade a .net 2.0 project which had its DAL generated by SubSonic 2.2 to .NET 4.0 under Visual Studio 2010.
The projects converted without error but now I am getting a rather ...
3
votes
2answers
100 views
SubSonic + Oracle - what's better 2.2 or 3?
I've been using SubSonic 2 & 2.2 for a few years now with Sql Server.
For my new job I just recently used SubSonic 2.2 with Oracle and ran into a few small issues.
Example: It could not find a ...
3
votes
2answers
527 views
SubSonic2.2 SharedDbConnectionScope and TransactionScope Transaction Confusion
ARGH!!!
There seems to be a little confusion surrounding the SharedDbConnectionScope and TransactionScope objects to enable wrapping your SubSonic queries within a transaction.
The docs suggest ...
2
votes
1answer
106 views
subsonic 2.2 : how to order a collection by FK Title?
I'm stuck with the following scenario, i have 2 tables called (Products and Categories). the field CategoryID in Products table has a FK to the Categories table.
Now for my data table in my CMS I'm ...
2
votes
2answers
332 views
SubSonic How to Execute a SQL Statement?
My site is using Subsonic 2.2 on my site.
I have 1 weird situation where I need to run some ad-hoc SQL statements.
public IList<string> GetDistincList(string TableName, string FieldName)
{
...
2
votes
2answers
123 views
Change connection on the fly
I have a SQL server with 50 databases. Each one has the exact same schema.
I used the awesome Subsonic 2.2 create the DAL based on one of them.
I need to loop though a list of database names and ...
2
votes
2answers
114 views
Why does SubSonic 2.0 use System.Data.SQLite version 1.0.60.0?
Anyone know why Subsonic 2.2 uses System.Data.SQLite version 1.0.60.0 instead of the latest version 1.0.65.0? ie is it just because that's when it was released or is there anything in the newer ...
2
votes
3answers
338 views
SubSonic equivalent of an SQL update
I'm wondering if the following SQL update query is possible using the equivalent SubSonic commands:
UPDATE MYTABLE SET MYFIELD = MYFIELD + 3 WHERE ANOTHERFIELD = ANOTHERVALUE
I couldn't find a ...
2
votes
3answers
212 views
Getting a log of the SQL SubSonic is using
Linq2SQL has the great Log property to see what the actual SQL statements that it is generating. Does SubSonic 2.2 have something similar to this?
1
vote
0answers
24 views
SubSonic 2.2 making template for DBF files
I have SubSonic 2.2 and I have some DBF files that I need to use for a project. I'm wondering if it's possible to edit the .aspx templates to work with DBF? Has anyone tried this and have a working ...
1
vote
1answer
61 views
Unable to insert a record (SqlServer) using Subsonic 2.2
I use SqlServer 2008. Here is the DB schema: (Please note that this only to test SubSonic)
Create Table Dept
(
DeptID int not null Identity(1,1) primary key,
DeptName varchar(20),
Location ...
1
vote
0answers
41 views
subsonic2.2 is generating empty clases for all my mysql tables
HI
I'm having some problems to run Subsonic under mono.
Initialy everything seems to work perfectly but ..at the end...there is something wrong.
Every thing seems to work fine (no error output) but ...
1
vote
1answer
232 views
SubSonic: MySql, Float, and Single->Decimal issues
Have 2 MySQL databases. One is the main database, the other is used for geolocation data. Now, for SubSonic to play nice with the generated files via Subcommander, I made it easy and just created a ...
1
vote
1answer
78 views
Fixing the SubSonic 2.2 Calendar, How do I get RegisterClientScriptInclude calls to render when control is not visible?
I really liked the SubSonic 2.2 calendar control. It is a .Net implementation of the old Dynarch calendar found here.
So I did what any developer would do and I swiped all the code for the calendar ...
1
vote
1answer
136 views
SubSonic - How can i create my business logic layer
Im new to subsonic and generally this was of programming, i usually develop from a rad perspective so using the visual studio dataset designer, but i wanted to start looking at developing n teir ...
1
vote
3answers
271 views
How does one do an Oracle top-n (paged) query in SubSonic 2.2?
(Disclaimer: I changed/obfuscated some of the variable/table/column names here for security reasons. Please forgive me if something looks a little off.)
I am building a front-end to an Oracle 10g ...
1
vote
1answer
93 views
SubSonic 2.2 support for Lazy Laoding
Does SubSonic 2.2 support lazy loading? Can I lazy load a property of an object? If yes, where can I find info on this?
1
vote
3answers
570 views
Inserting primary key values using SubSonic and sqlite - problem because SubSonic thinks columns are either AutoIncrement or not
I'm using SubSonic 2.2 and sqlite and have encountered a problem when dealing with tables with an INTEGER PRIMARY KEY column that isn't AUTOINCREMENT. According to the faq:
If you declare a ...
1
vote
1answer
48 views
SubSonic2.2 Add() not working
I have 2 tables in my DB, Customers, Contacts. CusID is a Foreign Key in Contacts table. I tried the following
Dim contact as New Contact(Guid.NewGuid())
contact.FirstName = "Mary"
contact.LastName = ...
1
vote
1answer
222 views
SubSonic: MaxLength of TableColumn (exceeding)
So, we're using SubSonic as our DAL/ORM for one of our projects. Everything has been running smoothly (the database already existed, so we used SubSonic on top of it), however, on occasion we'll run ...
1
vote
1answer
193 views
SubSonic-based app that connects to multiple databases
I currently developed an app that connects to SQL Server 2005 database, so my DAL objects where generated using information from that DB.
It will also be possible to connect to an Oracle and MySQL ...
1
vote
0answers
90 views
Subsonic - Get All Columns From Joined Tables
How do I display columns from both tables with an "InnerJoin" from SubSonic?
var myQuery = New SubSonic.Select().From(TableObject1)
...
1
vote
1answer
117 views
SubSonic: Selecting all columns with an aggregate
How would you best handle constructing this SQL statement in SubSonic?
SELECT ac.*
, SUM(pt.amount) AS totalPoints
FROM tbl_account AS ac
INNER JOIN tbl_pointTracking AS pt ON ac.id = ...
1
vote
2answers
229 views
Subsonic query: Problem with the produced query
I'm having a problem with subsonic quey. The deal is, I have a View and I want to query it's data to produce something like the following SQL statment:
select * from myView
where (col1 like '%a%' or ...
1
vote
1answer
244 views
SubSonic OpenExpression/CloseExpression
Hey All! I'm trying to construct a query that is something like this:
Where column = "value" AND column2 = "value" AND (column3 = "value" OR column4 = "value")
I have this code:
return new Select()
...
1
vote
1answer
104 views
Subsonic 2.2 & Sqlite
I've tried to use Subsonic 2.2 & System.Data.Sqlite.Dll latest version (1.65.0),
in my project.
and recevied an error message, which gave me the idea subsonic got a problem with the sqilte ...
1
vote
1answer
170 views
Subsonic 2.2 InnerJoin Across Two Databases
Can anyone provide an example of how to join across two schemas using subsonic 2.2.
This doesn't work:
SqlQuery qu = new Select("*")
.From(NorthwindLeads.Lead.Schema)
...
1
vote
1answer
318 views
Update a column value based on another column value with SubSonic 2.1/2.2
I have the following code using SubSonic 2.1/2.2
SubSonic.Update(<some table>)
.Set(<column A>)
.EqualTo(<column B>).
Where(condition...).Execute()
I would like to change it to ...
1
vote
2answers
147 views
Subsonic 3 equivalent of Subsonic 2 SetColumnValue and GetColumnValue ActiveRecord
I am converting a project from Subsonic Version 2.2 to 3.0.0.3 and have been unable to find the equivalent functionality of SetColumnValue and GetColumnValue that version 2 has.
What does version 3 ...
0
votes
1answer
25 views
Accept / Cancel changes in Subsonic 2.2
I have a .NET 2.0 Winforms app (and Subsonic 2.2), where I have a DataGridView and few controls in a panel, both are bound to a BindingSource whose datasource is a Subsonic ActiveRecord collection. ...
0
votes
1answer
14 views
How to group “And” & “Or” in a single query statement using subsonic 2x
I am having some trouble in converting the following
SELECT * FROM foo f WHERE
(f.name = 'name' AND f.date = '1980/02/2001')
OR
(f.name = 'another name' AND f.date = '1990/02/2001')
to
new ...
0
votes
0answers
44 views
.Net winforms BindingSource
I use Subsonic (2.2) query to join two tables (Class and Staff) and return the result as a Dataset. Whilst I actually want a ClassX collection, I could not do so, because I want a combobox to display ...
0
votes
1answer
13 views
Batch insert to different provider using subsonic 2.2
I have an IEnumerable and I would like to do a batch insert (240,000+ records). I've been perusing the forums and SO and I haven't been able to come up with something that works...
The other catch ...
0
votes
1answer
28 views
Subsonic 2.2 doesn't support .NET Framework 4.0 Windows Application?
I am using .net framework 4.0 and after adding reference of subsonic 2.2 dll. Once I compiled the reference disappeared, I google it, I came to know it uses system.web.dll.
I have compiled ...
0
votes
2answers
113 views
Save image to Sql Server image to image field using C# and Subsonic
In an ASP.NET app (using framework 2.0), and the ORM for this application is Subsonic 2.2, which I'm working with for the first time.
I have an image which I've retrieved from a URL, and I have an ...
0
votes
1answer
69 views
SubSonic Save() changes not working
I am trying to save changes to a record, however I am getting the error
Violation of PRIMARY KEY constraint
'PK_TStoreAssignment'. Cannot insert
duplicate key in object 'TAssignment'.
The ...
0
votes
1answer
297 views
Listbox.DisplayMember won't display value from calculated property
I'm using SubSonic 2.2 for my DAL and extended one of my classes with a calculated property that returns a string containing another property with indenting based on the level of the outline at which ...
0
votes
1answer
75 views
Subsonic - query with optional parameters
Using C# 3.5 through VS 2008 and subsonic 2.2.
Anyone know if it's possible to create a subsonic query that essentially has an 'IF' in the middle of it, depending on whether a passed parameter was, ...
0
votes
1answer
108 views
Trouble getting transaction working with SubSonic
I'm having a little trouble getting a multi delete transaction working using SubSonic in an ASP.NET/SQL Server 2005. It seems it always makes the change(s) in the database even without a call the ...
0
votes
1answer
93 views
c# subsonic 2.2 : many-to-many relationship and pagination problem
i have 3 tables (Categories, Articles and ArticleCategories). The ArticleCategories has a combined PK and concists of:
ArticleID (PK, FK, int)
CategoryID (PK, FK, int)
Now when I'm using the ...
0
votes
2answers
156 views
Subsonic 2.2 varchar2 maxlength problem
I have a problem with saving 4000 characters to varchar2(4000) oracle 10g column
it lets me save just 2000 characters and when I try to save exceeding 2000 character
I get tihs error
Can't save: ...
0
votes
1answer
193 views
Saving a null date to SQL2008 via. SubSonic 2.x
Ok, So I am trying to set a datetime column to null via SubSonic 2.x
DateTime? dt = new DateTime();
dt= null;
Datum pd = (new DatumCollection()
.Where(Datum.Columns.Data, ...
0
votes
1answer
107 views
SubSonic 2.0 Delete() is 'method' bus is used like a 'type'
I've recently had to adopt a SubSonic based solution, and i'm getting an error
for Delete Insert and Update
Delete is a 'method' but is used like a 'type'
public static Delete Delete()
{ ...
0
votes
1answer
157 views
NHibernete or Subsonic! (Deciding ORM with fastest develop time, easiest learning curve and flexibility) [closed]
Possible Duplicate:
nhibernate, entity framework, active records or linq2sql
NHibernete or Subsonic I wan to decide for ORM with fastest develop time, easiest learning curve and ...
0
votes
2answers
69 views
using like condition in Subsonic 2.2
I need some help in using "like" condition in Subsonic 2.2
Following is my query
DAL.DB.Select()
.From("tblName")
.Where("NewFirstName")
.Like(strFirstName)
.Or("PrevFirstName")
...
0
votes
1answer
305 views
SQL connection is too slow
We have a business web application in ASP.NET + SQL Server 2008.
In the beginning, SQL Server and IIS were on the same machine. Now we bought another machine. Current configuration is IIS machine ...
0
votes
1answer
91 views
Trouble running mbUnit 2 tests in SubSonic 2.1
I'm still using Subsonic 2 for a few of my projects. Wanting to hack it a little.
I've got the latest pull from the GIT repo, I'm using VS2008 Pro.
Looking in the SubSonic.Test project, the mbUnit ...
0
votes
1answer
36 views
Help with SubSonic 2.2 binding
I have the following tables
TUser (user_id,firstname,lastname) PK
user_id
TGroup (group_id,name) PK group_id
TUsersGroups (user_id,group_id) PK
(user_id,group_id) FK (user_id) FK
...
0
votes
2answers
106 views
SUBSONIC using subcommander via VS2008 causing following errors - help please
Ive been using subcommander to generate my dal. Im using vb.net and sqlexpress and .net 3.5
My webconfig looks like this
<!-- add subsonic in for dal-->
<section name="SubSonicService" ...
0
votes
1answer
65 views
Is there a way to use T4 templates with Subsonic 2.2
I understand Subsonic 3.0 is the latest and greatest, and I understand Subsonic 3.0 has T4 templates.
But Subsonic 3.0 is not backwards compatible with Subsonic 2.2, meaning, my project with ...