Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Extending Digizuite media content types and adding cutstom custom blobs has changed from using guid to use mediaFormatId. In this example the attribute class DigizuiteMediaFormat uses use the guid. See DFO 4.0.0 - 2 Modelling Asset Content Types

Code Block
[ScaffoldColumn(false)]
[DigizuiteMediaFormat("ImageSmall", "3C95F58F-5DD7-4AFB-B1C8-48E05901CE6D")]       
public virtual Blob Small { get; set; }

...

Code Block
[ScaffoldColumn(false)]
[DigizuiteMediaFormat("ImageSmall", 50036)]
public virtual Blob Small { get; set; }   

see See DFO 4.0.0 - 2 Modelling Asset Content Types.