NHibernate Mapping Code:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public abstract class EntityBaseMap<T> : ClassMap<T> where T : EntityBase<T> | |
{ | |
protected EntityBaseMap() | |
{ | |
DynamicUpdate(); // Hibernate will update the modified columns only. | |
Id(x => x.Id).Column("Id"); // Numberic Id | |
Map(x => x.IsDeleted); | |
Map(x => x.CreatedAt); | |
OptimisticLock.Version(); | |
// DateTime2 is not a valid SQLITE database type. To use DateTime2 with SQLITE | |
// you need to extend the SQLITE Dialect and | |
Version(x => x.ModifiedAt).Column("ModifiedAt").CustomType("DateTime2"); | |
} | |
} |
Unforntuently SQLITE doesn't support DateTime2. After searching around and not finding a good solution, I ended up extending SQLiteDialect class to map it to TEXT per the following link: http://stackoverflow.com/a/16597386/2544235
SQLiteDialect Code:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class CustomDialect : SQLiteDialect | |
{ | |
protected override void RegisterColumnTypes() | |
{ | |
base.RegisterColumnTypes(); | |
RegisterColumnType(DbType.DateTime2, "DATETIME2"); | |
} | |
protected override void RegisterFunctions() | |
{ | |
base.RegisterFunctions(); | |
RegisterFunction("current_timestamp", new NoArgSQLFunction("TEXT", NHibernateUtil.DateTime2, true)); | |
} | |
protected override void RegisterKeywords() | |
{ | |
base.RegisterKeywords(); | |
RegisterKeyword("datetime2"); | |
} | |
protected override void RegisterDefaultProperties() | |
{ | |
base.RegisterDefaultProperties(); | |
} | |
} |