Click here to Skip to main content
15,887,683 members
Home / Discussions / Design and Architecture
   

Design and Architecture

 
AnswerRe: J2EE or the other stuff. Pin
jschell27-Apr-19 7:54
jschell27-Apr-19 7:54 
QuestionDropBox Style App Pin
Kevin Marois17-Apr-19 11:07
professionalKevin Marois17-Apr-19 11:07 
AnswerRe: DropBox Style App Pin
abmv22-Apr-19 7:43
professionalabmv22-Apr-19 7:43 
AnswerRe: DropBox Style App Pin
Eddy Vluggen22-Apr-19 7:58
professionalEddy Vluggen22-Apr-19 7:58 
AnswerRe: DropBox Style App Pin
Gerry Schmitz22-Apr-19 8:36
mveGerry Schmitz22-Apr-19 8:36 
GeneralRe: DropBox Style App Pin
Kevin Marois22-Apr-19 9:08
professionalKevin Marois22-Apr-19 9:08 
GeneralRe: DropBox Style App Pin
Gerry Schmitz23-Apr-19 8:18
mveGerry Schmitz23-Apr-19 8:18 
QuestionHow to design class for hierarchical data? Pin
ND Sharma11-Apr-19 1:54
ND Sharma11-Apr-19 1:54 
I am trying to design a class for hierarchical data, I have some categories and dynamic number of subcategories for ex:
1.Technology --> C# --> Threading
                 -->IO
                 -->Exception
2.Domain --> Finance-->Equity
                  -->IR
                  -->Currency

like that multiple categories user can configure and then he will be able to add articles for any of above category. I have multiple thoughts like below codes and having confusion between below designs of classes 

    Public class Category{
        public int Id { get; set;}
        public string description { get; set;}
        public int ParentCategoryId {get; set;}
    }
    
    Public class Category{
        public int Id { get; set;}
        public string description { get; set;}
        public List<Category>SubCategories {get; set;}
    }
    
    Public class Category{
        public int Id { get; set;}
        public string description { get; set;}
        public Category Parent {get; set;}
    }

AnswerRe: How to design class for hierarchical data? Pin
Gerry Schmitz11-Apr-19 5:35
mveGerry Schmitz11-Apr-19 5:35 
AnswerRe: How to design class for hierarchical data? Pin
jschell13-Apr-19 6:39
jschell13-Apr-19 6:39 
GeneralRe: How to design class for hierarchical data? Pin
Gerry Schmitz14-Apr-19 7:48
mveGerry Schmitz14-Apr-19 7:48 
GeneralRe: How to design class for hierarchical data? Pin
jschell21-Apr-19 6:39
jschell21-Apr-19 6:39 
QuestionWeb API Design Pin
Mycroft Holmes4-Mar-19 20:46
professionalMycroft Holmes4-Mar-19 20:46 
AnswerRe: Web API Design Pin
Nathan Minier5-Mar-19 1:59
professionalNathan Minier5-Mar-19 1:59 
GeneralRe: Web API Design Pin
Mycroft Holmes5-Mar-19 11:16
professionalMycroft Holmes5-Mar-19 11:16 
GeneralRe: Web API Design Pin
Nathan Minier6-Mar-19 1:24
professionalNathan Minier6-Mar-19 1:24 
QuestionManaging relationship in microservices world Pin
Mart_2k425-Feb-19 6:44
Mart_2k425-Feb-19 6:44 
AnswerRe: Managing relationship in microservices world Pin
Pete O'Hanlon25-Feb-19 11:45
mvePete O'Hanlon25-Feb-19 11:45 
AnswerRe: Managing relationship in microservices world Pin
Gerry Schmitz25-Feb-19 17:57
mveGerry Schmitz25-Feb-19 17:57 
AnswerRe: Managing relationship in microservices world Pin
Nathan Minier27-Feb-19 1:52
professionalNathan Minier27-Feb-19 1:52 
AnswerRe: Managing relationship in microservices world Pin
Eddy Vluggen27-Feb-19 2:33
professionalEddy Vluggen27-Feb-19 2:33 
AnswerRe: Managing relationship in microservices world Pin
Bohdan Stupak1-Mar-19 3:38
professionalBohdan Stupak1-Mar-19 3:38 
QuestionNode.js : Non-blocking thing Pin
Eytukan16-Dec-18 23:10
Eytukan16-Dec-18 23:10 
AnswerRe: Node.js : Non-blocking thing Pin
Eddy Vluggen17-Dec-18 0:05
professionalEddy Vluggen17-Dec-18 0:05 
GeneralRe: Node.js : Non-blocking thing Pin
Eytukan17-Dec-18 1:34
Eytukan17-Dec-18 1:34 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.