GetIdentityProperty() public méthode

public GetIdentityProperty ( Type type ) : PropertyInfo
type System.Type
Résultat System.Reflection.PropertyInfo
Exemple #1
0
        /// <summary>
        /// Selects the projection fields directly from the index
        /// </summary>
        /// <typeparam name="TProjection">The type of the projection.</typeparam>
        public IDocumentQuery <TProjection> SelectFields <TProjection>()
        {
            var propertyInfos    = typeof(TProjection).GetProperties(BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance);
            var projections      = propertyInfos.Select(x => x.Name).ToArray();
            var identityProperty = DocumentConvention.GetIdentityProperty(typeof(TProjection));
            var fields           = propertyInfos.Select(p => (p == identityProperty) ? Constants.DocumentIdFieldName : p.Name).ToArray();

            return(SelectFields <TProjection>(fields, projections));
        }
Exemple #2
0
 private MemberInfo GetIdentityProperty(Type entityType)
 {
     return(conventions.GetIdentityProperty(entityType));
 }