Tobias Rummelt
Tobias Rummelt
Currently, MicroLite is not able to call stored procedures that have OUT or INOUT parameters because you can not specify the direction (System.Data.ParameterDirection). The SqlBuilder (IWithParameter) should also support this.
Bulk inserts
One thing I'm missing for handling larger data volumes are bulk inserts supported by MySQL and MSSQL 2008 (not sure about others). Something like an overload of `ISession.Insert` that takes...
I've been more then once in the situation where I wanted to store or read a class that had one or more read-only properties that needed to be set via...
According to the wiki page on Type Converters, registering a converter via ``` C# TypeConverter.Converters.Add(new MyTypeConverter()); ``` should be enough for converting to and from database values for a specific...
**Is your feature request related to a problem? Please describe.** We have a dotnet backend with an Angular frontend. Since we use DDD and our UL uses german, we frequently...