我的要求是创建一个可以使用标准ASP.NET Profile提供程序的框架。该应用程序包含两个库,一个用于Profile访问(使用ProfileBase类保存和检索Profile) - 一个框架类库,另一个用于定义Profile - Developer客户端类库的属性,该库使用上述框架类库。
这里的想法是开发人员不需要了解底层配置文件实现(在框架类库中),他们所要做的就是在类中提供属性,以便可以设置和获取配置文件正如所料。
我的实施如下。 (请注意,我已成功配置身份验证,连接字符串和角色提供程序)
Web.config->
<profile inherits="MyCompany.FrameworkLib.ProfileSettingsService, MyCompany.FrameworkLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=12ac5ebb7ed144" >
<providers>
<clear/>
<add name="AspNetSqlProfileProvider" type="System.Web.Profile.SqlProfileProvider" connectionStringName="ApplicationServices" applicationName="/" />
</providers>
</profile>
*Our design is not to specify profile properties in the web.config.
MyCompany.FrameworkLib.ProfileSettingsService的实现 - &gt;
public class ProfileSettingsService : ProfileBase, IProfileSettingsService
{
"**Note that if I un-comment the below code Profile works as expected. I do not want this property to be here, but somehow discover it dynamically based on the values being passed to this class. How can I do this?.**"
//[SettingsAllowAnonymous(false)]
//public string HideTransactionButton
//{
// get { return base["HideTransactionButton"] as string; }
// set { base["HideTransactionButton"] = value; }
//}
#region IProfileSettingsService Members
public T Get<T>(string key, T defaultValue)
{
if (string.IsNullOrEmpty(key))
{
throw new ArgumentNullException("key");
}
object profileValue = null;
try
{
profileValue = GetUserProfile().GetPropertyValue(key);
}
catch { }
if (profileValue is T)
{
return (T)profileValue;
}
return defaultValue;
}
public void Set<T>(string key, T value)
{
GetUserProfile().SetPropertyValue(key, value);
GetUserProfile().Save();
}
public ProfileSettingsService GetUserProfile(string username)
{
return Create(username) as ProfileSettingsService;
}
public ProfileSettingsService GetUserProfile()
{
var userName = HttpContext.User.Identity.Name;
if (userName != null)
{
return Create(userName) as ProfileSettingsService;
}
return null;
}
#endregion
}
实施MyCompany.ConsumeLib.ProfileContext - &gt;
public class ProfileContext : IProfileContext
{
#region IProfileContext Members
[Dependency] //Note that I use Unity for DI
public IProfileSettingsService ProfileSettingsService { get; set; }
public string HideTransactionButton
{
get { return this.ProfileSettingsService.Get<string>("HideTransactionButton", "false"); }
set { this.ProfileSettingsService.Set("HideTransactionButton", value); }
}
#endregion
}
所以问题是如何在不必取消注释
的情况下使配置文件正常工作//[SettingsAllowAnonymous(false)]
//public string HideTransactionButton
//{
// get { return base["HideTransactionButton"] as string; }
// set { base["HideTransactionButton"] = value; }
//}
MyCompany.FrameworkLib.ProfileSettingsService 中的
我需要能够在ProfileSettingsService中动态发现属性,而无需显式指定属性。通过这种方式,开发人员无需担心在两个库中维护属性 - (一个在frameworkLib中,另一个在ConsumeLib中。)
任何想法都非常感激。
答案 0 :(得分:1)
答案 1 :(得分:0)
我决定采取另一种方法来解决这个问题。不幸的是,MS设计ProfileBase类的方式没有简单的方法。
有两种可能的解决方案。我用'b'以下 一个。将配置文件属性添加到Web.config并使用T4模板动态生成它们。 湾看看http://archive.msdn.microsoft.com/WebProfileBuilder。这也将在编译时动态生成配置文件属性。