mirror of https://github.com/abpframework/abp
https://docs.microsoft.com/en-us/ef/core/modeling/keyless-entity-typespull/2000/head
parent
91ba0f2594
commit
b4940f135c
@ -0,0 +1,19 @@
|
||||
using System;
|
||||
using Volo.Abp.Timing;
|
||||
|
||||
namespace Volo.Abp.TestApp.Domain
|
||||
{
|
||||
public class PersonView
|
||||
{
|
||||
public Guid Id { get; set; }
|
||||
|
||||
public string Name { get; set; }
|
||||
|
||||
public DateTime CreationTime { get; set; }
|
||||
|
||||
public DateTime? Birthday { get; set; }
|
||||
|
||||
[DisableDateTimeNormalization]
|
||||
public DateTime? LastActive { get; set; }
|
||||
}
|
||||
}
|
Loading…
Reference in new issue