File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
EntityFramework.Reverse.POCO.Generator Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 5858 private static string _dbContextInterfaceName;
5959 public static string DbContextInterfaceName
6060 {
61- get => _dbContextInterfaceName ?? ("I" + DbContextName);
62- set => _dbContextInterfaceName = value;
61+ get { return _dbContextInterfaceName ?? ("I" + DbContextName); }
62+ set { _dbContextInterfaceName = value; }
6363 }
6464
6565 public static string DbContextInterfaceBaseClasses;
6868 private static string _defaultConstructorArgument;
6969 public static string DefaultConstructorArgument
7070 {
71- get => _defaultConstructorArgument ?? string.Format('"' + "Name={0}" + '"', ConnectionStringName);
72- set => _defaultConstructorArgument = value;
71+ get { return _defaultConstructorArgument ?? string.Format('"' + "Name={0}" + '"', ConnectionStringName); }
72+ set { _defaultConstructorArgument = value; }
7373 }
7474
7575 public static string ConfigurationClassName = "Configuration";
You can’t perform that action at this time.
0 commit comments