Last active
April 2, 2019 20:00
-
-
Save ahmad-moussawi/67ac7b6951e219f2d34fc3a4b12e55ba to your computer and use it in GitHub Desktop.
sqlkata_tips_tricks.sql
This file contains 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
SELECT * FROM [Books] | |
WHERE ([Status] = 'active' AND [AuthorId] IS NOT NULL) | |
OR ([IsPublished] = 1 AND [PublishedDate] IS NOT NULL) |
This file contains 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
db.Query("Books") | |
.Where(q => q.Where("Status", "active").WhereNotNull("AuthorId")) | |
.OrWhere(q => q.Where("IsPublished", 1).WhereNotNull("PublishedDate")); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment