分类

链接

2016 年 7 月
 123
45678910
11121314151617
18192021222324
25262728293031

近期文章

热门标签

新人福利,免费薅羊毛

c# 反射赋值扩展方法

public static T ToModel<T>(this object source) where T : class, new() { var target = new T(); if (source == null) return null; foreach (var property in target.GetType().GetProperties()) { var sourceProterty = source.GetType().GetProperty(property.Name); if (sourceProterty == null) { continue; }   var propertyValue = sourceProterty.GetValue(source, null);   if (propertyValue != null) {   //property.SetValue(target, i, null); target.GetType().InvokeMember(property.Na...

.NET 暂无评论 阅读(1,411)

sql prompt最新版本下载及安装使用教程

SQL Prompt是一款拥有SQL智能提示功能的SQL Server和VS插件。SQL Prompt能根据数据库的对象名称,语法和用户编写的代码片段自动进行检索,智能的为用户提供唯一合适的代码选择。自动脚本设置为用户提供了简单的代码易读性--这在开发者使用的是不大熟悉的脚本时尤其有用 Sql Prompt智能提示及其格式化用起来非常方便。 免费下载地址:http://www.jb51.net/database/201355.html 1) 下载完成后,解压得到下面三项。一个是注册教程doc,一个是注册机keygen,一个是官方原版安装包V5.3.4.1。 2. 安装SQL Prompt 5.3.4...

Download, SQL Server 暂无评论 阅读(1,434)