internal TextProperty(EntityMetadata enity, TextPropertyBuilder builder, bool isPrimaryKey) : base(enity, builder, isPrimaryKey) { Unicode = builder.Unicode; MaxLength = builder.MaxLength; IsFixedLength = builder.FixedLength; }
public void BuildBasicTest() { var builder = new TextPropertyBuilder(); var textProperty = builder.Build(new List<IValue>()); Assert.IsNotNull(textProperty); Assert.IsInstanceOf<TextProperty>(textProperty); }