Best of .NET — May 2023
- 1
- 2
Community Picks·3y
Lazy and Eager Loading in Asp.net core Web API
Lazy loading and eager loading are two distinct methods for loading related entities in an object graph. The ORM will automatically send a query to the database to retrieve the pertinent data whenever you access a navigation property. Eager loading can be further customized using the method to load multiple levels of related entities.
- 3
Syncfusion·3y
Create and Validate a Login Form in .NET MAUI
The.NET MAUI DataForm can be used to create various data forms. In this blog, I will explain how to develop and validate a login data form using the.NETMAUI Data form. The data form auto-generates data editors based on primitive data types such as string, enumeration, DateTime, and TimeSpan in the DataObject property.