CoreDataTable.cs 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. namespace InABox.Core
  2. {
  3. //[Serializable]
  4. //public class CoreTable<T> : DataTable, ICoreTable
  5. //{
  6. // public CoreTable()
  7. // : base()
  8. // {
  9. // }
  10. // public CoreTable(string tableName)
  11. // : base(tableName)
  12. // {
  13. // }
  14. // public CoreTable(string tableName, string tableNamespace)
  15. // : base(tableName, tableNamespace)
  16. // {
  17. // }
  18. // public CoreTable(SerializationInfo info, StreamingContext context)
  19. // : base(info, context)
  20. // {
  21. // }
  22. // protected override Type GetRowType()
  23. // {
  24. // return typeof(CoreRow<T>);
  25. // }
  26. // protected override DataRow NewRowFromBuilder(DataRowBuilder builder)
  27. // {
  28. // return new CoreRow<T>(builder);
  29. // }
  30. //}
  31. //[Serializable]
  32. //public class CoreRow<T> : DataRow, ICoreRow
  33. //{
  34. // public CoreRow()
  35. // : base(null)
  36. // {
  37. // }
  38. // public CoreRow(DataRowBuilder builder)
  39. // : base(builder)
  40. // {
  41. // }
  42. // public int Index => throw new NotImplementedException();
  43. // public List<object> Values => throw new NotImplementedException();
  44. // public new CoreTable<T> Table { get; set; }
  45. // public TType Get<TType>(string columnname, bool usedefault = true)
  46. // {
  47. // throw new NotImplementedException();
  48. // }
  49. // public TType Get<TSource, TType>(Expression<Func<TSource, TType>> expression)
  50. // {
  51. // throw new NotImplementedException();
  52. // }
  53. // public void Set<TType>(string columnname, TType value)
  54. // {
  55. // throw new NotImplementedException();
  56. // }
  57. // public void Set<TSource, TType>(Expression<Func<TSource, TType>> expression, TType value)
  58. // {
  59. // throw new NotImplementedException();
  60. // }
  61. // public Dictionary<string, object> ToDictionary(string[] exclude)
  62. // {
  63. // throw new NotImplementedException();
  64. // }
  65. // public object ToObject(Type t)
  66. // {
  67. // throw new NotImplementedException();
  68. // }
  69. // public T1 ToObject<T1>() where T1 : BaseObject, new()
  70. // {
  71. // throw new NotImplementedException();
  72. // }
  73. //}
  74. }