gpt4 book ai didi

asp.net-mvc - 在 ASP.NET MVC 中实现自定义配置文件提供程序

转载 作者:行者123 更新时间:2023-12-01 16:15:42 25 4
gpt4 key购买 nike

我尝试了很多在 ASP.NET MVC 中实现自定义配置文件提供程序。我读了很多很多教程,但我找不到我的问题出在哪里。它与 Implementing Profile Provider in ASP.NET MVC 非常相似.

但是我想创建自己的配置文件提供程序,因此我编写了以下继承自 ProfileProvider 的类:

public class UserProfileProvider : ProfileProvider
{
#region Variables
public override string ApplicationName { get; set; }
public string ConnectionString { get; set; }
public string UpdateProcedure { get; set; }
public string GetProcedure { get; set; }
#endregion

#region Methods
public UserProfileProvider()
{ }

internal static string GetConnectionString(string specifiedConnectionString)
{
if (String.IsNullOrEmpty(specifiedConnectionString))
return null;

// Check <connectionStrings> config section for this connection string
ConnectionStringSettings connObj = ConfigurationManager.ConnectionStrings[specifiedConnectionString];
if (connObj != null)
return connObj.ConnectionString;

return null;
}
#endregion

#region ProfileProvider Methods Implementation
public override void Initialize(string name, System.Collections.Specialized.NameValueCollection config)
{
if (config == null)
throw new ArgumentNullException("config");

if (String.IsNullOrEmpty(name))
name = "UserProfileProvider";

if (String.IsNullOrEmpty(config["description"]))
{
config.Remove("description");
config.Add("description", "My user custom profile provider");
}

base.Initialize(name, config);

if (String.IsNullOrEmpty(config["connectionStringName"]))
throw new ProviderException("connectionStringName not specified");

ConnectionString = GetConnectionString(config["connectionStringName"]);

if (String.IsNullOrEmpty(ConnectionString))
throw new ProviderException("connectionStringName not specified");


if ((config["applicationName"] == null) || String.IsNullOrEmpty(config["applicationName"]))
ApplicationName = System.Web.Hosting.HostingEnvironment.ApplicationVirtualPath;
else
ApplicationName = config["applicationName"];

if (ApplicationName.Length > 256)
throw new ProviderException("Application name too long");

UpdateProcedure = config["updateUserProcedure"];
if (String.IsNullOrEmpty(UpdateProcedure))
throw new ProviderException("updateUserProcedure not specified");

GetProcedure = config["getUserProcedure"];
if (String.IsNullOrEmpty(GetProcedure))
throw new ProviderException("getUserProcedure not specified");
}

public override System.Configuration.SettingsPropertyValueCollection GetPropertyValues(System.Configuration.SettingsContext context, System.Configuration.SettingsPropertyCollection collection)
{
SettingsPropertyValueCollection values = new SettingsPropertyValueCollection();

SqlConnection myConnection = new SqlConnection(ConnectionString);
SqlCommand myCommand = new SqlCommand(GetProcedure, myConnection);
myCommand.CommandType = CommandType.StoredProcedure;

myCommand.Parameters.AddWithValue("@FirstName", (string)context["FirstName"]);

try
{
myConnection.Open();
SqlDataReader reader = myCommand.ExecuteReader(CommandBehavior.SingleRow);

reader.Read();

foreach (SettingsProperty property in collection)
{
SettingsPropertyValue value = new SettingsPropertyValue(property);

if (reader.HasRows)
{
value.PropertyValue = reader[property.Name];
values.Add(value);
}
}

}
finally
{
myConnection.Close();
myCommand.Dispose();
}

return values;
}

public override void SetPropertyValues(System.Configuration.SettingsContext context, System.Configuration.SettingsPropertyValueCollection collection)
{
SqlConnection myConnection = new SqlConnection(ConnectionString);
SqlCommand myCommand = new SqlCommand(UpdateProcedure, myConnection);
myCommand.CommandType = CommandType.StoredProcedure;

foreach (SettingsPropertyValue value in collection)
{
myCommand.Parameters.AddWithValue(value.Name, value.PropertyValue);
}

myCommand.Parameters.AddWithValue("@FirstName", (string)context["FirstName"]);

try
{
myConnection.Open();
myCommand.ExecuteNonQuery();
}

finally
{
myConnection.Close();
myCommand.Dispose();
}
}

这是我在 Controller 中的 CreateProfile 操作:

[AcceptVerbs(HttpVerbs.Post)]
public ActionResult CreateProfile(string Username, string Password, string FirstName, string LastName)
{
MembershipCreateStatus IsCreated = MembershipCreateStatus.ProviderError;
MembershipUser user = null;

user = Membership.CreateUser(Username, Password, "test@test.com", "Q", "A", true, out IsCreated);

if (IsCreated == MembershipCreateStatus.Success && user != null)
{
ProfileCommon profile = (ProfileCommon)ProfileBase.Create(user.UserName);

profile.FirstName = FirstName;
profile.LastName = LastName;
profile.Save();
}

return RedirectToAction("Index", "Home");
}

我的过程 usp_GetUserProcedure 没什么特别的:

ALTER PROCEDURE [dbo].[usp_GetUserProcedure] 
-- Add the parameters for the stored procedure here
@FirstName varchar(50)
AS
BEGIN
-- SET NOCOUNT ON added to prevent extra result sets from
-- interfering with SELECT statements.
SET NOCOUNT ON;

-- Insert statements for procedure here
SELECT * FROM dbo.Users WHERE FirstName = @FirstName
END

还有我的 Web.Config 文件:

<profile enabled="true"
automaticSaveEnabled="false"
defaultProvider="UserProfileProvider"
inherits="Test.Models.ProfileCommon">
<providers>
<clear/>
<add name="UserProfileProvider"
type="Test.Controllers.UserProfileProvider"
connectionStringName="ApplicationServices"
applicationName="UserProfileProvider"
getUserProcedure="usp_GetUserProcedure"
updateUserProcedure="usp_UpdateUserProcedure"/>
</providers>
</profile>

但我总是遇到这个异常:

Procedure or function 'usp_GetUserProcedure' expects parameter '@FirstName', which was not supplied.

对我可能做错了什么有什么想法吗?

最佳答案

最可能的原因是

myCommand.Parameters.AddWithValue("@FirstName", (string)context["FirstName"]);

(string)context["FirstName"] 是空值。即使您将参数传递给存储过程,如果所需参数的值为空,您也会看到此错误。 SQL Server(实际上)不区分未传递的参数和传递空值的参数。

您看到 SQL 错误。这与 MVC 无关,并且 MVC 并不是真正导致您的问题。确定 null 是否是有效值 context["FirstName"],如果是,则更改您的函数以接受 null 值。如果不是,请找出为什么 context["FirstName"] 为 null。

另外,我认为这一行不会正确添加参数名称(带有“@”前缀)。

myCommand.Parameters.AddWithValue(value.Name, value.PropertyValue);

此外,由于这是 MVC,请确保您在表单上有一个名为 FirstName 的控件,该控件发布到:

public ActionResult CreateProfile(string Username, string Password, string FirstName, string LastName)

它根据名称而不是 ID 读取字段

关于asp.net-mvc - 在 ASP.NET MVC 中实现自定义配置文件提供程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/834166/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com