Advertisement
LYSoft

Untitled

May 12th, 2014
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.24 KB | None | 0 0
  1.     public abstract class OrtundDBBaseObject<T> : EntityTypeConfiguration<T>
  2.         where T : OrtundBaseObject<T>
  3.     {
  4.  
  5.         public OrtundDBBaseObject()
  6.             : base()
  7.         {
  8.             HasKey(p => p.PKey);
  9.         }
  10.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement