6
votes
4answers
119 views
What is so great about ORM?
Hi,
So I'm having a head against the wall moment and hoping somebody can come help either remove the wall or stop my head from moving!!
Over the last 3/4 weeks I've been investigating ORM's in …
0
votes
1answer
36 views
Most efficient way of loading data into LINQ object for search result type method
I currently have the following:
public IEnumerable<News> NewsItems
{
get { return from s in News.All() where s.Description.Contains(SearchCriteria) || …
0
votes
1answer
16 views
Subsonic template for SQLite is incorrect
The SQLite.ttinclude (for VB) should have
tbl.Schema="";
in the LoadTables procedure, otherwise the Struts.tt will not compile
Running transformation: System.ArgumentNullException: Value cannot be …
0
votes
1answer
11 views
Use subsonic 3.0 to work with stored procedures
Hi I just downloaded subsonic 3.0 and I want to work with stored procedures. I don't know which template to choose: ActiveRecord or LinqTemplates. I don't really know the difference. I know that I …
1
vote
2answers
34 views
Creating Subsonic Dynamic Query with numerous where clause
I have the following code which is in a base class.
MyApp.MyDB = new MyApp.MyDB ();
IRepository<T> repo = new SubSonicRepository<T>(db);
CurrentTable = …
1
vote
1answer
47 views
How to tell if user has modified data using bindingsource
I have a DataGridView bound to a bindingsource which is bound to a List<T>. The user clicks a row that goes to a form with textboxes etc. The textboxes are databound like so:
if …
0
votes
0answers
23 views
Should ActiveRecord DirtyColumns be cleared when calling Save
I am checking whether my class IsDirty, if so the user gets prompted to with a "do you want to Save" message. If they click yes, it calls a Save however I am stuck in a loop because Save does not …
0
votes
0answers
22 views
Has anyone got a demo Winforms app using Subsonic and Databinding
I am using Subsonic in a Windos app and have a gridview using a bindingsource which holds a ExecutedTypeList but I am having problems all over the place and am wondering whether DataSet/DataTable …
1
vote
1answer
58 views
T4 templates don’t work for me in my Visual studio 2008 solution
I download the latest version of Subsonic(3.0.0.3) but when I add the T4 templates in my solution in Visual studio 2008 SP1, the auto-generation don't work. If I right click on the template files also …
0
votes
1answer
37 views
subsonic with oracle database
Can anyone advise on the best Oracle ASP.NET 3.5 ORM in the land..pros and cons?
How good is Subsonic 3.0 with Oracle?
Thanks
0
votes
0answers
17 views
Clone List from ExecuteTypeList
I have the following:
var query = db.SelectColumns(columnList.ToArray()).
From(CurrentTable.Name).
…
1
vote
1answer
31 views
Subsonic - Return only certain columns/properties for display
I have a baseclass that handles returning data from the relevant class/table.
I want to have some way of specifying the columns to display. Maybe have a public columns List that gets assigned with …
0
votes
0answers
42 views
Specific Subsonic Queries Not Working on SQL Server 2000
I'm using Subsonic 3 and am just starting the process of putting my application into production. Locally, I develop using SQL Server 2008 but the production environment is using SQL Server 2000. I am …
4
votes
7answers
141 views
If you had one wish for SubSonic what would it be?
I know this question seems subjective but it's really pretty simple. As a long term user, and part time contributor to SubSonic I'm interested in what the community thinks would be the single best way …
0
votes
1answer
24 views
SubSonic inner join mystery
I've have 2 tables CampaignCoverage and Coverage
CampaignCoverage has a CoverageID column. Coverage has a column DateX.
Basically I've not specified in the code that CampaignCoverage.CoverageID = …
