Skip to content

Commit c43fab6

Browse files
committed
Use the same enum for OrderDb and OrderDto models
1 parent 71a93f2 commit c43fab6

File tree

6 files changed

+29
-25
lines changed

6 files changed

+29
-25
lines changed

NorthwindCRUD/Helpers/Enums.cs

-22
This file was deleted.

NorthwindCRUD/Models/Contracts/IOrder.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
using NorthwindCRUD.Models.Dtos;
2-
using static NorthwindCRUD.Helpers.Enums;
2+
using NorthwindCRUD.Models.Enums;
33

44
namespace NorthwindCRUD.Models.Contracts
55
{

NorthwindCRUD/Models/DbModels/OrderDb.cs

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
using System.ComponentModel.DataAnnotations;
22
using System.ComponentModel.DataAnnotations.Schema;
3+
using NorthwindCRUD.Models.Enums;
34

45
namespace NorthwindCRUD.Models.DbModels
56
{
@@ -29,7 +30,7 @@ public OrderDb()
2930

3031
public string RequiredDate { get; set; }
3132

32-
public int ShipVia { get; set; }
33+
public Shipping ShipVia { get; set; }
3334

3435
public double Freight { get; set; }
3536

NorthwindCRUD/Models/Dtos/OrderDto.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
using System.ComponentModel.DataAnnotations;
22
using NorthwindCRUD.Models.Contracts;
3-
using static NorthwindCRUD.Helpers.Enums;
3+
using NorthwindCRUD.Models.Enums;
44

55
namespace NorthwindCRUD.Models.Dtos
66
{

NorthwindCRUD/Models/Enums/Enums.cs

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
using System.Runtime.Serialization;
2+
3+
namespace NorthwindCRUD.Models.Enums
4+
{
5+
public enum Shipping
6+
{
7+
[EnumMember(Value = "SeaFreight")]
8+
SeaFreight,
9+
10+
[EnumMember(Value = "GroundTransport")]
11+
GroundTransport,
12+
13+
[EnumMember(Value = "AirCargo")]
14+
AirCargo,
15+
16+
[EnumMember(Value = "Mail")]
17+
Mail,
18+
}
19+
}

NorthwindCRUD/QueryBuilder/QueryExecutor.cs

+6
Original file line numberDiff line numberDiff line change
@@ -258,6 +258,12 @@ private static Expression GetSearchValue(dynamic? value, Type targetType)
258258
}
259259

260260
var nonNullableType = Nullable.GetUnderlyingType(targetType) ?? targetType;
261+
262+
if (nonNullableType.IsEnum && value is string)
263+
{
264+
return Expression.Constant(Enum.Parse(nonNullableType, value));
265+
}
266+
261267
var convertedValue = Convert.ChangeType(value, nonNullableType, CultureInfo.InvariantCulture);
262268
return Expression.Constant(convertedValue, targetType);
263269
}

0 commit comments

Comments
 (0)