using System; using System.Collections.Generic; namespace SqlServerEFSample { public class User { public int UserId { get; set; } public String FirstName { get; set; } public String LastName { get; set; } public virtual IList Tasks { get; set; } public String GetFullName() { return this.FirstName + " " + this.LastName; } public override string ToString() { return "User [id=" + this.UserId + ", name=" + this.GetFullName() + "]"; } } }