DALFactory.cmt 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <#@ template language="c#" HostSpecific="True" #>
  2. <#@ output extension= ".cs" #>
  3. <#
  4. TableHost host = (TableHost)(Host);
  5. string ModelSpace = host.NameSpace+".Model."+ host.GetModelClass(host.TableName);
  6. ColumnInfo identityKey=host.IdentityKey;
  7. string returnValue = "void";
  8. if (identityKey!=null)
  9. {
  10. returnValue = CodeCommon.DbTypeToCS(identityKey.TypeName);
  11. }
  12. #>
  13. using System;
  14. using System.Reflection;
  15. using System.Configuration;
  16. using Maticsoft.IDAL;
  17. namespace <#= host.NameSpace #>.DALFactory
  18. {
  19. /// <summary>
  20. /// 如果在这里创建对象报错,请检查web.config里是否修改了<add key="DAL" value="Maticsoft.SQLServerDAL" />。
  21. /// </summary>
  22. public sealed partial class DataAccess
  23. {
  24. private static readonly string AssemblyPath = ConfigurationManager.AppSettings["DAL"];
  25. public DataAccess()
  26. { }
  27. #region CreateObject
  28. //不使用缓存
  29. private static object CreateObjectNoCache(string AssemblyPath,string classNamespace)
  30. {
  31. try
  32. {
  33. object objType = Assembly.Load(AssemblyPath).CreateInstance(classNamespace);
  34. return objType;
  35. }
  36. catch//(System.Exception ex)
  37. {
  38. //string str=ex.Message;// 记录错误日志
  39. return null;
  40. }
  41. }
  42. //使用缓存
  43. private static object CreateObject(string AssemblyPath,string classNamespace)
  44. {
  45. object objType = DataCache.GetCache(classNamespace);
  46. if (objType == null)
  47. {
  48. try
  49. {
  50. objType = Assembly.Load(AssemblyPath).CreateInstance(classNamespace);
  51. DataCache.SetCache(classNamespace, objType);// 写入缓存
  52. }
  53. catch//(System.Exception ex)
  54. {
  55. //string str=ex.Message;// 记录错误日志
  56. }
  57. }
  58. return objType;
  59. }
  60. #endregion
  61. #region Create<#= host.GetDALClass(host.TableName) #>
  62. public static <#= host.NameSpace #>.IDAL.I<#= host.GetDALClass(host.TableName) #> Create<#= host.GetDALClass(host.TableName) #>()
  63. {
  64. //方式1
  65. //return (<#= host.NameSpace #>.IDAL.I<#= host.GetDALClass(host.TableName) #>)Assembly.Load(AssemblyPath).CreateInstance(AssemblyPath+".<#= host.GetDALClass(host.TableName) #>");
  66. //方式2
  67. string classNamespace = AssemblyPath+".<#= host.GetDALClass(host.TableName) #>";
  68. object objType=CreateObject(AssemblyPath,classNamespace);
  69. return (<#= host.NameSpace #>.IDAL.I<#= host.GetDALClass(host.TableName) #>)objType;
  70. }
  71. #endregion
  72. }
  73. }