Ejemplo n.º 1
0
 public EFLog()
 {
     _srcFieldNames = new EFCollection<SrcFieldNameColumn>(this);
     _onlyDistinct = true;
     _needLog = true;
     _logIDField = LogField.LogID;
     _markField = LogField.LogState;
     _modifierField = LogField.LogUser;
     _modifyDateField = LogField.LogDateTime;
 }
Ejemplo n.º 2
0
 public EFTransaction()
 {
     _transactions = new EFCollection<Transaction>(this);
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Creates a new instance of EFUpdateComponent
 /// </summary>
 public EFUpdateComponent()
 {
     InitializeComponent();
     _fields = new EFCollection<FieldItem>(this);
 }
Ejemplo n.º 4
0
 public Transaction(String name)
 {
     _transKeyFields = new EFCollection<TransKeyField>(this);
     _transFields = new EFCollection<TransField>(this);
     _transMode = TransMode.AutoAppend;
     _whenDelete = true;
     _whenInsert = true;
     _whenUpdate = true;
 }