KLO128.D3ORM.MySQL
Dependencies: KLO128.D3ORM.Common
Implementations of the stuff like ID3Context for MySQL...
public class MySQLD3Context : D3BaseContext
{
public MySQLD3Context(
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)
}