0
votes
0answers
11 views
Get distinct month and year with SubSonic
I have date type column (MySQL):
SELECT invdate FROM invoices;
invdate
-------
2009-08-22
2009-07-12
2009-08-23
-------
and I want get month and year like this:
SELECT DISTINC …
2
votes
3answers
88 views
Subsonic 3.0 and linq
I'm playing around with Subsonic 3.0 SimpleRepository and try to get menus and menuitems with one linq query, but the menuitems is allways null
Menu
public class Menu
{
publi …
0
votes
2answers
34 views
SubSonic 2.1 help needed c#
Hello everyone,
I got the following setup for my database:
Category Table (Fields: CategoryID(PK), Title);
Menu Table (Fields: MenuID(PK) CategoryID(FK), Title);
Page Table (Fi …
2
votes
1answer
44 views
Does SubSonic run under Mono?
Has anyone deployed SubSonic on Mono?
0
votes
0answers
24 views
subsonic - parsing “*” - quantifier {x,y} following nothing
I'm using Subsonics Substage, and have just recieved this error? Any suggestions as to the cause?
subsonic parsing "*" - quantifier {x,y} following nothing
0
votes
2answers
45 views
Avoid App.config file in project when using with SQLite/SubSonic (or any other database)
I have a project which I am developing with SQLite and SubSonic 3. I want to know that how can I avoid the App.config file altogether. How do I tell my program to use SQLite Data p …
0
votes
2answers
88 views
Subsonic - can anyone provide an example of using Subsonic SimpleRepository to persist a list/array of objects?
I'm looking for possible ways to persist the following classes. Subsonic SimpleRepository looks like it might work, and people have said it should, when I asked a more general que …
1
vote
0answers
35 views
How do I apply SubSonic 3 “SimpleRepository” changes to production systems
Hey all,
I've been playing with SubSonic's SimpleRepository, and it's awesome. However, I would like to know if there's an easy way to apply pending changes to a production system …
1
vote
1answer
66 views
Object mapping with LINQ and SubSonic
I'm building a small project with SubSonic 3.0.0.3 ActiveRecord and I'm running into an issue I can't seem to get past.
Here is the LINQ query:
var result = from r in Release.All …
0
votes
0answers
19 views
Full text search in Subsonic
Hi everyone,
In subsonic v2 I can use inline query for full text search in sql server 2008, like this:
DB.Query().ExecuteTypedList<Product>("select * from Product where con …
0
votes
1answer
21 views
How to use a string literal to specify a column name in SubSonic 3.0
Here is a statement in SubSonic which does a find using the strongly typed column ProductId:
var products = Product.Find(x => x.ProductID <= 10);
Is there a way to not use …
0
votes
1answer
27 views
Simple Query using subsonic 2.2 with Oracle.dataclient error.
I am using subsonic 2.2 with Oracle provider. I can use active record but my simple query does not work!
int record = new Select(VenApplication.ApplicationidColumn).From(VenApplic …
0
votes
1answer
49 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( …
1
vote
0answers
12 views
RIA base DomainService implementation for Subsonic 3?
So i'm fairly new to both SubSonic and RIA Services. I've done the RIA walkthrough for the HR app and it all looks good, but I'm not quite about creating a DomainService base class …
0
votes
1answer
22 views
SubSonic: Case sensitive test?
Hey guys!
I'm curious if there's a way to do a case sensitive string comparison in SubSonic? I have the following statement:
return new Select()
.From<Account&g …
