web-dev-qa-db-ja.com

ASP.NET MVCでのプロファイルプロバイダーの実装

私の人生では、作業中のMVCプロジェクトでSqlProfileProviderを機能させることはできません。

私が最初に気づいたのは、Visual StudioがProfileCommonプロキシクラスを自動的に生成しないことです。 ProfileBaseクラスを拡張するだけの問題なので、大したことではありません。 ProfileCommonクラスを作成した後、ユーザープロファイルを作成するための次のActionメソッドを作成しました。

[AcceptVerbs("POST")]
public ActionResult CreateProfile(string company, string phone, string fax, string city, string state, string Zip)
{
    MembershipUser user = Membership.GetUser();
    ProfileCommon profile = ProfileCommon.Create(user.UserName, user.IsApproved) as ProfileCommon;

    profile.Company = company;
    profile.Phone = phone;
    profile.Fax = fax;
    profile.City = city;
    profile.State = state;
    profile.Zip = Zip;
    profile.Save();

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

私が抱えている問題は、ProfileCommon.Create()の呼び出しがProfileCommon型にキャストできないことです。そのため、プロファイルオブジェクトを取り戻すことができません。

以下は私のweb.configのスニペットです。

<profile defaultProvider="AspNetSqlProfileProvider" automaticSaveEnabled="false" enabled="true">
    <providers>
        <clear/>
        <add name="AspNetSqlProfileProvider" type="System.Web.Profile.SqlProfileProvider, System.Web, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" connectionStringName="ApplicationServices" applicationName="/" />
    </providers>
    <properties>
        <add name="FirstName" type="string" />
        <add name="LastName" type="string" />
        <add name="Company" type="string" />
        <add name="Phone" type="string" />
        <add name="Fax" type="string" />
        <add name="City" type="string" />
        <add name="State" type="string" />
        <add name="Zip" type="string" />
        <add name="Email" type="string" >
    </properties>
</profile>

MembershipProviderは正常に機能しているため、接続文字列が適切であることがわかります。

役に立つ場合に備えて、ProfileCommonクラスを次に示します。

public class ProfileCommon : ProfileBase
    {
        public virtual string Company
        {
            get
            {
                return ((string)(this.GetPropertyValue("Company")));
            }
            set
            {
                this.SetPropertyValue("Company", value);
            }
        }

        public virtual string Phone
        {
            get
            {
                return ((string)(this.GetPropertyValue("Phone")));
            }
            set
            {
                this.SetPropertyValue("Phone", value);
            }
        }

        public virtual string Fax
        {
            get
            {
                return ((string)(this.GetPropertyValue("Fax")));
            }
            set
            {
                this.SetPropertyValue("Fax", value);
            }
        }

        public virtual string City
        {
            get
            {
                return ((string)(this.GetPropertyValue("City")));
            }
            set
            {
                this.SetPropertyValue("City", value);
            }
        }

        public virtual string State
        {
            get
            {
                return ((string)(this.GetPropertyValue("State")));
            }
            set
            {
                this.SetPropertyValue("State", value);
            }
        }

        public virtual string Zip
        {
            get
            {
                return ((string)(this.GetPropertyValue("Zip")));
            }
            set
            {
                this.SetPropertyValue("Zip", value);
            }
        }

        public virtual ProfileCommon GetProfile(string username)
        {
            return ((ProfileCommon)(ProfileBase.Create(username)));
        }
    }

私が間違っているかもしれないことについての考えはありますか?プロファイルプロバイダーをASP.NET MVCプロジェクトに正常に統合した人はいますか?

前もって感謝します...

63
senfo

必要なことは次のとおりです。

1)Web.configのセクションで、他の属性設定に加えて「継承」属性を追加します。

<profile inherits="MySite.Models.ProfileCommon" defaultProvider="....

2)<properties>セクション全体をWeb.configから削除します。これは、カスタムProfileCommonクラスで既に定義されており、前の手順でカスタムクラスから継承するように指示されているためです。

3)ProfileCommon.GetProfile()メソッドのコードを

public virtual ProfileCommon GetProfile(string username)        
{            
     return Create(username) as ProfileCommon;      
}

お役に立てれば。

56
Yogesh Prabhu

Web Profile Builder を試してください。これは、web.configからWebProfileクラス(ProfileCommonと同等)を自動的に生成するビルドスクリプトです。

6
Dave Dunkin

質問全体についてはわかりませんが、コードで気づいたことが1つあります。

ProfileCommon profile = (ProfileCommon)ProfileCommon.Create(user.UserName, user.IsApproved) as ProfileCommon;

(ProfileCommon)とas ProfileCommonの両方は必要ありません。どちらもキャストを行いますが、キャストを行うことができない場合、asはnullを返しながら、()は例外をスローします。

6

MVCベータ版のweb.configファイルが間違っています。 SqlProfileProviderは、System.Web.Securityではなく、System.Web.Profileにあります。これを変更すれば、あなたのために働き始めるはずです。

1
Steve Andrews