Trou
Trou
CC#
Created by Trou on 6/18/2024 in #help
Looking for Boilerplate and Learning Resources
Hello, I am a NodeJS developer. I have mostly worked with frameworks like NestJS and have had brief experience with Spring Boot. Now, I want to learn the .NET side, but unlike the others, there seems to be no similar framework. Because of this, when I examined projects, I saw that very different file structures are used even if the same architecture is used. Can you guide me to some boilerplate examples and educational content that I can use during my learning process?
40 replies
CC#
Created by Trou on 3/3/2024 in #help
C# .Net Core WebAPI Cyclic Dependancy
Hello, trying to make simple web api, have two classes Character and Episode both classes has nav property to other, wit ManyToMany relationship. The problem is when i trying to Get data json data looks like this; [ { "name": "Pika", "status": "asdasd", "species": "adasd", "gender": "Male", "image": "adsas", "episodes": [ { "name": "EP1", "airDate": "22323", "episodeCode": "asdadEP", "characters": [ null ], "id": 1, "createdAt": "2024-03-03T18:40:23" } ], "id": 3, "createdAt": "2024-03-03T17:49:17" } ] Here is my entites public class Character : BaseEntity<long> { ...SomeProps public ICollection<Episode> Episodes { get; set; } } public class Episode : BaseEntity<long> { ...SomeProps public virtual ICollection<Character> Characters { get; set; } }
5 replies