miniSql

6136600 » zgc123@gmail.com
11/19/2023 创建
#region License
// Copyright 2005-2009 Paul Kohler (http://pksoftware.net/MiniSqlQuery/). All rights reserved.
// This source code is made available under the terms of the Microsoft Public License (Ms-PL)
// http://minisqlquery.codeplex.com/license
#endregion
using System;
using System.Collections.Generic;

namespace MiniSqlQuery.Core.DbModel
{
	[Obsolete("Just use List - easier for filtering etc")]
	public class DbModelColumnCollection : List<DbModelColumn>
	{
	}
}