예제 #1
0
 public StringBuilderFormatValueContext(StringBuilderFormatContext formatContext, Value <TValue> value)
 {
     _formatContext = formatContext;
     _context       = new BaseContext(formatContext);
     _value         = value;
     _position      = formatContext.Position;
 }
예제 #2
0
 public StringBuilderFormatEntityContext(StringBuilderFormatContext formatContext, TEntity entity)
 {
     Entity         = entity;
     _context       = new BaseContext(formatContext);
     _formatContext = formatContext;
     _position      = formatContext.Position;
 }