miniSql

创建
zgc123@gmail.com authored at 11/19/2023 1:40:15 AM
470.00 B
DbModelColumnCollection.cs
#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>
	{
	}
}