Skip to content
This repository was archived by the owner on Dec 24, 2022. It is now read-only.

Commit 30af989

Browse files
committed
remove unused SelectList class
1 parent a3cb16d commit 30af989

File tree

1 file changed

+0
-32
lines changed

1 file changed

+0
-32
lines changed

src/ServiceStack.OrmLite/Expressions/SqlExpression.cs

Lines changed: 0 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -2200,38 +2200,6 @@ public override string ToString()
22002200
}
22012201
}
22022202

2203-
//public class SelectList
2204-
//{
2205-
// public SelectList()
2206-
// {
2207-
// Items = new List<SelectItem>();
2208-
// }
2209-
2210-
// public SelectList(ICollection<SelectItem> items)
2211-
// {
2212-
// if (items == null)
2213-
// throw new ArgumentNullException("items");
2214-
2215-
// Items = new List<SelectItem>(items);
2216-
// }
2217-
2218-
// public List<SelectItem> Items { get; set; }
2219-
2220-
// public override string ToString()
2221-
// {
2222-
// var sb = StringBuilderCache.Allocate();
2223-
2224-
// foreach (var item in Items)
2225-
// {
2226-
// if (sb.Length > 0)
2227-
// sb.Append(", ");
2228-
// sb.Append(item);
2229-
// }
2230-
2231-
// return StringBuilderCache.ReturnAndFree(sb);
2232-
// }
2233-
//}
2234-
22352203
public class OrmLiteDataParameter : IDbDataParameter
22362204
{
22372205
public DbType DbType { get; set; }

0 commit comments

Comments
 (0)