public void ShouldGetMappedTableAndEntityName() { using (SampleContext emptyContext1 = new XmlFileContext<SampleContext>(this.GetType()).Empty()) { var TableName = emptyContext1.MappedTable("Author"); TableName.ShouldBe("AUTHOR"); var EntityName = emptyContext1.MappedEntity("AUTHOR"); EntityName.ShouldBe("Author"); } }
public void ShouldGetMappedTableAndEntityName() { using (SampleContext emptyContext1 = new XmlFileContext <SampleContext>(this.GetType()).Empty()) { var TableName = emptyContext1.MappedTable("Author"); TableName.ShouldBe("AUTHOR"); var EntityName = emptyContext1.MappedEntity("AUTHOR"); EntityName.ShouldBe("Author"); } }