如何为ASP.NET配置文件指定动态属性?

e5nqia27  于 2023-05-19  发布在  .NET
关注(0)|答案(1)|浏览(190)

我的要求是创建一个可以使用标准ASP.NETProfile提供程序的框架。应用程序包含两个库,一个用于Profile访问(使用ProfileBase类保存和检索Profile)-框架类库,另一个用于定义Profile -开发者客户端类库的属性,其消耗上述框架类库。
这里的想法是,开发人员不需要知道底层的配置文件实现(在框架类库中),他们所要做的就是在类中提供属性,以便可以按预期设置和获取配置文件。
我的实现在下面。(请注意,我已经成功地配置了身份验证、连接字符串和角色提供程序)
网站Map

<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 ->的实现

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 ->实现

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
   
}

所以问题是如何让Profile工作而不必取消注解

//[SettingsAllowAnonymous(false)]
//public string HideTransactionButton
//{
//    get { return base["HideTransactionButton"] as string; }
//    set { base["HideTransactionButton"] = value; }
//}

在MyCompany.FrameworkLib.ProfileSettingsService中
我需要能够在ProfileSettingsService中动态地发现属性,而不必显式地指定属性。通过这种方式,开发人员不需要担心在两个库中维护属性(一个在frameworkLib中,另一个在ConsumeLib中)。

lh80um4z

lh80um4z1#

我决定采取另一种方法来解决这个问题。不幸的是,MS设计ProfileBase类的方式并不容易做到这一点。
有两种可能的解决方案。我在B下面用。将配置文件属性添加到Web.config并使用T4模板动态生成它们。B.看看http://archive.msdn.microsoft.com/WebProfileBuilder。这也将在编译时动态生成配置文件属性。

相关问题