Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はこれを変換しようとしています:
public virtual IDbSet DbSet() where T : class
これに
Public Overridable Function DbSet() As IDbSet(Of T As Class)
しかし、それはコンパイルされません。')' Asで期待される(「AsClass」で)
私が間違っていることを教えてください。
EFコードファーストをVBで動作させようとしています。
正しい構文は次のとおりです。
public virtual IDbSet<T> DbSet() where T : class
と
Public Overridable Function DbSet(Of T As Class)() As IDbSet(Of T)