1

在我的 Lightswitch 应用程序中,我必须为用户存储附加信息,例如地址和电话号码。这可能吗?如果可以,该怎么做?

4

1 回答 1

1

您已阅读通过 SecurityData.UserRegistrations Table和 Richard Waddell 的帖子在当前用户上创建关系。

本文介绍了如何在 lightswitch 中扩展用户信息。

基本上你应该创建一个具有username属性的模型。此属性绑定到灯开关表单用户。来自迈克尔的帖子:

    partial void MyProfiles_Inserting(MyProfile entity)

    {

        var reg = (from regs in 
                      this.DataWorkspace.SecurityData.UserRegistrations
                   where regs.UserName == entity.UserName
                   select regs).FirstOrDefault();

        if (reg == null)

        {

            var newUser = this.DataWorkspace.SecurityData
                              .UserRegistrations.AddNew();
            newUser.UserName = entity.UserName;
            newUser.FullName = entity.Name;
            newUser.Password = "changeme/123";
            this.DataWorkspace.SecurityData.SaveChanges();

        }

    }

获取当前用户配置文件:

        MyProfile profile = (from persons in          
                             Application.Current.CreateDataWorkspace()
                                    .ApplicationData.MyProfiles
                              where persons.UserName == 
                                    Application.Current.User.Name
                              select persons).FirstOrDefault();
于 2013-01-27T14:20:07.993 回答