KLO128.D3ORM.MSSQL

Dependencies: KLO128.D3ORM.Common

Implementations of the stuff like ID3Context for MSSQL... 


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