摘要:
public static class ExpressionTree { public static bool PropertiesNotNull(T obj) { if (obj == null) { return false; } var type = obj.GetType(); ... 阅读全文
摘要:
select * from syscolumns where ID in (SELECT id FROM sysobjects as a WHERE OBJECTPROPERTY(id, N'IsProcedure') = 1 and id = object_id(N'[dbo].[proc_name]')) 阅读全文