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

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