Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Carlos Casalicchio 177 posts 738 karma points
    May 01, 2019 @ 02:02
    Carlos Casalicchio
    0

    Migration v7 DataTypeDefinition to v8

    Hello Folks,

    In version 7 I had a piece of code that created a new DataTypeDefinition, but I am not being able to find it's counterpart in version 8, any suggestions?

    And the IDataTypeService doesn't have a GetDataTypeDefinitionByPropertyEditorAlias method anymore either

    DataTypeDefinition dataType = null;
    
                        if (!exists)
                            dataType = new DataTypeDefinition(containerId, alias);
                        else
                            dataType = _dataTypeService.GetDataTypeDefinitionByPropertyEditorAlias(alias).First() as DataTypeDefinition;
    
                        dataType.Name = name;
                        dataType.PropertyEditorAlias = propertiEditor;
    
  • Dave Woestenborghs 3504 posts 12135 karma points MVP 9x admin c-trib
    May 01, 2019 @ 08:15
    Dave Woestenborghs
    0

    Hi Carlos,

    I think the method has been renamed to GetByEditorAlias(alias) in V8

    Can you try if that works for you ?

    Dave

  • Carlos Casalicchio 177 posts 738 karma points
    May 01, 2019 @ 13:16
    Carlos Casalicchio
    0

    Yes Dave, GetByEditorAlias has worked. Thank you!

    But I still haven't found a substitute for DataTypeDefinition , any suggestions?

  • Dave Woestenborghs 3504 posts 12135 karma points MVP 9x admin c-trib
    May 01, 2019 @ 13:47
    Dave Woestenborghs
    0

    Hi Carlos,

    This method now returns a type of IDataType : https://github.com/umbraco/Umbraco-CMS/blob/853087a75044b814df458457dc9a1f778cc89749/src/Umbraco.Core/Models/IDataType.cs

    I think that has replaced DataTypeDefinition.

    Dave

  • Carlos Casalicchio 177 posts 738 karma points
    May 01, 2019 @ 14:10
    Carlos Casalicchio
    0

    Yes Dave,

    I have been fiddling with the code and search for a way around this. Let me share the background of what my code used to do in version 7, and you can tell me if what has changed in version 8:

    The code was creating a new DateType so it could be consumed by the PropertyEditor.

    It seems that no longer applies. What should I do? When I create the DataEditor class (with correct attributes), will it create the DataType automatically?

  • Dave Woestenborghs 3504 posts 12135 karma points MVP 9x admin c-trib
    May 01, 2019 @ 14:16
    Dave Woestenborghs
    0

    Hi Carlos,

    I haven't done that much with V8 yet. But I guess you need to use the save method of the datatype service

    https://our.umbraco.com/apidocs/v8/csharp/api/Umbraco.Core.Services.Implement.DataTypeService.html#UmbracoCoreServicesImplementDataTypeServiceSaveUmbracoCoreModelsIDataTypeSystemInt32

    Dave

  • Carlos Casalicchio 177 posts 738 karma points
    Aug 27, 2021 @ 12:29
  • This forum is in read-only mode while we transition to the new forum.

    You can continue this topic on the new forum by tapping the "Continue discussion" link below.

Please Sign in or register to post replies