KLO128.D3ORM.SQLite

Dependencies: KLO128.D3ORM.Common

Implementations of the stuff like ID3Context for SQLite... 


public class SQLiteD3Context : D3BaseContext
{
    public SQLiteD3Context(
        Dictionary<Type, EntityMapping> EntityMappings,
        string EntityIdPropFormat = "{0}Id",
        string DbIdColumnFormat = "{0}Id",
        string DtoPatternFormat = "{0}DTO",
        char JoinPrefixHelperChar = 'x',
        string DateFormat = "yyyy-MM-dd")
        : base(
            EntityMappings,
            EntityIdPropFormat,
            DbIdColumnFormat,
            DtoPatternFormat,
            "!=",
            JoinPrefixHelperChar,
            DateFormat)
}