Using Subsonic 3, I have a simple class called "ConferenceRepository" that has a method that returns a bunch of conferences based on their status. I am testing this using SubSonic's built in support for testing. My setup of the repo looks like this:

// 2 Approved, 4 pending, 3 rejected
var data = new List<Conference>
               {
                   new Conference {Approved = true, Rejected = false},
                   new Conference {Approved = true, Rejected = false},
                   new Conference {Approved = false, Rejected = false},
                   new Conference {Approved = false, Rejected = false},
                   new Conference {Approved = false, Rejected = false},
                   new Conference {Approved = false, Rejected = false},
                   new Conference {Approved = false, Rejected = true},
                   new Conference {Approved = false, Rejected = true},
                   new Conference {Approved = false, Rejected = true}
               };

Conference.ResetTestRepo();
Conference.Setup(data);

And then my Repo class eventually executes this line, using Find():

return Conference.Find(c => c.Approved).ToList(); 

Trouble is, this always returns all the records (9). I've tried different find criteria, to no avail.

Anyone know what the issue is? I've tried fixing equality comparison in the tt templates as described here: http://stackoverflow.com/questions/2454889/fixes-for-problems-with-subsonic-3s-testrepository but that doesn't help.

link|improve this question

74% accept rate
Are you using the most recent sources from github? – Saintedlama Sep 29 '10 at 2:59
Using the SubSonic_3.0.0.4.zip package downloaded from github – Matt Roberts Sep 29 '10 at 8:53
feedback

2 Answers

up vote 1 down vote accepted

So changing from .Find to...

return Conference.All().Where(c => c.Approved == true).ToList(); 

Solves it.

link|improve this answer
feedback

Shouldn't make any difference, but did you tried:

return Conference.Find(c => c.Approved == true).ToList(); 
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.