You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
EntityFrameworkCore.Jet/src/EFCore.Jet.Data/DbColumnFlagEnum.cs

25 lines
464 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace EntityFrameworkCore.Jet.Data
{
[Flags]
enum DbColumnFlag
{
None = 0,
IsBookMark = 1,
MayDefer = 2,
Write = 4,
WriteUnknown = 8,
IsFixedLength = 16,
IsNullable = 32,
MayBeNull = 64,
IsLong = 128,
IsRowId = 256,
IsRowVer = 512,
CachedDeferred = 4096
}
}