123456789101112131415 |
- using Ant.ORM;
- using System.Reflection;
- namespace Ant.Descriptors
- {
- public class NavigationPropertyDescriptor : NavigationMemberDescriptor
- {
- PropertyInfo propertyInfo;
- public NavigationPropertyDescriptor(PropertyInfo propertyInfo, FiledMetaData declaringEntityDescriptor, string thisKey, string associatingKey)
- : base(propertyInfo, propertyInfo.PropertyType, declaringEntityDescriptor, thisKey, associatingKey)
- {
- this.propertyInfo = propertyInfo;
- }
- }
- }
|