Files
radzen-blazor/RadzenBlazorDemos/Models/Northwind/Employee.Custom.cs
Vladimir Enchev f3badc0ad4 DataGrid OData demo fixed
Fix #1786
2024-11-13 15:55:46 +02:00

14 lines
328 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace RadzenBlazorDemos.Models.Northwind
{
public partial class Employee
{
[NotMapped]
public ICollection<Order> NorthwindOrders { get; set; }
}
}