摘要:
MVC控制器和视图执行顺序 Aspx文件提交ajax,执行/OAuth/Index控制器, url:"/OAuthTest1/Index", 先执行aspx页面,点击按钮事件提交ajax,再执行控制器Index,然后返回return view(); Index.cshtml点击运行,一样先进入/OA 阅读全文
摘要:
C# Linq判断集合中的某个字段是否有重复 //orderList中的SellerID是否有重复 bool sellerIDIsRepeat = orderList.GroupBy(i => i.SellerID).Where(g => g.Count() > 1).Count() >= 1; 搜 阅读全文
摘要:
C# OrderBy多个字段排序 先按Sort字段正序排序,再按CreateDate降序排序, 如果三个字段进行排序,我才是再后面再加ThenByDescending var result = _IDbConnection.Query<QueryResponseGoods>(seSql.ToStri 阅读全文
摘要:
C# Linq判断这个字段是否包含(信用卡)三个字 //判断字段是否包含“信用卡”三个字 //System.Linq.Enumerable.WhereEnumerableIterator<char> IEnumerable<char> linqChar = from UserBankCard in 阅读全文
摘要:
C# Linq分页 //搜索结果listDicResult List<Dictionary<string, string>> listDicResult = new List<Dictionary<string, string>>(); if (RegExp.IsNull(bankName)) { 阅读全文
摘要:
Linq 分组GoupBy并且求和Sum List<Order> orderList = new List<Order>(); for (int i = 0; i < 3; i++) { Order orderEntity = new Order(); orderEntity.OrderID = 1 阅读全文
摘要:
腾讯返回json数据转换 #region 远程获取微信小程序二维码的流 /// <summary> /// 远程获取微信小程序二维码的流 /// </summary> /// <param name="urlGet">请求小程序的地址</param> /// <param name="paramJs 阅读全文
摘要:
模拟腾讯返回的json数据 $(document).ready(function () { $("#SubmitButton").click(function () { alert("ajax准备开始"); var wxJson = { "authorization_info": { "author 阅读全文
摘要:
C#后端接收前端json数组 方案一: /// <summary> /// (APP端)查询购物车选中商品的总价 /// </summary> public class CartTotalPriceRequestDto { /// <summary> /// UserID /// </summary 阅读全文
摘要:
object obj = new { Provider = appointmentErpStoreEntity.ProvinceName, City = appointmentErpStoreEntity.CityName, District = appointmentErpStoreEntity. 阅读全文