Esempio n. 1
0
 public void TestColumnProperties()
 {
     Relation.ColumnProperties(typeof(Employee))
     .Select(propertyInfo => propertyInfo.Name)
     .ToArray()
     .ShouldEqual(new[] { "Name", "Age", "DepartmentId" });
 }