mirror of
https://github.com/radzenhq/radzen-blazor.git
synced 2026-07-08 18:16:08 +00:00
14 lines
328 B
C#
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; }
|
|
}
|
|
}
|