0
votes
2answers
23 views
Passing generated id from table 1 (primary key) to table 2 (foreign key)??
Hi
I am using (evaluating :)) Subsonic ActiveRecord mode for accessing sqLite. Need transaction to work. Regular stuff... Of ocurse!
Following snippet explains the desired logic. …
0
votes
1answer
25 views
Why won’t SubSonic ActiveRecord update my data?
I am playing around with SubSonic 3 ActiveRecord. I have a table called Users and I have the following fields in a MySQL database:
CREATE TABLE `users` (
`ID` int(10) NOT NUL …
0
votes
1answer
12 views
Equivalent of SqLite Blob type in Subsonic?
Hi
In one SqLite table, I have a BLOB column for saving images (or binary data as a matter of fact). The table is Documents.
Strangely, in Subsonic's ActiveRecord's Documents clas …
0
votes
1answer
17 views
using subsonic with mysql
Hi, I was wondering if anyone knows a reference on how to configure subsonic 3.0 to use mySQL?
0
votes
1answer
17 views
SubSonic and not default connection string problem
I encountered bug in my programm because of SubSonic3 returns records with default connection string in
SingleOrDefault(ByVal expression As System.Linq.Expressions.Expression(Of …
0
votes
2answers
60 views
Debugging SQL in ASP.NET
private void BuildGridView2()
{
GridView1.DataSource = new Select()
.From("NewsReleases")
.Where("RelMonth").IsEqualTo(this.ddlAward.SelectedValue)
.And("RelYear"). …
0
votes
2answers
84 views
SubSonic, and Microsoft stopping support for LINQ.
Hello, I am a front end developer working on a small social network. Currently, we are using SubSonic and it has satisfied all of our needs. Since Microsft has stopped supporting L …
0
votes
3answers
35 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:
…
0
votes
1answer
14 views
SubSonic Error with MySql CONVERT()
I has encountered conversion from integer to string with MySql+SubSonic3 (it generates wrong SQL query). After I found root of the problem in SubSonic sources and fixed it, everyth …
0
votes
2answers
26 views
Check for ModelState errors in posted FormCollection on different Controller
I have a WebPage Controller that handles all my public side of things on the website.
I have an Enquiry table to insert details of information typed in a contact form.
On the c …
0
votes
3answers
47 views
Advice on Subsonic Batch Insert Query
hi am running batch insert with subsonic 3.0.0.3 and MVC and i have wrote the following example:
var myquery1 = new Insert(provider).Into<orderitem>("orderitem_orderid", "or …
0
votes
0answers
13 views
Database constraint violation ignored during SubSonic Save()?
In the following code, if one of the values assigned violates a database constraint, the Save() updates the record with the other good values. However, the database constraint does …
1
vote
1answer
30 views
SubSonic 2.2 SqlQuery object generates very different sql for WHERE…IN statement for SQL Server 2008 and SQL Server 2005
Does anybody have an idea why SubSonic 2.2 SubSonic.SqlQuery object would be generating very different sql for the same C# code when running against SQL Server 2005 or SQL Server 2 …
1
vote
1answer
24 views
Subsonic map POCO to table of a different name
I started a small project and wanted to use Subsonic's SimpleRepository for my database layer. If I have table in my database called Member and I want to create a POCO called T …
0
votes
2answers
30 views
Extract SQL from Subsonic 3
Is there a way to extract the SQL which is run against the database from a bit of subsonic? For instance I have
foreach (var item in EVT.All().Where(e => e.EVT_USRNAME == "st …
