1

我正在使用 RIA 服务开发 Silverlight 3 应用程序。我已经让应用程序运行了,但由于某种原因,它只是读取数据,而不是提交更改。

我见过的大多数在线示例都使用 Linq2Entities;我们正在使用 Linq2SQL(我们的数据模型非常好,没有抽象。)

这是服务的片段:

[EnableClientAccess]
public class FooService : LinqToSqlDomainService<FooDataContext>
{
    [RequiresAuthentication()]
    public IQueryable<UserProfile> GetUserProfiles()
    {
        return this.Context.UserProfiles;
    }

    [RequiresAuthentication()]
    public void InsertUserProfile(UserProfile profile)
    {
        this.Context.UserProfiles.InsertOnSubmit(profile);
    }

    [RequiresAuthentication()]
    public void UpdateUserProfile(UserProfile currentProfile)
    {
        this.Context.UserProfiles.Attach(currentProfile, true);
    }

    [RequiresAuthentication()]
    public void DeleteUserProfile(UserProfile profile)
    {
        this.Context.UserProfiles.Attach(profile, profile);
        this.Context.UserProfiles.DeleteOnSubmit(profile);
    }
}

这是我正在使用的 XAML 的片段:

<dataControls:DataForm x:Name="_profileForm" AutoGenerateFields="False" CommandButtonsVisibility="Commit" AutoEdit="True" >
                <dataControls:DataForm.EditTemplate>
                    <DataTemplate>
                        <StackPanel Orientation="Vertical">
                            <dataControls:DataField Label="Username">
                                <TextBox Text="{Binding UserName, Mode=TwoWay}" />
                            </dataControls:DataField>

                            <dataControls:DataField Label="First Name">
                                <TextBox Text="{Binding FirstName, Mode=TwoWay}" />
                            </dataControls:DataField>

                            <dataControls:DataField Label="Last Name">
                                <TextBox Text="{Binding LastName, Mode=TwoWay}" />
                            </dataControls:DataField>

                            <dataControls:DataField Label="Password">
                                <PasswordBox Password="{Binding Password, Mode=TwoWay}"/>
                            </dataControls:DataField>

                            <!-- [Snip] -->

                            </dataControls:DataField>
                        </StackPanel>
                    </DataTemplate>
                </dataControls:DataForm.EditTemplate>
            </dataControls:DataForm>

这是 Silverlight 页面的片段:

public partial class Profile : Page
{
    private FooContext _dataContext;

    public Profile()
    {
        InitializeComponent();
        this._dataContext = new FooContext();
    }

    protected override void OnNavigatedTo(NavigationEventArgs e)
    {
        LoadOperation<UserProfile> loadOperation = this._dataContext.Load<UserProfile>(this._dataContext.GetUserProfilesQuery());
        loadOperation.Completed += new EventHandler(this.LoadOperation_Completed);
    }

    private void LoadOperation_Completed(object sender, EventArgs e)
    {
        // Bind the RIA data to the controls
        LoadOperation<UserProfile> loadOperation = sender as LoadOperation<UserProfile>;
        this._profileForm.EditEnded += new EventHandler<DataFormEditEndedEventArgs>(ProfileForm_EditEnded);
        this._profileForm.ItemsSource = loadOperation.Entities;
        this._profileForm.CurrentIndex = 0;
    }

    private void ProfileForm_EditEnded(object sender, DataFormEditEndedEventArgs e)
    {
        this._dataContext.SubmitChanges();
    }
4

3 回答 3

2

删除 [RequiresAuthentication] 是否会改变行为?

要检查的另一件事可能是配置文件 - 特别是 HttpHandler 声明动词(GET、POST)。

(血腥聚会消息列表 - 我作为新手达到了当天的 3 条消息限制):P

于 2009-07-22T17:24:35.217 回答
1

是否有错误,调用 SubmitChanges 时没有任何反应?

这是我要尝试的:

  1. 在服务器 CRUD 方法上设置断点以确保它们被调用。
  2. 确保您没有为任何值传递 NULL,因为这可能会导致创建新实例而不是更新现有实体
  3. 我会尝试添加一个 OnSubmitCompleted 事件来检查错误。示例代码(来自此 PDF):

    this._dataContext.SubmitChanges(OnSubmitCompleted, null); 
    
    private void OnSubmitCompleted(SubmitOperation so) 
    { 
            if (so.Error != null) 
            { 
                    string message = so.Error.Message; 
                    if (so.EntitiesInError.Any()) 
                    { 
                            message = string.Empty; 
                            Entity entityInError = so.EntitiesInError.First(); 
                            if (entityInError.Conflict != null) 
                            { 
                                    EntityConflict conflict = entityInError.Conflict; 
                                    foreach (EntityConflictMember cm in 
                                                                              conflict.MemberConflicts) 
                                    { 
                                            message += string.Format( 
                                                    "Member '{0}' in conflict: Current: {1}, 
                                                                             Original: {2}, Store: {3}", 
                                                    cm.PropertyName, cm.CurrentValue, 
                                                    cm.OriginalValue, cm.StoreValue); 
                                    } 
                            } 
                            else if (entityInError.ValidationErrors.Any()) 
                            { 
                                    message += "\r\n" + 
                                      entityInError.ValidationErrors.First().Message; 
                            } 
                    } 
                    MessageBox.Show(message, "Submit Failed", MessageBoxButton.OK); 
            } 
    } 
    
于 2009-07-22T16:19:20.917 回答
0

感谢大家的帮助!我终于弄清楚了如何才能让它发挥作用。我还不确定为什么,但这解决了问题。我将更新方法更改为以下内容:

[RequiresAuthentication()]
public void UpdateUserProfile(UserProfile currentProfile)
{
    UserProfile originalProfile = this.ChangeSet.GetOriginal(currentProfile);
    this.Context.UserProfiles.Attach(currentProfile, originalProfile);
}

。现在要了解为什么它无法在获取原始版本之前附加实体。

再次感谢大家,非常感谢!!

于 2009-07-22T18:40:34.720 回答