0
votes
0answers
2 views
Injecting Subsonic SimpleRepository class to controller
Hi, I'm tryingot get started with IoC, I have an MVC project in which is use subsonic, I'm trying to inject subsonic simplerepository to my controllers but I'm getting this error:
…
0
votes
2answers
15 views
How to mock Add method of subsonic’s SimpleRepository
Hi, I'm trying to mock the Add method of subsonic SimpleRepository with Rihino mocks, I'm using the IRepository Interface but I'm new to mocking and dont know how to go from there, …
0
votes
1answer
89 views
LINQ and VB.NET and the expression tree that is compiled is breaking SubSonic 3
I've been trying to solve a little problem with VB.NET and the expression trees it likes to generate.
I have a simple test...
Public Sub ActiveRecord_Find_By_NonKey_Returns_123() …
0
votes
1answer
16 views
How I do a select max(field) in Subsonic 3.0?
Yes, there is a method max with 13 overloads, none it's simply the name of the column. Something can post an example in VB.NET?
0
votes
1answer
28 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
19 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
34 views
Linq grouping by nullable datetime and using this as criteria
I am struggling with a nullable datetime column [DateInsp] in an ASP.NET app which uses SubSonic3, Linq, MS SQL Server 2005.
I had this all working when the datetime column [DateI …
2
votes
1answer
79 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 …
2
votes
4answers
186 views
Subsonic ActiveRecord - Connections hanging when adding lots of records
I'm getting a familiar Timeout SqlException when I add a lot of new records quickly using Subsonic ActiveRecord and Sql Server.
Timeout expired. The timeout period
elapsed p …
0
votes
3answers
126 views
SubSonic 3.0.0.3 t4 template generation on lage database runs out of connections
When running the templates against a database with 1400+ tables I get the following error. The server shows hundreds of connections. Does anyone know if this is a problem with tem …
0
votes
0answers
8 views
Update Multiple tables using one class
I have multiple tables in mysql which have the same fields (names and types are same). How can I add/delete/update using Subsonic
0
votes
3answers
48 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
2answers
10 views
No datetime values populated from MySQL using SubSonic 3 Linq
I have a MySQL table with a couple of Datetime columns. The columns are set to allow null and some have default value '0000-00-00 00:00:00'. This is a conversion project from ASP t …
2
votes
4answers
212 views
Linq nested select new not working
Hi All,
I'm trying to get eager loading working with Subsonic, and it's been returning null for me.
In the method below, I'm trying to hydrate a domain model (UserModel) which co …
0
votes
1answer
15 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 …
