File tree 2 files changed +4
-11
lines changed
src/NHibernate.Test/UnionsubclassPolymorphicFormula
2 files changed +4
-11
lines changed Original file line number Diff line number Diff line change 11
11
<class xmlns =" urn:nhibernate-mapping-2.2" name =" Party" table =" `party`" abstract =" true" >
12
12
<id access =" backfield" name =" Id" >
13
13
<column name =" Id" />
14
- <generator class =" sequence" >
15
- <param name =" sequence" >party_id_seq</param >
16
- </generator >
14
+ <generator class =" hilo" />
17
15
</id >
18
16
19
17
<!-- PERSON -->
20
18
21
19
<union-subclass name =" Person" table =" `person`" extends =" Party" >
22
- <property name =" Name" access =" readonly" formula =" first_name || ' ' || last_name" update =" false" insert =" false" >
23
- </property >
20
+ <property name =" Name" access =" readonly" formula =" first_name || ' ' || last_name" update =" false" insert =" false" />
24
21
<property name =" FirstName" >
25
22
<column name =" first_name" />
26
23
</property >
Original file line number Diff line number Diff line change 1
- using System ;
2
- using System . Collections . Generic ;
3
- using System . Linq ;
4
- using System . Text ;
5
- using NUnit . Framework ;
1
+ using NUnit . Framework ;
6
2
using System . Collections ;
7
3
8
4
namespace NHibernate . Test . UnionsubclassPolymorphicFormula
9
5
{
10
- [ TestFixture ]
6
+ [ TestFixture , Explicit ]
11
7
public class UnionSubclassFixture : TestCase
12
8
{
13
9
protected override string MappingsAssembly
You can’t perform that action at this time.
0 commit comments