1

我正在尝试创建 CQL 查询,它将选择我公司创建的程序集。

在我看来,最简单的方法是检查 AssemblyInfo 中生成的数据,但我找不到如何在 CQL 中访问它。

4

1 回答 1

0

代码查询呢:

from a in Application.Assemblies
where a.Name.StartsWith("YourCompany.YourProduct")
select a

或者你需要更复杂的东西?


好的,从这个默认规则中获得灵感怎么样:

// <Name>UI layer shouldn't use directly DB types</Name>
warnif count > 0

// UI layer is made of types in namespaces using a UI framework
let uiTypes = Application.Namespaces.UsingAny(Assemblies.WithNameIn("PresentationFramework", "System.Windows", "System.Windows.Forms", "System.Web")).ChildTypes()

// You can easily customize this line to define what are DB types.
let dbTypes = ThirdParty.Assemblies.WithNameIn("System.Data", "EntityFramework", "NHibernate").ChildTypes()
              // Ideally even DataSet and associated, usage should be forbidden from UI layer: 
              // http://stackoverflow.com/questions/1708690/is-list-better-than-dataset-for-ui-layer-in-asp-net
              .Except(ThirdParty.Types.WithNameIn("DataSet", "DataTable", "DataRow"))

from uiType in uiTypes.UsingAny(dbTypes)
let dbTypesUsed = dbTypes.Intersect(uiType.TypesUsed)
select new { uiType, dbTypesUsed }

当然,集合uiTypes必须dbTypes使用 N 级的组件和 N+1 级的组件进行细化。

于 2013-09-26T09:52:10.280 回答