sqlsharpener
sqlsharpener copied to clipboard
Parses SQL files to create a meta-object hierarchy with which you can generate C# code such as stored procedure wrappers.
Readme file edited with c# syntax highlighted
adding null check for particular case of computed view columns for which type cannot be determined. also adding IHasColumns interface that both Table and View implement, so it's possible to...
I was attempting to test this library with generating my EF classes, and when I ran the "Custom Tool" from the content menu of my TT file, I get the...
I can get the schema name from a relationship object. However, I really need it on the table object as well.
I am having troubles referencing any of my views. The error occurs in the Column class on [line 103](https://github.com/aeslinger0/sqlsharpener/blob/master/src/SqlSharpener/Model/Column.cs#L103). The following expression returns an empty list. The column it fails...
I am really loving the library. I am using this to generate ORM for [ServiceStack.OrmLite](https://github.com/ServiceStack/ServiceStack.OrmLite) and would like to add a string enumeration for Indexes in the MetaBuilder so on...
Added two unit tests and updated the Metabuilder file. `public void NonClusteredIndexTest()` `public void ClusteredIndexTest()`
This pull request has: * update DACFx from 12.0.2603.2 to 130.3485.1 (used the x64 package) * update TransactSql.ScriptDom from 12.x to 13.x * add table property IsAutoGeneratedHistoryTable * add table...
Hi, I was wondering if you plan on publishing an updated NuGet package with the view changes that were recently added?
Added build script to automate creation of new nupkg. Follows model used by [Newtonsoft.Json](https://github.com/JamesNK/Newtonsoft.Json/tree/master/Build) and others. Run build\runbuild.cmd and the project will be compiled and nuget package created in Working\NuGet\...