|
|
public static List<OrdersDetails> GetAllRecords()
{
if (order.Count() == 0)
{
. . . .
{
order.Add(new OrdersDetails(code + 1, "ALFKI", i + 0, 2.3 * i, false, new DateTime(1991, 05, 15), "Berlin", "Simons bistro", "Denmark", new DateTime(1996, 7, 16), "Kirchgasse 6"));
order.Add(new OrdersDetails(code + 2, "ANATR", i + 2, 3.3 * i, true, new DateTime(1990, 04, 04), "", "Queen Cozinha", "Brazil", new DateTime(1996, 9, 11), "Avda. Azteca 123"));
order.Add(new OrdersDetails(code + 5, "BOLID", i + 4, 6.3 * i, true, new DateTime(1953, 02, 18), "", "Hanari Carnes", "Switzerland", new DateTime(1997, 12, 3), "1029 - 12th Ave. S."));
. . . . . .
} |
|
Hi Costa,Sorry for inconvenience caused.In our last patch release will be postponed due to the Essential Studio Volume 4, 2018 Beta release. However we will include the fix “Unable to filter the date column with excel filter using DataOperations class” in our upcoming Volume 4, 2018 beta release at the mid of the December.Regards,Thavasianand S.
public void ConfigureServices(IServiceCollection services)
{
// Add framework services.
services.AddMvc().AddXmlSerializerFormatters()
.AddJsonOptions(x =>
{
x.SerializerSettings.DateParseHandling = Newtonsoft.Json.DateParseHandling.None;
x.SerializerSettings.ContractResolver = null; });
services.AddCors(options => options.AddPolicy("AllowAll", p => p.AllowAnyOrigin().AllowAnyHeader().AllowAnyMethod()));
}
|