示例#1
0
 public static PropertyInfo[] GetNavigationMembers(this EntityObjectStore.LocalContext context, Type type) => context.SafeGetMembers(type, et => et.NavigationProperties);
示例#2
0
 public static PropertyInfo[] GetMembers(this EntityObjectStore.LocalContext context, Type type)
 {
     return(context.SafeGetMembers(type, et => et.Properties));
 }
示例#3
0
 public static PropertyInfo[] GetIdMembers(this EntityObjectStore.LocalContext context, Type type) => context.SafeGetMembers(type, et => et.KeyMembers);