public void Id_IsPersistent() { SpecifyOn.Entity <Question>().ShouldHaveProperty("Id").ShouldBePersistent().MappedAsIdentifier(); }
public void TextQuestion_IsPersistent() { SpecifyOn.Entity <Question>().ShouldHaveProperty("TextQuestion").ShouldBePersistent().MappedToColumn( "TEXT_QUESTION"); }
public void Question_IsPersistent() { SpecifyOn.Entity <Question>().ShouldBePersistent().MappedToTable("Questions"); }