Ejemplo n.º 1
0
 public void Should_specify_OtherKey_with_lambda()
 {
     mapping.OtherKey(x => x.Id);
     MappingXml.ShouldHaveAttribute("OtherKey", "Id");
 }
 public void Should_have_DbType_attribute()
 {
     mapping.DbType("nvarchar(250)");
     MappingXml.ShouldHaveAttribute("DbType", "nvarchar(250)");
 }
Ejemplo n.º 3
0
 public void Should_Have_version_attribute()
 {
     mapping.Version();
     MappingXml.ShouldHaveAttribute("IsVersion", "true");
 }
Ejemplo n.º 4
0
 public void Should_specify_ThisKey_with_lambda()
 {
     mapping.ThisKey(x => x.Surname);
     MappingXml.ShouldHaveAttribute("ThisKey", "Surname");
 }
Ejemplo n.º 5
0
 public void Should_generate_multiple_otherkeys()
 {
     mapping.OtherKey("Foo").OtherKey("Bar");
     MappingXml.ShouldHaveAttribute("OtherKey", "Foo,Bar");
 }
Ejemplo n.º 6
0
 public void Should_generate_storage()
 {
     mapping.Storage("_orders");
     MappingXml.ShouldHaveAttribute("Storage", "_orders");
 }
Ejemplo n.º 7
0
 public void Should_generate_thiskey()
 {
     mapping.ThisKey("Foo");
     MappingXml.ShouldHaveAttribute("ThisKey", "Foo");
 }
Ejemplo n.º 8
0
 public void NotNull_Should_set_canbenull_to_false()
 {
     mapping.NotNull();
     MappingXml.ShouldHaveAttribute("CanBeNull", "false");
 }
Ejemplo n.º 9
0
 public void Should_have_dbtype_attribute()
 {
     mapping.DbType("foo");
     MappingXml.ShouldHaveAttribute("DbType", "foo");
 }
Ejemplo n.º 10
0
 public void Should_have_storage_attribute()
 {
     mapping.Storage("_surname");
     MappingXml.ShouldHaveAttribute("Storage", "_surname");
 }
Ejemplo n.º 11
0
 public void Should_have_autosync_attribute()
 {
     mapping.AutoSync(AutoSync.OnInsert);
     MappingXml.ShouldHaveAttribute("AutoSync", "OnInsert");
 }
Ejemplo n.º 12
0
 public void Should_generate_member_attribute()
 {
     mapping.Named("foo");
     MappingXml.ShouldHaveAttribute("Member", "Surname");
 }
Ejemplo n.º 13
0
 public void Should_have_IsDbGenerated_attribute()
 {
     mapping.DbGenerated();
     MappingXml.ShouldHaveAttribute("IsDbGenerated", "true");
 }
Ejemplo n.º 14
0
 public void Should_have_updatecheck_attribute()
 {
     mapping.UpdateCheck(UpdateCheck.Never);
     MappingXml.ShouldHaveAttribute("UpdateCheck", "Never");
 }
Ejemplo n.º 15
0
 public void Should_generate_member_attribute()
 {
     MappingXml.ShouldHaveAttribute("Member", "Orders");
 }
Ejemplo n.º 16
0
 public void Should_have_expression_attribute()
 {
     mapping.Expression("Foo");
     MappingXml.ShouldHaveAttribute("Expression", "Foo");
 }
Ejemplo n.º 17
0
 public void Should_generate_foreign_key_name()
 {
     mapping.ForeignKeyName("Foo");
     MappingXml.ShouldHaveAttribute("Name", "Foo");
 }
Ejemplo n.º 18
0
 public void Should_have_name_attribute_in_xml()
 {
     MappingXml.ShouldHaveAttribute("Name", "GetCustomersByName");
 }
Ejemplo n.º 19
0
 public void Should_generate_DeleteRule()
 {
     mapping.DeleteRule("Bar");
     MappingXml.ShouldHaveAttribute("DeleteRule", "Bar");
 }
Ejemplo n.º 20
0
 public void Should_have_name_attribute_in_xml_with_custom_name()
 {
     mapping.Named("Foo");
     MappingXml.ShouldHaveAttribute("Name", "Foo");
 }
Ejemplo n.º 21
0
 public void Should_generate_multiple_ThisKeys()
 {
     mapping.ThisKey("Foo").ThisKey("Bar");
     MappingXml.ShouldHaveAttribute("ThisKey", "Foo,Bar");
 }
Ejemplo n.º 22
0
 public void Should_have_method_attribute_in_xml()
 {
     MappingXml.ShouldHaveAttribute("Method", "GetCustomersByName");
 }
Ejemplo n.º 23
0
 public void Should_generate_otherkey()
 {
     mapping.OtherKey("Foo");
     MappingXml.ShouldHaveAttribute("OtherKey", "Foo");
 }
Ejemplo n.º 24
0
 public void Composable_should_set_IsComposable_attribute()
 {
     mapping.Composable();
     MappingXml.ShouldHaveAttribute("IsComposable", "true");
 }
 public void Should_have_parameter_attribute()
 {
     MappingXml.ShouldHaveAttribute("Parameter", "country");
 }
 public void Should_automatically_set_IsForeignKey()
 {
     MappingXml.ShouldHaveAttribute("IsForeignKey", "true");
 }
 public void Should_have_name_attribute()
 {
     mapping.Named("foo");
     MappingXml.ShouldHaveAttribute("Name", "foo");
 }
Ejemplo n.º 28
0
 public void Should_have_IsPrimaryKey_attribute()
 {
     mapping.PrimaryKey();
     MappingXml.ShouldHaveAttribute("IsPrimaryKey", "true");
 }