Created
March 27, 2011 10:52
-
-
Save johnnonolan/889121 to your computer and use it in GitHub Desktop.
IN Clause now working :)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [Subject("Inspecting SQL")] | |
| public class When_calling_select_from_users_with_predicate_collection | |
| { | |
| Because of = () => result = (q.SELECT * q.FROM.Users.WHERE.UserId.IN(1,2)).ToString(); | |
| It should_return_select_star_from_users = () => result.ShouldEqual("SELECT * FROM Users WHERE UserId IN (1,2)"); | |
| static string result; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment