public HibernateProperty(string name, object val, IType type, object owner) { Name = name; this.val = val; this.owner = owner; this.type = new HibernateType(type); }
public static bool IgnoreAudit(HibernateType type, Object owner, string name) { return type.Type is StringClobType || DontAudit(owner, name); }