Base solution for your next web application
Open Closed

Any Documentation on Asp.Net zero power tool? #4631


User avatar
0
manojreddy created

Could you please provide documentation related to RAD tool. What’s it is? What it does? How to use it? How is this useful? Pleas provide some practical examples and sample if possible.


2 Answer(s)
  • User Avatar
    0
    yekalkan created

    Hi,

    We shared a video today <a class="postlink" href="https://youtu.be/lqu7AVBTepw">https://youtu.be/lqu7AVBTepw</a>

    And the documentation is on the way.

  • User Avatar
    0
    naurinrr created

    Hi there,

    Any documentation or examples for creating entities with many to many or one to many relationships? Would I put a navigation properties for that? Please explain using Student and Course example which has many to many relationship. How do I specify complex type attributes other than Enums E.g.

    public class Contact
    {
        public CorrespondencePreference Correspondence { get; set; }
    
        public IEnumerable<EmailAddress> Emails => this._emails;
    
        public virtual Category Category { get; set; }
    
        public ContactJob Job { get; set; }
     }
    

    where ContactJob, Category and EmailAddress are complex types.