Exemplo n.º 1
0
 public void ImageColumn()
 {
     CreateTable("image", TestTableCreator.GetBlobSqlValue(_dbContext));
 }
Exemplo n.º 2
0
 public void LongRawColumn()
 {
     CreateTable("long raw", TestTableCreator.GetBlobSqlValue(_dbContext));
 }
Exemplo n.º 3
0
        public void Varbinary(int length)
        {
            var type = length == -1 ? "varbinary(max)" : $"varbinary({length})";

            CreateTable(type, TestTableCreator.GetBlobSqlValue(_dbContext));
        }
Exemplo n.º 4
0
 public void Blob()
 {
     CreateTable("blob", TestTableCreator.GetBlobSqlValue(_dbContext));
 }