2016년 9월 6일 화요일

Simple C# Database access framework



  1. namespace NIHDatabase.RDS
  2. {
  3. internal class NIHDbContext : DbContext
  4. {
  5. internal NIHDbContext(string connStr) : base(connStr) { }
  6. }
  7. public class NIHRdsService
  8. {
  9. public string _connStr { get; set; }
  10. public NIHRdsService() { }
  11.  
  12. #region Multi Result
  13. /// <summary>
  14. /// Multi Result
  15. /// </summary>
  16. /// <param name="procedureName"></param>
  17. /// <param name="parameters"></param>
  18. /// <param name="func"></param>
  19. /// <returns></returns>
  20. public DataSet SqlMultiResult(string procedureName, object parameters, Func<object, string, ProcedureAndParameterModel> func)
  21. {
  22. DataSet ds = new DataSet();
  23. using (SqlConnection conn = new SqlConnection(_connStr))
  24. {
  25. SqlDataAdapter adapter = new SqlDataAdapter();
  26. adapter.SelectCommand = new SqlCommand(procedureName, conn);
  27. adapter.SelectCommand.Parameters.AddRange(func(parameters, procedureName).Parameters);
  28. adapter.SelectCommand.CommandType = CommandType.StoredProcedure;
  29. adapter.Fill(ds);
  30. }
  31.  
  32. return ds;
  33. }
  34. #endregion
  35.  
  36. #region SqlQuery<T>
  37. /// <summary>
  38. /// 특정 조건에 맞는 단일 데이터 조회
  39. /// </summary>
  40. /// <typeparam name="T"></typeparam>
  41. /// <param name="procedureName"></param>
  42. /// <param name="parameters"></param>
  43. /// <param name="func"></param>
  44. /// <returns>T</returns>
  45. public async Task<T> SqlQuerySingle<T>(string procedureName, object parameters, Func<object, string, ProcedureAndParameterModel> func)
  46. {
  47. using (var context = new NIHDbContext(_connStr))
  48. {
  49. ProcedureAndParameterModel _model = func(parameters, procedureName);
  50. return await context.Database.SqlQuery<T>(_model.ProcedureName, _model.Parameters).SingleAsync();
  51. }
  52. }
  53. /// <summary>
  54. /// 파라미터 없이 전체 테이블 스캔
  55. /// </summary>
  56. /// <typeparam name="T">object</typeparam>
  57. /// <param name="procedureName">string</param>
  58. /// <returns>List<T></returns>
  59. public async Task<List<T>> SqlQueryMulti<T>(string procedureName)
  60. {
  61. using (var context = new NIHDbContext(_connStr))
  62. {
  63. return await context.Database.SqlQuery<T>(procedureName).ToListAsync();
  64. }
  65. }
  66. /// <summary>
  67. /// 특정 조건을 맞족하는 데이터 레코드 조회
  68. /// </summary>
  69. /// <typeparam name="T"></typeparam>
  70. /// <param name="procedureName"></param>
  71. /// <param name="parameters"></param>
  72. /// <param name="func"></param>
  73. /// <returns>List<T></returns>
  74. public async Task<List<T>> SqlQueryMulti<T>(string procedureName, object parameters, Func<object, string, ProcedureAndParameterModel> func)
  75. {
  76. using (var context = new NIHDbContext(_connStr))
  77. {
  78. ProcedureAndParameterModel _model = func(parameters, procedureName);
  79. return await context.Database.SqlQuery<T>(_model.ProcedureName, _model.Parameters).ToListAsync();
  80. }
  81. }
  82. #endregion
  83.  
  84. #region ExecuteSqlCommandAsync
  85. /// <summary>
  86. ///
  87. /// </summary>
  88. /// <typeparam name="T"></typeparam>
  89. /// <param name="procedureName"></param>
  90. /// <param name="parameters"></param>
  91. /// <param name="func"></param>
  92. /// <returns></returns>
  93. public async Task<int> ExecuteCommandAsync<T>(string procedureName, object parameters, Func<object, string, ProcedureAndParameterModel> func)
  94. {
  95. using (var context = new NIHDbContext(_connStr))
  96. {
  97. ProcedureAndParameterModel _model = func(parameters, procedureName);
  98. return await context.Database.ExecuteSqlCommandAsync(_model.ProcedureName, _model.Parameters);
  99. }
  100. }
  101. #endregion
  102. }
  103. }

SqlQuery 문 생성, DataTable에서 List로 변환

  1. namespace NIHDatabase.RDS
  2. {
  3. public static class DataHelper
  4. {
  5. /// <summary>
  6. /// 프로시저명과, 파라미터 모델을 받아서
  7. /// ProcedureAndParameter타입으로 반환
  8. /// </summary>
  9. /// <typeparam name="T">Parameter Entity</typeparam>
  10. /// <param name="model"></param>
  11. /// <param name="procName"></param>
  12. /// <returns></returns>
  13. public static ProcedureAndParameterModel GetSqlQueryString<T>(this T model, string ProcedureName)
  14. {
  15. List<SqlParameter> _parameters = new List<SqlParameter>();
  16. StringBuilder _quryString = new StringBuilder(ProcedureName);
  17.  
  18. if(model!=null)
  19. {
  20. bool _first = true;
  21. foreach (var prop in typeof(T).GetProperties())
  22. {
  23. // 파라미터 명
  24. var _name = prop.Name;
  25. // 파라미터 값
  26. var _value = prop.GetValue(model, null);
  27. // SqlParameter 값이 NULL이면 DBNull.Value로 설정
  28. var _param = new SqlParameter($"@{_name}", _value == null ? DBNull.Value : _value);
  29. // 파라미터 배열에 추가
  30. _parameters.Add(_param);
  31.  
  32. // Sql Query문 설정
  33. if (_first)
  34. {
  35. _quryString.Append($" @{_name}");
  36. _first = false;
  37. }
  38. else
  39. {
  40. _quryString.Append($", @{_name}");
  41. }
  42. }
  43. }
  44. return new ProcedureAndParameterModel { ProcedureName = _quryString.ToString(), Parameters = _parameters.ToArray() };
  45. }
  46.  
  47. /// <summary>
  48. /// DataTable => List<T>
  49. /// </summary>
  50. /// <typeparam name="T"></typeparam>
  51. /// <param name="table"></param>
  52. /// <returns>List<T></returns>
  53. public static List<T> ToList<T>(this DataTable table) where T : new()
  54. {
  55. IList<PropertyInfo> properties = typeof(T).GetProperties().ToList();
  56. List<T> result = new List<T>();
  57.  
  58. foreach (var row in table.Rows)
  59. {
  60. var item = CreateItemFromRow<T>((DataRow)row, properties);
  61. result.Add(item);
  62. }
  63.  
  64. return result;
  65. }
  66.  
  67. private static T CreateItemFromRow<T>(DataRow row, IList<PropertyInfo> properties) where T : new()
  68. {
  69. T item = new T();
  70.  
  71. foreach (var prop in properties)
  72. {
  73. prop.SetValue(item, row[prop.Name], null);
  74. }
  75. return item;
  76. }
  77. }
  78. }

2016년 9월 5일 월요일

mssql login failed 18456


ERROR : mssql login failed 18456

위와 같은 에러가 발생하면 SSMS(Sql Server Managerment Studio)에서 Windows Authentication 방식으로 로그인하고 다음 이미지에서와 같이 진행

2016년 4월 30일 토요일

[C#] Callback Func



예제 1

  1. namespace Cshop_v6._0
  2. {
  3. delegate int GetResultDelegate();
  4.  
  5. class Target
  6. {
  7. public void Do(GetResultDelegate getResult)
  8. {
  9. Console.WriteLine(getResult()); // 콜백 메서드 호출
  10. }
  11. }
  12.  
  13. class Source
  14. {
  15. public int GetResult() // 콜백 용도로 전달된 메서드
  16. {
  17. return 10;
  18. }
  19.  
  20. public void Test()
  21. {
  22. Target target = new Target();
  23. target.Do(new GetResultDelegate(this.GetResult));
  24. }
  25. }
  26. }

예제 2

  1. namespace Cshop_v6._0
  2. {
  3. delegate int GetResultDelegate(int x, int y);
  4.  
  5. class Target
  6. {
  7. public void Do(GetResultDelegate getResult, int x, int y)
  8. {
  9. Console.WriteLine(getResult(x, y));
  10. }
  11. }
  12.  
  13. class Source
  14. {
  15. public static int GetResult(int x, int y)
  16. {
  17. return x * y;
  18. }
  19.  
  20. public static void Main()
  21. {
  22. Target target = new Target();
  23. GetResultDelegate gd = GetResult;
  24. target.Do(gd, 5, 10);
  25. }
  26. }
  27. }