public PersistenceParameter(string name, object value = null, MappingDirection direction = MappingDirection.Outbound, PersistenceParameterOptions options = null)
 {
     this.Name      = name;
     this.Value     = value;
     this.Direction = direction;
     this.Options   = options;
 }
예제 #2
0
 public PersistenceParameter(string name, object value = null, PersistenceParameterOptions options = null)
 {
     this.Name    = name;
     this.Value   = value;
     this.Options = options;
 }