2018-02-11 20:55:29 -05:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace PoweredSoft.DynamicLinq.Dal.Pocos
|
|
|
|
|
{
|
|
|
|
|
public class Author
|
|
|
|
|
{
|
|
|
|
|
public long Id { get; set; }
|
|
|
|
|
public string FirstName { get; set; }
|
|
|
|
|
public string LastName { get; set; }
|
2018-04-05 18:54:28 -04:00
|
|
|
|
public long? WebsiteId { get; set; }
|
2018-02-11 20:55:29 -05:00
|
|
|
|
|
2018-04-05 18:54:28 -04:00
|
|
|
|
public virtual Website Website { get; set; }
|
2018-02-11 20:55:29 -05:00
|
|
|
|
public ICollection<Post> Posts { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|