Mercurial > pub > bltoolkit
annotate UnitTests/CS/JointureTests/MusicDB.cs @ 4:f757da6161a1
!bug 100 + 2h fixed gregression
author | cin |
---|---|
date | Sun, 24 Aug 2014 17:57:42 +0400 |
parents | f990fcb411a9 |
children |
rev | line source |
---|---|
0 | 1 using BLToolkit.Data; |
2 using BLToolkit.Data.Linq; | |
3 | |
4 namespace UnitTests.CS.JointureTests | |
5 { | |
6 public class MusicDB : DbManager | |
7 { | |
8 public Table<Title> Title { get { return GetTable<Title>(); } } | |
9 public Table<Artist2> Artist2 { get { return GetTable<Artist2>(); } } | |
10 } | |
11 } |