随笔分类 - WCF RIA Services
摘要:WCF RIA Services使用详解
阅读全文
摘要:http://www.cnblogs.com/Mainz/archive/2011/09/19/2181243.htmlhttp://msdn.microsoft.com/zh-cn/library/gg602753(v=vs.91).aspxhttp://msdn.microsoft.com/zh-cn/library/gg602753(v=vs.91).aspx
阅读全文
摘要:如果是用户自己修改, 并且知道自己的原来的密码System.Web.Security.Membership.Provider.ChangePassword 如果是系统管理员要给用户修改密码, 一般情况下, 管理员不知道原来的密码MembershipUser mymem = Membership.GetUser(uname);//uname为要修改用户的帐号string p = mymem.ResetPassword();//将用户密码重置为一个自动生成的新密码mymem.ChangePassword(p, "newP@ssword");
阅读全文
摘要:http://www.cnblogs.com/webabcd/archive/2010/10/21/1857199.html
阅读全文
摘要:1. 错误 System.ServiceModel.DomainServices.Client.LoadOperation op = ctx.Load(ctx.GetCustomersQuery()); 正确 var op = ctx.Load(ctx.GetCustomersQuery()); 或 System.ServiceModel.DomainServices.Client.LoadOperation<Customer> op = ctx.Load(ctx.GetCustomersQuery());2 <sdk:DataGrid AutoGenerateColumns
阅读全文
摘要:public const string CustomerListPropertyName = "CustomerList"; private IEnumerable<Customer> _customerList; public IEnumerable<Customer> CustomerList { get { return _customerList; } set { if (_customerList == value) return; var oldValue = _customerList; _customerList = value; /
阅读全文
摘要:[Display(Name = "联系人", Order = 3)]System.ComponentModel.DataAnnotations.Display类似的还有:[Required] [Range(0, 70)]http://www.cnblogs.com/facingwaller/archive/2010/12/23/1914326.html[Required][Display(Name="LastName",ShortName="姓",Order=2)][Editable(false)]publicstringLastNa
阅读全文
摘要:原文在 http://msdn.microsoft.com/zh-cn/library/ee707370(v=vs.91)DomainContext 类支持查询、提交和调用这三种域操作. LoadOperation、SubmitOperation 和 InvokeOperationLoadOperation: EntityQuery<Customer> query = from c in _customerContext.GetCustomersQuery() where c.Phone.StartsWith("583") orderby c.LastName
阅读全文
摘要:稳扎稳打Silverlight(58) - 4.0通信之WCF RIA Services: 通过 Domain Service, 以 MVVM 模式实现数据的添加、删除、修改和查询
阅读全文
摘要:WCF RIA Services教程
阅读全文
摘要:http://www.gisbit.com/tutorial/coding/Silverlight/
阅读全文