Skip to main content

Notifications

Announcements

No record found.

Supply chain | Supply Chain Management, Commerce
Answered

How create Data Model in MPOS D365 F&O

Posted on by 15

pastedimage1594136237667v1.png

[DataMember]
[Column(DayColumn)]
public int DayOfWeek
{
get { return (int)this[DayColumn]; }
set { this[DayColumn] = value; }
}

/// <summary>
/// Gets or sets the open time.
/// </summary>
[DataMember]
[Column(OpenTimeColumn)]
public int OpenTime
{
get { return (int)this[OpenTimeColumn]; }
set { this[OpenTimeColumn] = value; }
}

/// <summary>
/// Gets or sets the closing time.
/// </summary>
[DataMember]
[Column(CloseTimeColumn)]
public int CloseTime
{
get { return (int)this[CloseTimeColumn]; }
set { this[CloseTimeColumn] = value; }
}

/// <summary>
/// Gets or sets the id.
/// </summary>
[Key]
[DataMember]
[Column(IdColumn)]
public long Id
{
get { return (long)this[IdColumn]; }
set { this[IdColumn] = value; }
}
}

[Help]

code above, how to generate it ?, Can it be generated directly from the database / tool or only write from scratch?

thanks,

Regrds. F20

  • Verified answer
    Ramshenkar Profile Picture
    Ramshenkar on at
    RE: How create Data Model in MPOS D365 F&O

    It really does not need to be much complex as shown in sample extension.  Refer below simplified form of your code.  Whats important is [DataMember attribute for each property and  [Key attribute for primary property. 

    class Storehour
    {
    [DataMember]
    public int DayOfWeek { get; set; }
    
    [DataMember]
    public int OpenTime { get; set; }
    
    [DataMember] 
    public int CloseTime { get; set; }
    
    [Key]
    [DataMember] 
    public long Id { get; set; } 
    }

    You can generate it using visual studio past special command, if you have JSON or XML data string. For example I have below json string - 

    {"balance": 1000.21, "num":100, "is_vip":true, "name":"foo"}

    Copy it and open a empty c# class, use visual studio menu "Edit-> Paste Special -> Paste JSON as Class". It will create below structure for you. Decorate it with attribute and that's it. You can also use XML string to generate the class.  

    public class Rootobject
    {
    public float balance { get; set; }
    public int num { get; set; }
    public bool is_vip { get; set; }
    public string name { get; set; }
    }

    Hope it helps you. 

    Regards, 

    Ram

Under review

Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.

Helpful resources

Quick Links

December Spotlight Star - Muhammad Affan

Congratulations to a top community star!

Top 10 leaders for November!

Congratulations to our November super stars!

Tips for Writing Effective Suggested Answers

Best practices for providing successful forum answers ✍️

Leaderboard

#1
André Arnaud de Calavon Profile Picture

André Arnaud de Cal... 291,280 Super User 2024 Season 2

#2
Martin Dráb Profile Picture

Martin Dráb 230,214 Most Valuable Professional

#3
nmaenpaa Profile Picture

nmaenpaa 101,156

Leaderboard

Featured topics

Product updates

Dynamics 365 release plans