用于以下方案的最佳数据结构是什么?
我希望根据某些商品的价格收取费用。 例如,如果(最简单的情况,这里可能有更多的条目。)
Price -> Percentage
<$5 -> 20%
$5-$10 -> 15%
$10-$20 -> 13.5%
>$20 -> 12.5%
我希望这是灵活的,所以我想把它放在web.config中(或者如果你认为它是一个更好的主意 - 在sql server中)
如何实施?
答案 0 :(得分:4)
您可以使用ConfigurationSections(http://msdn.microsoft.com/en-us/library/2tw134k3.aspx)
基本上,它允许您从web.config复杂结构直接序列化和反序列化到您定义的C#类。这是一个例子,它可能无法正常工作(甚至编译!)但它让您了解可以从ConfigurationSection获得什么。希望它有所帮助。
namespace Project
{
public class PricesConfiguration : System.Configuration.ConfigurationSection
{
public static PricesConfiguration GetConfig()
{
return (PricesConfiguration )System.Configuration.ConfigurationManager.GetSection("pricesConfiguration") ?? new ShiConfiguration();
}
[System.Configuration.ConfigurationProperty("prices")]
public PricesCollection Prices
{
get
{
return (PricesCollection)this["prices"] ??
new PricesCollection();
}
}
}
public class PricesCollection : System.Configuration.ConfigurationElementCollection
{
public PriceElement this[int index]
{
get
{
return base.BaseGet(index) as PriceElement;
}
set
{
if (base.BaseGet(index) != null)
base.BaseRemoveAt(index);
this.BaseAdd(index, value);
}
}
protected override System.Configuration.ConfigurationElement CreateNewElement()
{
return new PriceElement();
}
protected override object GetElementKey(System.Configuration.ConfigurationElement element)
{
var price = (PriceElement)element;
return string.Format("{0}-{1}->{2}%",price.Start,price.End,price.Percentage);
}
}
public class PriceElement : System.Configuration.ConfigurationElement
{
[System.Configuration.ConfigurationProperty("start", IsRequired = false)]
public int? Start
{
get
{
return this["start"] as int?;
}
}
[System.Configuration.ConfigurationProperty("end", IsRequired = false)]
public int? End
{
get
{
return this["end"] as int?;
}
}
[System.Configuration.ConfigurationProperty("percentage", IsRequired = true)]
public string Percentage
{
get
{
return this["percentage"] as string;
}
}
}
}
web.config看起来像:
<configuration>
<configSections>
<section name="pricesConfig" type="Project.PricesConfig, Project"/>
</configSections>
<pricesConfig>
<prices>
<add end="5" percentage="20" />
<add start="5" end="10" percentage="15" />
<add start="10" end="20" percentage="13.5" />
<add start="20" percentage="12.5" />
</prices>
</pricesConfig>
</configuration>
使用它,只需调用
var config = PricesConfiguration.GetConfig();
答案 1 :(得分:0)
我会把它放在SQL Server的桌面上;该表有4列:
如果有必要,我会在应用程序端捕获这些数据。您可以使用SqlCacheDependency对象来确保数据库上的任何更新都能快速反映在应用程序端。我不会放在Web.config上,因为Web.config主要适用于Key-Value对,我不会在这里看到这种情况。