Reputation: 4097
I'm using .NET 4.0, SQL Server, looking to do an inner join across two databases on the same server. Subsonic doesn't seem to like this. Any ideas?
Upvotes: 0
Views: 93
Reputation: 920
if you have your sql-statement execute it via the CodingHorror-Class
eg.:
CodingHorror cr = new CodingHorror(sqlIDetails);
result = cr.ExecuteTypedList<QueueLog>();
Upvotes: 1