- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
public EntityTypes GetEntityType(DBContext Entities, int EntityTypeID)
{
DateTime? Null = null;
var entityType = (from entitytypes in Entities.EntityTypes.Include("GlobalText").Include("GlobalText.GlobalTextInstance")
where entitytypes.EntityTypeId.Equals(EntityTypeID)
&& (Null == null ? entitytypes.ActiveUntil == null : entitytypes.ActiveUntil == Null)
select entitytypes).FirstOrDefault();
return entityType;
}
Помимо самой первозданной красоты этого куска, он, собственно, еще и продублирован в местах, эдак 12-15
wvxvw 04.03.2016 20:51 # +2
111111 24.08.2021 20:56 # 0