摘要:
C#获取dynamic(动态)实体的属性值 List<student> item= conn.Query<student>($"select * from 表 where id=123 ").ToList(); foreach (System.Reflection.PropertyInfo p in 阅读全文
摘要:
++i/--i,我们通常称为"前缀试",i++/i--我们通常称为"后缀试"。一个是操作符位于变量之前,一个是操作符位于变量之后。 区别:前缀试会先执行运算,再生成值;而后缀试会先生成值,在执行运算。 public class AutoInc{ public static void main(Str 阅读全文
摘要:
在.net core使用GB2312时抛出以下异常System.ArgumentException:“'gb2312' is not a supported encoding name. For information on defining a custom encoding, see the d 阅读全文
摘要:
使用返回NameValueCollection的System.Web.HttpUtility类的static ParseQueryString方法。 Uri myUri = new Uri("http://www.example.com?param1=good¶m2=bad"); strin 阅读全文
摘要:
This issue was due to your database connection or something related to database, Nothing to do with Quartz. Fix:配置数据连接串支持数据库操作 http://www.javaear.com/ 阅读全文