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
| // Apache 2.0 license... This code might not work at all. | |
| /// <summary> | |
| /// Must reference parameters in the query positionally, starting with @p0. | |
| /// </summary> | |
| /// <typeparam name="T"></typeparam> | |
| /// <param name="query">example is "select foo from bar where frob = @p0 and quux = @p1"</param> | |
| /// <param name="selector"> | |
| /// function that (usually) builds a new T from a database row-reader | |
| /// </param> |
NewerOlder