C#以编程方式创建ASP.NET成员模式

时间:2011-06-25 16:56:33

标签: c# asp.net-membership

我想知道什么是动态安装会员模式的最佳方式。

现在我正在考虑的解决方案是以某种方式运行带有参数的aspnet_regsql.exe以在我的数据库连接上执行。

我怎样才能做到这一点?还有更好的方法吗?

2 个答案:

答案 0 :(得分:8)

好的,我找到了一个更好的方法来实现这一点,我仍然使用MembershipExists()函数,但我使用此语句安装它,直到几分钟前我才知道。

SqlServices.Install(database, SqlFeatures.All, connectionString);

答案 1 :(得分:2)

是这样的:

    public static void Initialize()
    {
        var connection = new SqlConnection(ConfigurationManager.ConnectionStrings["membership"].ConnectionString);

        if (!MembershipExists(connection))
        {
            // create schema
            string regsql = Path.Combine(System.Runtime.InteropServices.RuntimeEnvironment.GetRuntimeDirectory(), "aspnet_regsql.exe");
            string args = string.Format(@"-E -S {0} -A all -d {1}", connection.DataSource, connection.Database);

            var proc = Process.Start(regsql, args);
            if (proc != null)
                proc.WaitForExit();
        }
    }

    public static bool MembershipExists(SqlConnection connection)
    {
        try
        {
            connection.Open();
            var query = new SqlCommand("select count(*) from sysobjects where name = 'aspnet_CheckSchemaVersion' and type = 'P'", connection);
            return query.ExecuteScalar() as int? == 1;
        }
        finally
        {
            connection.Close();
        }
    }

不确定它在生产环境中的表现。