This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Nested | |
{ | |
public int Property1 {get;set;} | |
public string Property2 {get;set;} | |
} | |
public class Model | |
{ | |
public int Id { get; set; } | |
public int ParentId { get; set; } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class UserModel | |
{ | |
public virtual CategoryModel Category { get; set; } | |
public virtual UserGroupModel Group { get; set; } | |
} | |
public class CategoryModel | |
{ | |
public CategoryModel Category { get; set; } | |
} |