我需要列出特定用户的所有个人资料,但我找不到如何执行此操作。
public abstract ProfileInfoCollection FindProfilesByUserName(
ProfileAuthenticationOption authenticationOption,
string usernameToMatch
)
这里返回了大量不需要的东西示例:
"UserName": "Alex",
"IsAnonymous": false,
"IsDirty": false,
"LastActivityDate": "2013-08-16T00:44:30.98+03:00",
"LastUpdatedDate": "2013-08-16T00:25:15.663+03:00",
"Properties": [
{
"Name": "Name.First",
"IsReadOnly": false,
"DefaultValue": "",
"PropertyType": "System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089",
"SerializeAs": 0,
"Provider": {
"ApplicationName": "/",
"Name": "AspNetSqlProfileProvider",
"Description": "SQL profile provider."
},
"Attributes": {
"AllowAnonymous": false
},
"ThrowOnErrorDeserializing": false,
"ThrowOnErrorSerializing": true
}
]
有没有办法只列出web.config配置文件中使用/列出的内容?
更新 我也尝试编写一个提供程序扩展,但我无法找到ProfileBase保存配置文件/配置文件组的位置。
谢谢!
答案 0 :(得分:1)
经过长时间的搜索,我发现只有一种方法可以解决问题。
我编写了简单的函数,例如:
public Dictionary<string, ProfileGroupBase> GetGroupProfiles(MembershipUser user, string[] groups)
{
return groups.ToDictionary(group => group, GetUserProfile(user).GetProfileGroup);
}
public Dictionary<string, object> GetProfile(MembershipUser user, string[] properties)
{
return properties.ToDictionary(prop => prop, prop => UserProfile(user).GetPropertyValue(prop));
}
用法:
x.GetGroupProfiles(Membership.GetUser("Rafael"), new[] { "Name" })