You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public class MyClass
{
public enum States { Free, Busy }
public int Id { get; set; }
public States State { get; set; }
}
or
public class MyClass
{
public int Id { get; set; }
public MyClassStates State { get; set; }
}
public enum MyClassStates { Free, Busy }
Error => Views\CoreAdminData\Index.cshtml
else if (entityProperty.PropertyType == typeof(double))
{
var lambda = Expression.Lambda<Func<object, double>>(property, entity);
columns.Add(lambda).Titled(entityProperty.Name);
}
Error => Create
ArgumentNullException: Value cannot be null. (Parameter 'propertyInfo')
System.Reflection.NullabilityInfoContext.Create(PropertyInfo propertyInfo)
DotNetEd.CoreAdmin.Controllers.CoreAdminDataController.GetDbSetValueOrNull(string dbSetName, out DbContext dbContextObject, out Type typeOfEntity, out Dictionary<string, Dictionary<object, string>> relationships) in CoreAdminDataController.cs
+
var nullabilityInfo = _nullabilityContext.Create(typeOfEntity.GetProperty(f.Name));
DotNetEd.CoreAdmin.Controllers.CoreAdminDataController.Create(string id) in CoreAdminDataController.cs
+
var dbSetValue = GetDbSetValueOrNull(id, out var dbContextObject, out var entityType, out var relationships);
lambda_method212(Closure , object , object[] )
The text was updated successfully, but these errors were encountered:
byte
enum
example
or
The text was updated successfully, but these errors were encountered: