You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
using System; using System.Collections.Generic;
namespace SqlSugar { public class MappingTableList : List<MappingTable> { public void Add(string entityName, string dbTableName) { this.RemoveAll(it => it.EntityName.Equals(entityName, StringComparison.CurrentCultureIgnoreCase)); this.Add(new MappingTable { EntityName = entityName, DbTableName = dbTableName }); } public void Add(string entityName, string dbTableName, string dbTableShortName) { this.RemoveAll(it => it.EntityName.Equals(entityName, StringComparison.CurrentCultureIgnoreCase)); this.Add(new MappingTable { EntityName = entityName, DbTableName = dbTableName, DbShortTaleName = dbTableShortName }); } public new void Clear() { this.RemoveAll(it=>true); } }
public class IgnoreColumnList : List<IgnoreColumn> { public void Add(string propertyName, string EntityName) { this.RemoveAll(it =>it.EntityName==EntityName&&it.PropertyName.Equals(propertyName, StringComparison.CurrentCultureIgnoreCase)); this.Add(new IgnoreColumn { PropertyName = propertyName, EntityName = EntityName }); }
public new void Clear() { this.RemoveAll(it => true); } }
public class MappingColumnList : List<MappingColumn> { public void Add(string propertyName, string dbColumnName, string entityName) { this.RemoveAll(it =>it.EntityName==entityName &&it.PropertyName.Equals(propertyName, StringComparison.CurrentCultureIgnoreCase)); this.Add(new MappingColumn { PropertyName = propertyName, DbColumnName = dbColumnName, EntityName = entityName }); } public new void Clear() { this.RemoveAll(it => true); } } }
|