示例#1
0
 public override void SaveExtendedBinaryData(Type type, string id, string key, byte[] value)
 {
     if (_exDataAccessor.IsExtendedBlobDataExists(type.FullName, id, key))
     {
         _exDataAccessor.UpdateExtendedBlobData(type.FullName, id, key, value);
     }
     else
     {
         _exDataAccessor.InsertExtendedBlobData(type.FullName, id, key, value);
     }
 }