摘要:
一个例子 帮助程序类和数据源示例 public class StudentClass { #region data public enum GradeLevel { FirstYear = 1, SecondYear, ThirdYear, FourthYear }; public class St 阅读全文
摘要:
检查list包含list的情况 List<string> a = ... List<string> b = ... var inComon = a.Intersect(b).Any(); Use Enumerable.Any Method: List<string> l1 = new List<st 阅读全文
摘要:
例子1 SET @tabGuid = '01cf0fb7-cc7c-c9c4-9dc5-39dbea65dace'; set @companyGuid = '00000000-0000-0000-000000000000'; SET @tabName = 'Book'; INSERT INTO Ta 阅读全文
摘要:
公共数据 InMemoryData.cs public class InMemoryData { public static List<Employee> Employees = new List<Employee> { new Employee { Id = 10001, No= 2000, Fi 阅读全文