当前位置: 首页>>代码示例>>C#>>正文


C# IDataContext.ExecuteQuery方法代码示例

本文整理汇总了C#中IDataContext.ExecuteQuery方法的典型用法代码示例。如果您正苦于以下问题:C# IDataContext.ExecuteQuery方法的具体用法?C# IDataContext.ExecuteQuery怎么用?C# IDataContext.ExecuteQuery使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在IDataContext的用法示例。


在下文中一共展示了IDataContext.ExecuteQuery方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: ucesnikTakmicenja2

        // TODO: Nije moguce izbrisati takmicara zato sto se uvek vodi kao ucesnik takmicenja II, cak i ako ne postoji
        // odvojeno takmicenje II, verovatno zbog greske koja postoji u tom slucaju da kada ne postoji odvojeno
        // takmicenje II svi gimnasticari se oznace kao kvalifikovani. Ispravi ovo, tj. kada ne postoji odvojeno
        // takmicenje II verovatno ne bi niko trebalo da bude oznacen kao kvalifikovan.
        // Druga mogucnost je da nije moguce brisati takmicara zato sto postoje njegovi rezultati u takmicenju II, cak i
        // ako ne postoji odvojeno takmicenje II.
        // Mozda bi najbolje bilo da se ne dozvoli brisanje takmicara koji je ucesnik takmicenja II i III (zato sam gore
        // stavio da se prvo ispituje da li je gimnasticar ucesnik takmicenja II ili III)
        private bool ucesnikTakmicenja2(GimnasticarUcesnik g)
        {
            IDataContext dataContext = null;
            try
            {
                DataAccessProviderFactory factory = new DataAccessProviderFactory();
                dataContext = factory.GetDataContext();
                dataContext.BeginTransaction();

                string query = @"select count(*)
                    from Takmicenje2 t
                    join t.Ucesnici u
                    where u.Gimnasticar.Id = :id";
                IList result = dataContext.
                    ExecuteQuery(QueryLanguageType.HQL, query,
                            new string[] { "id" }, new object[] { g.Id });
                return (long)result[0] > 0;
            }
            catch (Exception ex)
            {
                if (dataContext != null && dataContext.IsInTransaction)
                    dataContext.Rollback();
                throw new InfrastructureException(
                    Strings.getFullDatabaseAccessExceptionMessage(ex), ex);
            }
            finally
            {
                if (dataContext != null)
                    dataContext.Dispose();
                dataContext = null;
            }
        }
开发者ID:stankela,项目名称:bilten,代码行数:40,代码来源:TakmicariKategorijeForm.cs

示例2: hasNastup

        private bool hasNastup(GimnasticarUcesnik g)
        {
            IDataContext dataContext = null;
            try
            {
                DataAccessProviderFactory factory = new DataAccessProviderFactory();
                dataContext = factory.GetDataContext();
                dataContext.BeginTransaction();

                string query = @"select distinct n
                    from NastupNaSpravi n
                    where n.Gimnasticar = :gim";
                IList<NastupNaSpravi> result = dataContext.
                    ExecuteQuery<NastupNaSpravi>(QueryLanguageType.HQL, query,
                            new string[] { "gim" }, new object[] { g });
                return result.Count > 0;
            }
            catch (Exception ex)
            {
                if (dataContext != null && dataContext.IsInTransaction)
                    dataContext.Rollback();
                // TODO: Izgleda da se ovaj izuzetak nigde ne hendluje.
                throw new InfrastructureException(
                    Strings.getFullDatabaseAccessExceptionMessage(ex), ex);
            }
            finally
            {
                if (dataContext != null)
                    dataContext.Dispose();
                dataContext = null;
            }
        }
开发者ID:stankela,项目名称:bilten,代码行数:32,代码来源:TakmicariKategorijeForm.cs

示例3: hasEkipa

        private bool hasEkipa(GimnasticarUcesnik g)
        {
            IDataContext dataContext = null;
            try
            {
                DataAccessProviderFactory factory = new DataAccessProviderFactory();
                dataContext = factory.GetDataContext();
                dataContext.BeginTransaction();

                string query = @"select distinct e
                    from Ekipa e
                    join e.Gimnasticari g
                    where g.Id = :id";
                IList<Ekipa> result = dataContext.
                    ExecuteQuery<Ekipa>(QueryLanguageType.HQL, query,
                            new string[] { "id" }, new object[] { g.Id });
                return result.Count > 0;
            }
            catch (Exception ex)
            {
                if (dataContext != null && dataContext.IsInTransaction)
                    dataContext.Rollback();
                throw new InfrastructureException(
                    Strings.getFullDatabaseAccessExceptionMessage(ex), ex);
            }
            finally
            {
                if (dataContext != null)
                    dataContext.Dispose();
                dataContext = null;
            }
        }
开发者ID:stankela,项目名称:bilten,代码行数:32,代码来源:TakmicariKategorijeForm.cs

示例4: loadRezTakmicenja

        IList<RezultatskoTakmicenje> loadRezTakmicenja(int takmicenjeId)
        {
            IDataContext dataContext = null;
            try
            {
                DataAccessProviderFactory factory = new DataAccessProviderFactory();
                dataContext = factory.GetDataContext();
                dataContext.BeginTransaction();

                string query = @"select distinct r
                    from RezultatskoTakmicenje r
                    left join fetch r.Kategorija kat
                    left join fetch r.TakmicenjeDescription d
                    left join fetch r.Propozicije p
                    left join fetch r.Takmicenje1 t
                    left join fetch t.Gimnasticari g
                    left join fetch t.Ekipe e
                    left join fetch e.Gimnasticari
                    left join fetch e.DrzavaUcesnik
                    left join fetch e.KlubUcesnik
                    where r.Takmicenje.Id = :takmicenjeId
                    order by r.RedBroj";

                IList<RezultatskoTakmicenje> result = dataContext.
                    ExecuteQuery<RezultatskoTakmicenje>(QueryLanguageType.HQL, query,
                            new string[] { "takmicenjeId" },
                            new object[] { takmicenjeId });
                return result;
            }
            catch (BusinessException)
            {
                if (dataContext != null && dataContext.IsInTransaction)
                    dataContext.Rollback();
                throw;
            }
            catch (InfrastructureException)
            {
                if (dataContext != null && dataContext.IsInTransaction)
                    dataContext.Rollback();
                throw;
            }
            catch (Exception ex)
            {
                if (dataContext != null && dataContext.IsInTransaction)
                    dataContext.Rollback();
                throw new InfrastructureException(
                    Strings.getFullDatabaseAccessExceptionMessage(ex), ex);
            }
            finally
            {
                if (dataContext != null)
                    dataContext.Dispose();
                dataContext = null;
            }
        }
开发者ID:stankela,项目名称:bilten,代码行数:55,代码来源:MainForm.cs

示例5: loadGimnasticari

        private IList<GimnasticarUcesnik> loadGimnasticari(Takmicenje tak, string kategorija)
        {
            IDataContext dataContext = null;
            try
            {
                DataAccessProviderFactory factory = new DataAccessProviderFactory();
                dataContext = factory.GetDataContext();
                dataContext.BeginTransaction();

                string query = @"select distinct g
                 from GimnasticarUcesnik g
                 left join fetch g.KlubUcesnik
                 left join fetch g.DrzavaUcesnik
                 where g.Takmicenje = :tak
                 and g.TakmicarskaKategorija.Naziv = :kat
                 order by g.Prezime, g.Ime";

                IList<GimnasticarUcesnik> result = dataContext.
                    ExecuteQuery<GimnasticarUcesnik>(QueryLanguageType.HQL, query,
                            new string[] { "tak", "kat" },
                            new object[] { tak, kategorija });
                return result;
            }
            catch (BusinessException)
            {
                if (dataContext != null && dataContext.IsInTransaction)
                    dataContext.Rollback();
                throw;
            }
            catch (InfrastructureException)
            {
                if (dataContext != null && dataContext.IsInTransaction)
                    dataContext.Rollback();
                throw;
            }
            catch (Exception ex)
            {
                if (dataContext != null && dataContext.IsInTransaction)
                    dataContext.Rollback();
                throw new InfrastructureException(
                    Strings.getFullDatabaseAccessExceptionMessage(ex), ex);
            }
            finally
            {
                if (dataContext != null)
                    dataContext.Dispose();
                dataContext = null;
            }
        }
开发者ID:stankela,项目名称:bilten,代码行数:49,代码来源:MainForm.cs


注:本文中的IDataContext.ExecuteQuery方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。