using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization.Formatters;
using System.ComponentModel.DataAnnotations;
using System.Globalization;
using System.Collections.ObjectModel;
using Newtonsoft.Json.Linq;
using Newtonsoft.Json.Converters;
using Newtonsoft.Json.Serialization;
public abstract class AbstractBase
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public virtual int Id { get; set; }
public virtual DateTime CreatedTimestamp { get; set; }
public virtual DateTime UpdatedTimestamp { get; set; }
public virtual int CreatedBy { get; set; }
public virtual int LastModifiedBy { get; set; }
public virtual bool ActiveFlag { get; set; }
[JsonConverter(typeof(UserConverter))]
public virtual User CreatedByUser { get; set; }
[JsonConverter(typeof(UserConverter))]
public virtual User LastModifiedByUser { get; set; }
public MyAwaiter GetAwaiter()
public string ToActiveInactive()
return this.ActiveFlag ? "Active" : "Inactive";
public class Instance : AbstractBase
public string FirstName { get; set; }
public string LastName { get; set; }
public string GetFullName() => FirstName + " " + LastName;
public class UserConverter : JsonConverter<User>
public override void WriteJson(JsonWriter writer, User value, JsonSerializer serializer)
writer.WriteValue(value.GetFullName());
public override User ReadJson(JsonReader reader, Type objectType, User existingValue, bool hasExistingValue, JsonSerializer serializer)
var fullName = serializer.Deserialize<string>(reader);
throw new NotImplementedException();
public static void Test()
var instance = new Instance
CreatedTimestamp = new DateTime(2021, 1, 1),
UpdatedTimestamp = new DateTime(2021, 3, 4),
CreatedByUser = new User { FirstName = "foo", LastName = "bar" },
LastModifiedByUser = new User { FirstName = "Alice", LastName = "Bob" },
var json = JsonConvert.SerializeObject(instance, Formatting.Indented);
public static void Main()
Console.WriteLine("Environment version: {0} ({1})", System.Runtime.InteropServices.RuntimeInformation.FrameworkDescription , GetNetCoreVersion());
Console.WriteLine("{0} version: {1}", typeof(JsonSerializer).Assembly.GetName().Name, typeof(JsonSerializer).Assembly.FullName);
Console.WriteLine("Failed with unhandled exception: ");
public static string GetNetCoreVersion()
var assembly = typeof(System.Runtime.GCSettings).GetTypeInfo().Assembly;
var assemblyPath = assembly.Location.Split(new[] { '/', '\\' }, StringSplitOptions.RemoveEmptyEntries);
int netCoreAppIndex = Array.IndexOf(assemblyPath, "Microsoft.NETCore.App");
if (netCoreAppIndex > 0 && netCoreAppIndex < assemblyPath.Length - 2)
return assemblyPath[netCoreAppIndex + 1];