From 72973cee4082fbe995bc02e4b6e15d4644db53b4 Mon Sep 17 00:00:00 2001 From: YangTao <38245571+YangTao9898@users.noreply.github.com> Date: Tue, 28 Sep 2021 22:37:26 +0800 Subject: [PATCH] Update README.md Some people may need to ignore a field. It's a little hard to find this method, such as me, so I marked it here --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index e5859066..41535022 100644 --- a/README.md +++ b/README.md @@ -62,6 +62,8 @@ public class Valuation public int StockId { get; set; } public DateTime Time { get; set; } public decimal Price { get; set; } + [Ignore] + public string IgnoreField { get; set; } } ```