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

            CreateTable(type, TestTableCreator.GetBlobSqlValue(_dbContext));
        }
示例#4
0
 public void Blob()
 {
     CreateTable("blob", TestTableCreator.GetBlobSqlValue(_dbContext));
 }