zoukankan      html  css  js  c++  java
  • [备忘]NHibernate映射类型

    System.ValueType Mapping Types

    NHibernate Type.NET TypeDatabase TypeRemarks
    AnsiChar System.Char DbType.AnsiStringFixedLength - 1 char  
    Boolean System.Boolean DbType.Boolean Default when no type attribute specified.
    Byte System.Byte DbType.Byte Default when no type attribute specified.
    Char System.Char DbType.StringFixedLength - 1 char Default when no type attribute specified.
    DateTime System.DateTime DbType.DateTime - ignores the milliseconds Default when no type attribute specified.
    LocalDateTime System.DateTime DbType.DateTime - ignores the milliseconds Ensures the DateTimeKind is set to DateTimeKind.Local
    UtcDateTime System.DateTime DbType.DateTime - ignores the milliseconds Ensures the DateTimeKind is set to DateTimeKind.Utc
    Decimal System.Decimal DbType.Decimal Default when no type attribute specified.
    Double System.Double DbType.Double Default when no type attribute specified.
    Guid System.Guid DbType.Guid Default when no type attribute specified.
    Int16 System.Int16 DbType.Int16 Default when no type attribute specified.
    Int32 System.Int32 DbType.Int32 Default when no type attribute specified.
    Int64 System.Int64 DbType.Int64 Default when no type attribute specified.
    PersistentEnum A System.Enum The DbType for the underlying value. Do not specify type="PersistentEnum" in the mapping. Instead specify the Assembly Qualified Name of the Enum or let NHibernate use Reflection to "guess" the Type. The UnderlyingType of the Enum is used to determine the correct DbType.
    Single System.Single DbType.Single Default when no type attribute specified.
    Ticks System.DateTime DbType.Int64 type="Ticks" must be specified.
    TimeSpan System.TimeSpan DbType.Int64 Default when no type attribute specified.
    Timestamp System.DateTime DbType.DateTime - as specific as database supports. type="Timestamp" must be specified.
    TrueFalse System.Boolean DbType.AnsiStringFixedLength - 1 char either 'T' or 'F' type="TrueFalse" must be specified.
    YesNo System.Boolean DbType.AnsiStringFixedLength - 1 char either 'Y' or 'N' type="YesNo" must be specified.

    System.Object Mapping Types

    NHibernate Type.NET TypeDatabase TypeRemarks
    AnsiString System.String DbType.AnsiString type="AnsiString" must be specified.
    CultureInfo System.Globalization.CultureInfo DbType.String - 5 chars for culture Default when no type attribute specified.
    Binary System.Byte[] DbType.Binary Default when no type attribute specified.
    Type System.Type DbType.String holding Assembly Qualified Name. Default when no type attribute specified.
    String System.String DbType.String Default when no type attribute specified.

    Large Object Mapping Types

    NHibernate Type.NET TypeDatabase TypeRemarks
    StringClob System.String DbType.String type="StringClob" must be specified. Entire field is read into memory.
    BinaryBlob System.Byte[] DbType.Binary type="BinaryBlob" must be specified. Entire field is read into memory.
    Serializable Any System.Object that is marked with SerializableAttribute. DbType.Binary type="Serializable" should be specified. This is the fallback type if no NHibernate Type can be found for the Property.
    摘自:
    http://nhforge.org/doc/nh/en/#mapping-types
  • 相关阅读:
    CODEVS——T 2618 核电站问题
    Spring使用AspectJ注解和XML配置实现AOP
    oracle存储过程
    oracle什么时候需要commit
    短信发送接口被恶意访问
    JAVA内存模型
    构造函数,静态代码块,构造代码块
    mybatis缓存
    volatile和synchronized
    利用反射创建对象必须要显式的声明构造方法吗?
  • 原文地址:https://www.cnblogs.com/llcto/p/2683214.html
Copyright © 2011-2022 走看看