BTDB.ODBLayer.TableInfo.GetPersistantName C# (CSharp) Метод

GetPersistantName() статический приватный Метод

static private GetPersistantName ( PropertyInfo p ) : string
p System.Reflection.PropertyInfo
Результат string
        static string GetPersistantName(PropertyInfo p)
        {
            var a = p.GetCustomAttribute<PersistedNameAttribute>();
            return a != null ? a.Name : p.Name;
        }