MicroLite icon indicating copy to clipboard operation
MicroLite copied to clipboard

MicroLite ORM framework

Results 18 MicroLite issues
Sort by recently updated
recently updated
newest added

Created https://github.com/TrevorPilley/MicroLite/tree/Sybase branch for implementation, needs: - SybaseSqlAnywhereCharacters - SybaseSqlAnywhereDialect - SybaseDbDriver

enhancement
on hold

Created https://github.com/TrevorPilley/MicroLite/tree/Oracle branch for implementation, needs: - OracleSqlCharacters - OracleSqlDialect - OracleDbDriver

enhancement
on hold

Digging through the code I don't find any facility to map PostgreSql's Jsonb datatype or any other custom datatype. The TypeConverter facility is not help in this situation as PostgreSql...

enhancement
on hold

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.

enhancement
on hold

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...

on hold

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...

on hold

The idea here will be that the core MicroLite library will contain the Session API and support for MS SQL Server along with all the other classes and interfaces for...

enhancement
breaking change
on hold

We will move from the old static API: ``` CSharp Configure.Fluently().ForMsSqlServer("")... ``` To a newer instance based API: ``` CSharp var config = new SessionConfiguration(); config.UseLog4Net(); config.UseMsSqlConnection("") ``` The Listeners,...

enhancement
breaking change
on hold