Rick Drizin

Results 79 comments of Rick Drizin

Unfortunately Entity Framework requires a lot of other information. If we filter-out the system tables does the query work faster?

Hi @jeremysimmons - honestly I've sacrificed a few nights and weekends, but the good part is that I've also learned a ton with this project. Thanks for your kind words...

Good question (and looks like an important feature request). First, let me explain `ICodegenOutputFile.RelativePath`: this is a relative path of where the file will be saved, **relative to the base...

I've pushed a commit with this new feature where you can inject VSExecutionContext into your template. Please take a look and let me know if it works. The VS Extension...

I just added a small example to README, created a sample unit test, and also fixed a bug - now all tests are passing.

The regex has 2 major changes: 1) Changed the captures to be named capture groups. Just for clarity. I think there is a [small performance overhead](https://blogs.msdn.microsoft.com/bclteam/2011/03/28/optimizing-regex-performance-part-3-ron-petrusha/) (in favour of readability)....

No problem, actually I didn't make myself clear on this. These conditional patterns are based on Ruby i18n inflector (http://www.rubydoc.info/gems/i18n-inflector/2.6.6). Quoting from their documentation: > can be used if there...

Yes, #324 supports number inflections (plural forms) and gender inflections by using conditional statements. Although #323 isolated may look simple and unnecessary, it's crucial for #324 to work (that's why...

I was having the same error when I increased the Arity of `Argument`, but all I had to do was changing it to `Argument`

I've just published a library (with extensions to Serilog, NLog, and Microsoft ILogger) that allows writing log messages using interpolated strings and yet defining the property names through different syntaxes....